/* Canonical leni public footer. Keep synchronized with SiteFooter.tsx/globals.css. */
.site-footer.preferred-white-footer {
  padding: 72px 0 34px;
  background: #fffdfa;
  color: #6e6069;
  font-family: "Manrope", sans-serif;
}

.preferred-white-footer .footer-wrap {
  display: flex;
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.preferred-white-footer .preferred-footer-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.preferred-white-footer .preferred-footer-brand p {
  max-width: 270px;
  margin-top: 18px;
  color: #6e6069;
  font-size: 12px;
  line-height: 1.65;
}

.preferred-white-footer .footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2b202a;
  text-decoration: none;
}

.preferred-white-footer .footer-wordmark .live-logo-mark {
  width: 38px;
  height: 32px;
}

.preferred-white-footer .footer-wordmark .live-logo-word {
  color: #2b202a;
  font-family: Fraunces, Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.09em;
}

.preferred-white-footer .preferred-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.preferred-white-footer .preferred-footer-col h2,
.preferred-white-footer .preferred-footer-col h3 {
  margin: 0 0 8px;
  color: #e88e86;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.preferred-white-footer .preferred-footer-col a {
  color: #6e6069;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

.preferred-white-footer .preferred-footer-col a:hover {
  color: #2b202a;
}

.preferred-white-footer .brand-social {
  margin-top: 23px;
  color: #6e6069;
}

.preferred-white-footer .preferred-footer-brand .social-label {
  max-width: none;
  margin: 0 0 11px;
  color: #e88e86;
  font-family: Fraunces, Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preferred-white-footer .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preferred-white-footer .social-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 61, 86, 0.16);
  border-radius: 50%;
  background: transparent;
  color: #5a3d56;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.preferred-white-footer .social-link svg {
  display: block;
  width: 15px;
  height: 15px;
}

.preferred-white-footer .social-link:hover {
  transform: translateY(-2px);
  border-color: #5a3d56;
  background: #5a3d56;
  color: #fffdfa;
}

.preferred-white-footer .social-link:focus-visible {
  outline: 3px solid #74c4bc;
  outline-offset: 3px;
}

.preferred-white-footer .preferred-footer-bottom {
  display: flex !important;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(90, 61, 86, 0.12);
  color: #6e6069;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
}

.preferred-white-footer .preferred-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.preferred-white-footer .preferred-footer-bottom a:hover {
  color: #2b202a;
}

@media (max-width: 820px) {
  .site-footer.preferred-white-footer {
    padding: 56px 0 30px;
  }

  .preferred-white-footer .footer-wrap {
    width: 100%;
  }

  .preferred-white-footer .preferred-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .preferred-white-footer .preferred-footer-brand {
    grid-column: 1 / -1;
  }

  .preferred-white-footer .preferred-footer-bottom {
    display: block !important;
    margin-top: 38px;
  }

  .preferred-white-footer .preferred-footer-bottom span {
    display: block;
  }

  .preferred-white-footer .preferred-footer-bottom span + span {
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .preferred-white-footer .footer-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  .preferred-white-footer .preferred-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .preferred-white-footer .preferred-footer-brand {
    grid-column: auto;
  }
}
