/* assets/css/footer.css */
.fm-footer {
  background: linear-gradient(180deg, #0f3956 0%, #0d2d44 100%);
  color: var(--color-white);
}

body.fm-dark .fm-footer {
  background: linear-gradient(180deg, #071625 0%, #040e18 100%);
}

.fm-footer__top {
  padding: 64px 0 48px;
}

.fm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.fm-footer__logo {
  max-width: 180px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.fm-footer__tagline {
  color: #cdd6dd;
  line-height: 1.6;
}

.fm-footer__col h3 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.fm-footer__col ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.fm-footer__col a,
.fm-footer__col span {
  color: #cdd6dd;
  font-size: 0.85rem;
}

.fm-footer__col a:hover {
  color: var(--color-white);
}

.fm-footer__bottom {
  background: var(--color-navy-dark);
  padding: 16px 0;
  font-size: 0.85rem;
  color: #cdd6dd;
}

.fm-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fm-footer__social {
  display: flex;
  gap: 16px;
}

.fm-footer__social a {
  color: #cdd6dd;
  font-size: 0.85rem;
}

.fm-footer__social a:hover {
  color: var(--color-white);
}

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

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