/* ============================================
   LPO PLATFORM — Footer
   ============================================ */

.lpo-footer {
  background: #93c572;
  color: #0056b3;
  padding: 28px var(--lpo-space-lg) 24px;
  font-weight: 700;
}

.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: 18px;
  font-weight: 700;
  color: #0056b3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

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

.lpo-footer__link {
  color: #0056b3;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color var(--lpo-transition);
  cursor: pointer;
}

.lpo-footer__link:hover {
  color: #003d80;
}

.lpo-footer__bottom {
  border-top: 1px solid rgba(0, 86, 179, 0.2);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.lpo-footer__copyright {
  font-size: 14px;
  color: #0056b3;
  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;
  }
}
