/* Quiet legal footer (site-wide) — does NOT apply to .site-footer--editorial (homepage module). */

.site-footer:not(.site-footer--editorial) {
  padding: 18px 40px 22px 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  background-color: #faf9f7;
  font-family: var(--site-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  color: #1a1d21;
  text-align: center;
  width: 100%;
  /* Sticky footer behavior on short pages (without fixed positioning) */
  position: sticky;
  top: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.site-footer__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Desktop: " // " between row clusters (Privacy//Terms // Submit//About) */
.site-footer__row:first-child:not(:last-child)::after {
  content: ' // ';
  letter-spacing: 0.18em;
  opacity: 0.75;
  color: inherit;
}

.site-footer__sep {
  letter-spacing: 0.18em;
  opacity: 0.75;
  user-select: none;
}

.site-footer:not(.site-footer--editorial) a {
  text-decoration: none !important;
  color: inherit !important;
}

.site-footer:not(.site-footer--editorial) a:hover {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  /* Modest gap only — profile pages already use bottom padding; avoid stacking with huge main padding */
  main {
    padding-bottom: 16px;
  }

  .site-footer:not(.site-footer--editorial) {
    /* Sticky + top:100vh pins the footer to the viewport bottom on short pages but leaves a large
       dead zone on long mobile profiles (content ends, then empty space, then footer). */
    position: static;
    top: auto;
    margin-top: 8px;
    padding: 18px 18px calc(14px + env(safe-area-inset-bottom, 0px)) 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65em;
    letter-spacing: 0.13em;
    line-height: 1.65;
  }

  .site-footer__row:first-child:not(:last-child)::after {
    content: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Editorial footer (homepage) — kept in footer.css so it always loads        */
/* with footer.css; needs topnav.css tokens: --site-display, --site-body,    */
/* --site-mono.                                                               */
/* -------------------------------------------------------------------------- */

.site-footer.site-footer--editorial {
  /* Isolate from thin-footer flex/sticky/centering */
  position: static;
  top: auto;
  display: block;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
  flex-direction: unset;
  flex-wrap: unset;
  justify-content: unset;
  align-items: unset;
  gap: unset;
  background-color: #faf9f7;
  color: #141410;
  border-top: 1px solid rgba(0, 0, 0, 0.82);
  padding: clamp(40px, 5vw, 56px) clamp(22px, 5vw, 40px) clamp(14px, 2vw, 22px);
  margin-top: clamp(32px, 5vw, 56px);
}

.site-footer.site-footer--editorial a {
  /* Undo thin-footer link !important; editorial sets its own per block */
  text-decoration: none;
  color: inherit;
}

.site-footer.site-footer--editorial .site-footer-editorial__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.site-footer.site-footer--editorial .site-footer-editorial__brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.site-footer.site-footer--editorial .site-footer-editorial__wordmark {
  font-family: var(--site-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f0f0d;
  line-height: 1;
  flex-shrink: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__brand-line .site-footer-editorial__wordmark {
  font-family: var(--site-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__rule {
  flex: 1;
  min-width: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.88);
}

.site-footer.site-footer--editorial .site-footer-editorial__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(118px, .62fr) minmax(132px, .68fr) minmax(150px, .78fr) minmax(260px, 1.35fr);
  gap: clamp(28px, 4vw, 44px) clamp(22px, 2.5vw, 34px);
  align-items: start;
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__col {
  min-width: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--brand {
  grid-column: 1;
  grid-row: 1;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--intelligence {
  grid-column: 2;
  grid-row: 1;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--korthos {
  grid-column: 3;
  grid-row: 1;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--social {
  grid-column: 4;
  grid-row: 1;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
  grid-column: 5;
  grid-row: 1;
}

/* Home inline CSS sets `nav { display: flex }` — editorial footer navs must stack heading above links. */
.site-footer.site-footer--editorial nav.site-footer-editorial__col {
  display: block;
  gap: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__heading {
  font-family: var(--site-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f0f0d;
  margin: 0 0 14px;
  line-height: 1.2;
}

.site-footer.site-footer--editorial .site-footer-editorial__col--brand .site-footer-editorial__heading {
  font-family: var(--site-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__heading-label--mob-company {
  display: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__heading--brand-stack {
  display: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__copy {
  font-family: var(--site-body);
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(15, 15, 13, 0.88);
  margin: 0 0 10px;
  max-width: 34ch;
}

.site-footer.site-footer--editorial .site-footer-editorial__copy:last-child {
  margin-bottom: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__links li {
  margin: 0 0 9px;
}

.site-footer.site-footer--editorial .site-footer-editorial__links li:last-child {
  margin-bottom: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__links a {
  font-family: var(--site-body);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: #141410;
  border-bottom: 1px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.site-footer.site-footer--editorial .site-footer-editorial__links a:hover {
  opacity: 0.72;
  border-bottom-color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__links a:focus-visible {
  outline: 1px solid rgba(0, 0, 0, 0.45);
  outline-offset: 3px;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  max-width: 320px;
  margin: 12px 0 8px;
  border: 1px solid rgba(20, 20, 16, 0.24);
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
  min-width: 0;
  height: 34px;
  border: 0;
  border-radius: 5px 0 0 5px;
  background: transparent;
  color: #141410;
  padding: 0 10px;
  font-family: var(--site-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  outline: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input::placeholder {
  color: rgba(20, 20, 16, 0.48);
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
  height: 34px;
  border: 0;
  border-left: 1px solid rgba(20, 20, 16, 0.24);
  border-radius: 0 5px 5px 0;
  background: #11100e;
  color: #faf9f7;
  padding: 0 11px;
  font-family: var(--site-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-status {
  grid-column: 1 / -1;
  padding: 0 10px 8px;
  color: rgba(20, 20, 16, 0.62);
  font-family: var(--site-mono);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.site-footer.site-footer--editorial .site-footer-editorial__submit-link {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--site-body) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(15, 15, 13, 0.82) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24) !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__submit-link:hover {
  opacity: 0.68;
  text-decoration: none !important;
}

/* Sitewide footer authority: the page canvas continues through the footer. */
html body .site-footer {
  background: transparent !important;
  background-color: transparent !important;
  border-top: 0 !important;
}

html body .site-footer .site-footer-editorial__wordmark {
  font-family: var(--site-display, "Korthos Bebas", "Bebas Neue", Impact, sans-serif) !important;
  font-weight: 400 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__action-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.site-footer.site-footer--editorial .site-footer-editorial__action-row .site-footer-editorial__submit-link,
.site-footer.site-footer--editorial .site-footer-editorial__action-row .korthos-feedback,
.site-footer.site-footer--editorial .site-footer-editorial__action-row .korthos-feedback__trigger {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: rgba(17, 17, 15, 0.72);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--site-body), Inter, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__social-link {
  display: block;
  margin: 0 0 12px;
  font-family: var(--site-body);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: rgba(15, 15, 13, 0.82);
  border-bottom: 1px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.site-footer.site-footer--editorial .site-footer-editorial__social-link:last-child {
  margin-bottom: 0;
}

.site-footer.site-footer--editorial .site-footer-editorial__social-row {
  display: inline-grid;
  grid-template-columns: 15px minmax(0, max-content);
  align-items: center;
  gap: 9px;
}

.site-footer.site-footer--editorial .site-footer-editorial__x-logo {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
  color: #11100e;
}

.site-footer.site-footer--editorial .site-footer-editorial__social-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #11100e;
}

.site-footer.site-footer--editorial .site-footer-editorial__social-link:hover {
  opacity: 0.68;
  border-bottom-color: transparent;
  text-decoration: none;
}

@media (min-width: 721px) {
  .site-footer.site-footer--editorial .site-footer-editorial__heading--follow {
    display: none;
  }
}

.site-footer.site-footer--editorial .site-footer-editorial__copy--tagline-mobile,
.site-footer.site-footer--editorial .site-footer-editorial__copy--corr-mobile {
  display: none;
}

@media (min-width: 721px) and (max-width: 1100px) {
  .site-footer.site-footer--editorial .site-footer-editorial__grid {
    grid-template-columns: minmax(220px, 1.2fr) minmax(118px, .7fr) minmax(132px, .75fr) minmax(150px, .8fr);
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .site-footer.site-footer--editorial {
    padding: 28px 22px calc(18px + env(safe-area-inset-bottom, 0px));
    margin-top: 28px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__brand-line {
    margin-bottom: 18px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--brand {
    display: none;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading-label--desk-korthos {
    display: none;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading-label--mob-company {
    display: inline;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__grid {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'explore company'
      'social social'
      'briefings briefings';
    column-gap: 24px;
    row-gap: 26px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence {
    grid-area: explore;
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }

  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos {
    grid-area: company;
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
    grid-area: briefings;
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social {
    grid-area: social;
    grid-column: 1 / -1;
    grid-row: auto;
    align-self: start;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 22px;
    align-items: center;
    padding-top: 4px;
  }

  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos .site-footer-editorial__heading {
    display: block;
    margin: 0 0 12px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading {
    display: block;
    margin: 0 0 10px;
    font-size: 10px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__copy {
    max-width: none;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence .site-footer-editorial__links,
  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos .site-footer-editorial__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence .site-footer-editorial__links li,
  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos .site-footer-editorial__links li {
    margin: 0;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence .site-footer-editorial__links a,
  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos .site-footer-editorial__links a {
    display: inline-block;
    padding: 5px 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 11.5px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__social-link {
    display: inline-flex;
    padding: 4px 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    justify-self: stretch;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social .site-footer-editorial__heading {
    grid-column: 1 / -1;
    margin: 0 0 2px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-form {
    width: min(320px, calc(100vw - 44px));
    max-width: none;
  }
}

@media (max-width: 400px) {
  .site-footer.site-footer--editorial .site-footer-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'explore company'
      'social social'
      'briefings briefings';
    column-gap: 20px;
    row-gap: 18px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence {
    grid-area: explore;
  }

  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos {
    grid-area: company;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social {
    grid-area: social;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
    grid-area: briefings;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 22px;
    align-items: center;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social .site-footer-editorial__heading {
    grid-column: 1 / -1;
    margin: 0 0 2px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__social-link {
    margin: 0;
    padding: 0;
    width: 100%;
    justify-self: stretch;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__social-row {
    gap: 7px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__copy--briefings {
    display: block;
    margin: 0 0 8px;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(15, 15, 13, 0.78);
  }

  .site-footer.site-footer--editorial .site-footer-editorial__submit-link {
    margin-top: 8px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-form {
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    margin-top: 8px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
    font-size: 9px;
    padding: 0 8px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
    font-size: 8px;
    padding: 0 8px;
  }
}

/* Mobile editorial footer: separate compact layout, not a squeezed desktop grid. */
@media (max-width: 720px) {
  .site-footer.site-footer--editorial {
    padding: 24px 20px calc(28px + env(safe-area-inset-bottom, 0px)) !important;
    margin-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.82) !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__inner {
    width: 100%;
    max-width: none;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__brand-line {
    margin-bottom: 14px;
    padding-bottom: 0;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__wordmark {
    font-size: 22px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__rule {
    display: none !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "brand brand"
      "explore company"
      "social social"
      "briefings briefings" !important;
    gap: 28px 24px !important;
    border-top: 0 !important;
    padding-top: 0 !important;
    width: 100%;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--brand {
    display: block !important;
    grid-area: brand !important;
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--intelligence {
    grid-area: explore !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .site-footer.site-footer--editorial nav.site-footer-editorial__col--korthos {
    grid-area: company !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
    grid-area: briefings !important;
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    width: 100%;
    padding-top: 24px !important;
    border-top: 1px solid rgba(20, 20, 16, 0.14) !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social {
    grid-area: social !important;
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: grid !important;
    grid-template-columns: repeat(2, max-content) !important;
    align-items: flex-start !important;
    gap: 10px 18px !important;
    width: 100%;
    padding-top: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading {
    margin: 0 0 10px !important;
    font-size: 10px;
    line-height: 1.2;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading-label--desk-korthos {
    display: inline !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading-label--mob-company {
    display: none !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__copy {
    max-width: none;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.58;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__links {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__links li {
    margin: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__links a {
    display: inline-block;
    width: auto !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1.25;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__copy--briefings {
    display: block !important;
    max-width: none !important;
    margin: 0 0 12px !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: rgba(15, 15, 13, 0.78) !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-input,
  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
    width: 100% !important;
    height: 44px !important;
    box-sizing: border-box !important;
    border-radius: 5px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
    border: 1px solid rgba(20, 20, 16, 0.22) !important;
    padding: 0 12px !important;
    font-size: 10px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
    border: 0 !important;
    background: #11100e !important;
    color: #faf9f7 !important;
    font-size: 9px !important;
    padding: 0 12px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__newsletter-status {
    padding: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__submit-link {
    display: inline-block;
    margin-top: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--social .site-footer-editorial__heading {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__social-link {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__social-row {
    display: inline-grid !important;
    grid-template-columns: 15px minmax(0, max-content) !important;
    gap: 9px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__grid::after {
    content: none !important;
    display: none !important;
  }
}

/* Copyright/ownership lines are intentionally omitted from every footer. */
html body footer.site-footer :is(
  .site-footer__copyright,
  .site-footer-editorial__copyright,
  .footer-copyright,
  [data-footer-copyright]
) {
  display: none !important;
}

html body footer.site-footer.site-footer--editorial .site-footer-editorial__grid::after {
  content: none !important;
  display: none !important;
}

/* Final newsletter module authority: the form is an inset surface, not a rule. */
html body footer.site-footer.site-footer--editorial form.site-footer-editorial__newsletter-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 390px !important;
  min-height: 54px !important;
  margin: 16px 0 10px !important;
  padding: 4px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: #faf9f7 !important;
  box-shadow: none !important;
}

html body.site-chrome-light footer.site-footer.site-footer--editorial form.site-footer-editorial__newsletter-form {
  background: #efeee9 !important;
}

html body footer.site-footer.site-footer--editorial form.site-footer-editorial__newsletter-form:focus-within {
  box-shadow: 0 0 0 3px rgba(47, 104, 77, 0.1) !important;
}

html body footer.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 46px !important;
  height: auto !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 12px !important;
  outline: 0 !important;
  background: transparent !important;
}

html body footer.site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
  min-height: 42px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 12px !important;
}

@media (max-width: 540px) {
  html body footer.site-footer.site-footer--editorial form.site-footer-editorial__newsletter-form {
    max-width: none !important;
  }

  html body footer.site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
    padding-inline: 14px !important;
  }
}

/* Absolute divider-free footer contract: spacing owns every footer section. */
html body footer.site-footer,
html body footer.site-footer.site-footer--editorial {
  border: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body footer.site-footer::before,
html body footer.site-footer::after,
html body footer.site-footer .site-footer__row:first-child:not(:last-child)::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: transparent !important;
}

html body footer.site-footer :is(
  .site-footer-editorial__brand-line,
  .site-footer-editorial__grid,
  .site-footer-editorial__col,
  .site-footer__row
) {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

html body footer.site-footer :is(
  .site-footer-editorial__rule,
  hr,
  .footer-divider,
  .site-footer__divider
) {
  display: none !important;
  border: 0 !important;
  background: transparent !important;
}

/* The footer belongs to the page canvas. It never owns a separate slab colour. */
html body .site-footer,
html body footer.site-footer.site-footer--editorial,
html body footer.site-footer.site-footer--editorial .site-footer-editorial__inner {
  background: transparent !important;
  background-color: transparent !important;
}
html body.site-chrome-light .site-footer .site-footer-editorial__newsletter-field {
  background: #efeee9 !important;
}

/* Final footer authority: spacing and typography only, never canvas colour. */
html body .site-footer {
  border-top: 0 !important;
}
html body .site-footer .site-footer-editorial__wordmark {
  font-family: var(--site-display, "Korthos Bebas", "Bebas Neue", Impact, sans-serif) !important;
  font-weight: 400 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

/* One footer action baseline on every page that owns the editorial footer. */
.site-footer.site-footer--editorial .site-footer-editorial__action-row {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  margin-top: 14px !important;
  white-space: nowrap !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__action-row .site-footer-editorial__submit-link,
.site-footer.site-footer--editorial .site-footer-editorial__action-row .korthos-feedback,
.site-footer.site-footer--editorial .site-footer-editorial__action-row .korthos-feedback__trigger {
  display: inline-flex !important;
  min-height: 0 !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(17, 17, 15, .72) !important;
  font: 500 13.5px/1.45 Inter, var(--site-body), system-ui, sans-serif !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

@media (max-width: 540px) {
  .site-footer.site-footer--editorial .site-footer-editorial__action-row {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 8px !important;
    white-space: normal !important;
  }
}

/* Newsletter typography belongs to the same calm footer voice. */
.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
  font-family: var(--site-body) !important;
  font-size: 13px !important;
  font-weight: 450 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input::placeholder {
  color: rgba(20, 20, 16, 0.52);
  opacity: 1;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-button {
  font-family: var(--site-body) !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-status {
  font-family: var(--site-body) !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
}

/* Modular editorial refresh: preserve the existing footer grid while using
   scale and whitespace instead of hard divider rules for hierarchy. */
.site-footer.site-footer--editorial {
  border-top: 0 !important;
  margin-top: 32px;
  padding-top: clamp(38px, 4vw, 48px);
  padding-bottom: clamp(34px, 3.5vw, 48px);
}

.site-footer.site-footer--editorial .site-footer-editorial__brand-line {
  margin-bottom: clamp(28px, 3vw, 38px);
}

.site-footer.site-footer--editorial .site-footer-editorial__rule {
  display: none !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__grid {
  column-gap: clamp(30px, 3.5vw, 52px);
}

.site-footer.site-footer--editorial .site-footer-editorial__heading {
  margin-bottom: 18px;
  font-family: var(--site-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer.site-footer--editorial .site-footer-editorial__copy {
  font-size: 14px;
  font-weight: 450;
  line-height: 1.55;
}

.site-footer.site-footer--editorial .site-footer-editorial__links li {
  margin-bottom: 12px;
}

.site-footer.site-footer--editorial .site-footer-editorial__links a,
.site-footer.site-footer--editorial .site-footer-editorial__social-link,
.site-footer.site-footer--editorial .site-footer-editorial__social-name {
  font-size: 14px;
  font-weight: 450;
  line-height: 1.45;
}

.site-footer.site-footer--editorial .site-footer-editorial__submit-link {
  font-size: 13px !important;
  font-weight: 500 !important;
  border-bottom: 0 !important;
}

.site-footer.site-footer--editorial .site-footer-editorial__newsletter-input {
  font-family: var(--site-body);
  font-size: 12px;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .site-footer.site-footer--editorial {
    border-top: 0 !important;
    padding-top: 38px !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__brand-line {
    margin-bottom: 26px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__col--briefings {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__heading {
    margin-bottom: 14px !important;
    font-size: 13px;
  }

  .site-footer.site-footer--editorial .site-footer-editorial__links a,
  .site-footer.site-footer--editorial .site-footer-editorial__social-link,
  .site-footer.site-footer--editorial .site-footer-editorial__social-name {
    font-size: 13px !important;
  }
}
