/* ============================================
   LPO PLATFORM — Footer
   Visual test palette: #93c572 bg + #666 text
   ============================================ */

.lpo-footer {
  background: #93c572;
  color: #0c1d41;
  padding: 18px var(--lpo-space-lg) 14px;
  font-weight: 400;
}

.lpo-footer__inner {
  max-width: var(--lpo-max-width);
  margin: 0 auto;
}

.lpo-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lpo-space-sm);
  margin-bottom: 8px;
}

.lpo-footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: #0c1d41;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.lpo-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lpo-footer__link {
  color: #0c1d41;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color var(--lpo-transition);
  cursor: pointer;
}

.lpo-footer__link:hover {
  color: #0c1d41;
}

.lpo-footer__bottom {
  border-top: 1px solid rgba(12, 29, 65, 0.25);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.lpo-footer__copyright {
  font-size: 14px;
  color: #0c1d41;
  font-weight: 600;
  margin: 0;
  margin-right: 15px;
  text-align: right;
  line-height: 1.5;
}

.lpo-footer__lang {
  display: flex;
  align-items: center;
  gap: var(--lpo-space-sm);
}


@media (max-width: 768px) {
  .lpo-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lpo-footer__grid {
    grid-template-columns: 1fr;
  }

  .lpo-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
