/* ============================================
   ILM Financial – Footer Styles
   ============================================ */

/* ── MAIN FOOTER ─────────────────────────── */
.site-footer {
  background: #3d5166;
  color: #d0dae4;
  font-family: 'Lato', sans-serif;
  width: 100%;
}

.site-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 48px;
}

/* ── COLUMN HEADINGS ─────────────────────── */
.footer-col__title {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col__title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #e6a817;
}

/* ── COLUMN 1 – ABOUT ────────────────────── */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  line-height: 1;
}

.footer-logo__mark {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-logo__mark span { color: #e6a817; }

.footer-logo__sub {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a0b4c4;
  margin-top: 2px;
}

.footer-about__reg {
  font-size: 0.8rem;
  line-height: 1.65;
  color: #b8c8d4;
  margin-bottom: 22px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: #c8d8e4;
}

.footer-contact-list .fc-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #c8d8e4;
  margin-top: 2px;
}

.footer-contact-list a {
  color: #c8d8e4;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: #e6a817; }

.footer-contact-list .multi-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── COLUMN 2 – NEWS ─────────────────────── */
.footer-news__feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-news__source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-news__bbc-badge {
  background: #bb1919;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 3px;
  line-height: 1.3;
  text-align: center;
  min-width: 54px;
}

.footer-news__bbc-badge span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.news-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.news-item:first-child { border-top: none; padding-top: 0; }

.news-item__title {
  font-size: 0.78rem;
  color: #90a8bc;
  font-style: italic;
  margin-bottom: 3px;
  line-height: 1.4;
}

.news-item__date {
  font-size: 0.74rem;
  color: #7a96aa;
  margin-bottom: 5px;
  font-weight: 700;
}

.news-item__excerpt {
  font-size: 0.8rem;
  color: #c8d8e4;
  line-height: 1.6;
}

/* ── COLUMN 3 – NEWSLETTER ───────────────── */
.footer-newsletter__desc {
  font-size: 0.82rem;
  color: #b8c8d4;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-newsletter__form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.footer-newsletter__input {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
  border: none;
  background: #ffffff;
  color: #1a1a1a;
  outline: none;
  min-width: 0;
}

.footer-newsletter__input::placeholder { color: #888; }

.footer-newsletter__btn {
  padding: 12px 18px;
  background: #e6a817;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.footer-newsletter__btn:hover { background: #c98f0e; }

/* ── BOTTOM BAR ──────────────────────────── */
.site-footer__bottom {
  background: #2b3d4f;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 40px;
}

.site-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__bottom p {
  font-size: 0.74rem;
  color: #8aa0b0;
  line-height: 1.7;
}

.site-footer__bottom a {
  color: #8aa0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__bottom a:hover { color: #e6a817; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col--newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    padding: 36px 24px 32px;
    gap: 32px;
  }
  .site-footer__bottom {
    padding: 16px 24px;
  }
  .footer-newsletter__form {
    flex-direction: column;
  }
  .footer-newsletter__btn {
    width: 100%;
    padding: 12px;
    text-align: center;
  }
}
