/* ── footer-main.css — shared bottom footer ── */
#footer-main-wrap {
  position: relative;
  background: url('https://womenatlas.com/storage/media/speaker1.webp') center center / cover no-repeat;
}
#footer-main-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(20 4 8 / 64%);
  pointer-events: none;
}
.fmain {
  position: relative;
  z-index: 1;
  padding: 50px clamp(24px, 6vw, 50px) 32px;
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: rgba(255,255,255,.7);
  box-sizing: border-box;
}
.fmain-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  padding-bottom: 40px;
}
.fmain-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.fmain-tagline {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #c9972a;
  margin: 16px 0 14px;
  text-transform: uppercase;
}
.fmain-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgb(255 255 255 / 72%);
  margin: 0 0 20px;
}
.fmain-socials {
  display: flex;
  justify-content:center;
  gap: 18px;
  align-items: center;
  padding-bottom:20px;
}
.fmain-socials a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.fmain-socials a:hover { color: #fff; }
.fmain-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fmain-col-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fmain-col a {
  font-size: 18px;
  color: rgb(255 255 255 / 72%);
  text-decoration: none;
  transition: color .2s;
}
.fmain-col a:hover { color: #fff; }
.fmain-legal {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 24px 0 0;
  font-size: 18px;
  color: rgb(255 255 255 / 72%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.fmain-legal-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fmain-legal-links a {
  color: rgb(255 255 255 / 72%);
  text-decoration: none;
}
.fmain-legal-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .fmain-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fmain-brand { grid-column: 1 / -1; text-align: center; }
  .fmain-brand img { margin: 0 auto; }
  .fmain-socials { justify-content: center; }
  .fmain-col { align-items: center; text-align: center; }
  .fmain-legal { text-align: center; justify-content: center; }
  .fmain-legal-links { justify-content: center; }
}
@media (max-width: 560px) {
  .fmain-inner { grid-template-columns: 1fr; }
  .fmain-brand { grid-column: auto; }
  .fmain-legal { flex-direction: column; align-items: center; }
}
