@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --lf-black: #0d0d0d;
  --lf-ink: #151515;
  --lf-green: #0f3d2e;
  --lf-green-deep: #062a20;
  --lf-green-soft: #173f33;
  --lf-paper: #f7f7f5;
  --lf-paper-alt: #efede8;
  --lf-grey-border: #d9d9d2;
  --lf-grey-text: #6f706b;
  --lf-grey-soft: #e7e5de;
  --lf-gold: #c9a24b;
  --lf-gold-muted: #a98435;
  --lf-evergreen: var(--lf-green);
  --lf-deep-evergreen: var(--lf-green-deep);
  --lf-forest: var(--lf-green-soft);
  --lf-warm-gold: var(--lf-gold);
  --lf-burnt: var(--lf-gold-muted);
  --lf-sand: var(--lf-paper-alt);
  --lf-parchment: var(--lf-paper);
  --lf-muted: var(--lf-grey-text);
  --lf-line: var(--lf-grey-border);
  --lf-positive: #147a4f;
  --lf-white: #ffffff;
  --lf-shadow-soft: 0 14px 40px rgba(13, 13, 13, 0.08);
  --lf-shadow-card: 0 10px 30px rgba(13, 13, 13, 0.1);
  --lf-shadow-widget: 0 16px 38px rgba(13, 13, 13, 0.08);
  --lf-shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.35);
  --lf-shadow-editorial-soft: 0 10px 24px rgba(10, 58, 47, 0.045);
  --lf-shadow-editorial-media: 0 10px 22px rgba(10, 58, 47, 0.08);
  --lf-border-editorial-soft: rgba(15, 61, 46, 0.16);
  --lf-border-editorial-hairline: rgba(15, 61, 46, 0.12);
  --lf-surface-editorial-soft: rgba(255, 255, 255, 0.48);
  --lf-radius-xs: 6px;
  --lf-radius-sm: 6px;
  --lf-radius-md: 14px;
  --lf-radius-lg: 20px;
  --lf-radius-xl: 28px;
  --lf-radius-icon: 26%;
  --lf-shell: 1360px;
  --lf-content: 760px;
  --lf-gutter: 24px;
  --lf-font-display: "Sora", "Inter", system-ui, sans-serif;
  --lf-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lf-font-mono: "IBM Plex Mono", "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --lf-meta-xs: 12px;
  --lf-meta: 14px;
  --lf-body: 16px;
  --lf-body-lg: 18px;
  --lf-h4: 20px;
  --lf-h3: 24px;
  --lf-h2: 32px;
  --lf-h1-article: 56px;
  --lf-h1-hero: 64px;
  --lf-reading-progress: 0;
}

/* Live editorial repères: one connected data band, not a dashboard grid. */
.lf-live-reperes {
  margin-block: clamp(26px, 3vw, 42px);
  border-top: 2px solid var(--lf-green-deep);
  border-bottom: 1px solid var(--lf-line);
  background: var(--lf-white);
}

.lf-live-reperes__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--lf-line);
}

.lf-live-reperes__heading .lf-kicker {
  display: inline-flex;
  margin-bottom: 5px;
}

.lf-live-reperes__heading h2 {
  margin: 0;
  font-family: var(--lf-font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lf-live-reperes__heading > p {
  margin: 0 0 2px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
  white-space: nowrap;
}

.lf-live-reperes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 1.35fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.lf-live-reperes__grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.lf-live-reperes__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-live-reperes__grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lf-live-repere {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px clamp(16px, 1.8vw, 26px) 18px;
  border-left: 1px solid var(--lf-line);
}

.lf-live-repere:first-child {
  border-left: 0;
}

.lf-live-repere__header {
  min-height: 45px;
  margin-bottom: 15px;
}

.lf-live-repere__header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--lf-green-deep);
  font-family: var(--lf-font-body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-live-repere__header .lf-svg-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--lf-burnt);
}

.lf-live-repere__header > span {
  display: block;
  margin-top: 5px;
  color: var(--lf-muted);
  font-size: 0.68rem;
}

.lf-live-weather__current {
  display: flex;
  align-items: center;
  gap: 13px;
}

.lf-live-weather__current > strong {
  font-family: var(--lf-font-display);
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 0.9;
}

.lf-live-weather__current > strong small {
  font-size: 1rem;
  font-weight: 600;
}

.lf-live-weather__current span {
  color: var(--lf-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.lf-live-weather__current p {
  margin: 3px 0 0;
  color: var(--lf-muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.lf-live-weather__forecast {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 17px;
  border-top: 1px solid var(--lf-line);
}

.lf-live-weather__forecast > div {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 10px 4px 0;
  border-left: 1px solid var(--lf-line);
}

.lf-live-weather__forecast > div:first-child {
  border-left: 0;
}

.lf-live-weather__forecast span,
.lf-live-weather__forecast strong {
  font-size: 0.72rem;
}

.lf-live-weather__forecast span {
  color: var(--lf-muted);
}

.lf-live-markets {
  display: grid;
}

.lf-live-markets__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 9px;
  align-items: baseline;
  min-height: 31px;
  padding: 7px 0;
  border-top: 1px solid var(--lf-line);
  font-size: 0.75rem;
}

.lf-live-markets__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.lf-live-markets__row > span {
  overflow: hidden;
  color: var(--lf-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lf-live-markets__row > strong {
  font-variant-numeric: tabular-nums;
}

.lf-live-market-delta {
  min-width: 48px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-align: right;
}

.lf-live-market-delta--up {
  color: var(--lf-positive);
}

.lf-live-market-delta--down {
  color: var(--lf-burnt);
}

.lf-live-market-delta--flat {
  color: var(--lf-muted);
}

.lf-live-prayer__next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  align-items: baseline;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--lf-line);
}

.lf-live-prayer__next > span,
.lf-live-prayer__next > small {
  color: var(--lf-muted);
  font-size: 0.69rem;
}

.lf-live-prayer__next > strong {
  color: var(--lf-green-deep);
  font-family: var(--lf-font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.lf-live-prayer__next > small {
  grid-column: 1 / -1;
}

.lf-live-prayer__times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 8px;
  margin-top: 7px;
}

.lf-live-prayer__times > div {
  display: grid;
  gap: 2px;
  padding: 7px 0;
  border-bottom: 1px solid var(--lf-line);
}

.lf-live-prayer__times > div.is-next {
  border-bottom-color: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-live-prayer__times span {
  color: var(--lf-muted);
  font-size: 0.65rem;
}

.lf-live-prayer__times strong {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.lf-live-topics {
  counter-reset: lf-live-topic;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lf-live-topics li {
  counter-increment: lf-live-topic;
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  min-height: 31px;
  padding: 7px 0;
  border-top: 1px solid var(--lf-line);
  font-size: 0.78rem;
  font-weight: 700;
}

.lf-live-topics li:first-child {
  padding-top: 0;
  border-top: 0;
}

.lf-live-topics li::before {
  content: counter(lf-live-topic, decimal-leading-zero);
  color: var(--lf-burnt);
  font-size: 0.65rem;
  font-weight: 800;
}

.lf-live-topics a,
.lf-live-topics span {
  overflow-wrap: anywhere;
}

.lf-live-topics a {
  color: inherit;
  text-decoration: none;
}

.lf-live-topics a:hover,
.lf-live-topics a:focus-visible {
  color: var(--lf-burnt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lf-live-repere__related {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  color: inherit;
  text-decoration: none;
}

.lf-live-repere__related > span {
  color: var(--lf-burnt);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-live-repere__related > strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--lf-font-display);
  font-size: 0.88rem;
  line-height: 1.2;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lf-live-repere__related:hover > strong,
.lf-live-repere__related:focus-visible > strong {
  color: var(--lf-burnt);
}

.lf-live-repere__source {
  margin-top: 12px;
  color: var(--lf-muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.lf-live-ticker__item:is(a) {
  color: var(--lf-muted);
  text-decoration: none;
}

.lf-live-ticker__item:is(a):hover,
.lf-live-ticker__item:is(a):focus-visible {
  color: var(--lf-ink);
}

@media (min-width: 769px) and (max-width: 1120px) {
  .lf-live-reperes__grid,
  .lf-live-reperes__grid--count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-live-repere:nth-child(odd) {
    border-left: 0;
  }

  .lf-live-repere:nth-child(n + 3) {
    border-top: 1px solid var(--lf-line);
  }
}

@media (max-width: 768px) {
  .lf-live-reperes {
    order: 4;
    width: min(100% - 24px, var(--lf-shell));
    margin: 26px auto 0;
  }

  .lf-live-reperes__heading {
    flex-direction: column;
    align-items: start;
    gap: 6px;
    padding-block: 14px 12px;
  }

  .lf-live-reperes__heading h2 {
    font-size: 1.45rem;
  }

  .lf-live-reperes__grid,
  .lf-live-reperes__grid--count-2,
  .lf-live-reperes__grid--count-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-live-repere,
  .lf-live-repere:first-child {
    padding: 17px 0;
    border-top: 1px solid var(--lf-line);
    border-left: 0;
  }

  .lf-live-repere:first-child {
    border-top: 0;
  }

  .lf-live-repere__header {
    min-height: 0;
  }

  .lf-live-markets__row {
    grid-template-columns: minmax(0, 1fr) auto 56px;
  }
}

.lf-consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 8px;
  background: #fff;
  color: #151515;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.lf-consent-banner[hidden] {
  display: none;
}

.lf-consent-banner strong,
.lf-consent-banner p {
  display: block;
  margin: 0;
}

.lf-consent-banner p {
  max-width: 680px;
  margin-top: 4px;
  color: #555;
  font-size: 0.86rem;
  line-height: 1.45;
}

.lf-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.lf-consent-banner__actions button {
  min-height: 40px;
}

.lf-consent-banner__actions a,
.lf-footer-legal__consent {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lf-footer-legal__consent {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lf-commercial-slot {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-block: 24px;
  padding: 16px 18px;
  border-block: 1px solid rgba(201, 162, 75, 0.46);
  background: #f6f7f4;
  color: #151515;
}

.lf-commercial-slot__disclosure {
  color: #5f665f;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lf-commercial-slot p {
  margin: 0;
  color: #4f5550;
}

.lf-commercial-slot a {
  color: #0a3a2f;
  font-weight: 800;
}

.lf-commercial-slot--sponsor img {
  display: block;
  width: 100%;
  max-height: 220px;
  margin-bottom: 10px;
  object-fit: cover;
}

.lf-partnerships,
.lf-commercial-form {
  display: grid;
  gap: 16px;
}

.lf-commercial-form label {
  display: grid;
  gap: 6px;
  font-weight: 750;
}

.lf-commercial-form input,
.lf-commercial-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c8ccc7;
  border-radius: 6px;
  background: #fff;
  color: #151515;
  font: inherit;
}

.lf-commercial-form button {
  justify-self: start;
  min-height: 42px;
  padding: 9px 16px;
  border: 0;
  border-radius: 6px;
  background: #0a3a2f;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 720px) {
  .lf-consent-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
  }

  .lf-consent-banner__actions {
    justify-content: flex-start;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lf-parchment);
  color: var(--lf-ink);
  font-family: var(--lf-font-body);
  font-size: var(--lf-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.lf-tab-row__item:focus-visible {
  outline: 2px solid var(--lf-gold);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.lf-shell {
  width: min(100% - 32px, var(--lf-shell));
  margin: 0 auto;
}

.lf-page-main {
  padding-bottom: 72px;
}

.lf-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.85rem;
  line-height: 1;
}

.lf-svg-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: none;
  color: currentColor;
}

.lf-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.lf-utility-bar {
  border-bottom: 1px solid var(--lf-line);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.lf-utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  font-size: var(--lf-meta);
  color: var(--lf-muted);
}

.lf-utility-bar__actions,
.lf-language-switcher {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lf-utility-link,
.lf-language-switcher__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 180ms ease;
}

.lf-utility-link:hover,
.lf-language-switcher__link:hover {
  color: var(--lf-evergreen);
}

.lf-utility-link__mobile-label {
  display: none;
}

.lf-utility-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lf-utility-pill .lf-svg-icon,
.lf-utility-link .lf-svg-icon {
  color: var(--lf-gold);
}

.lf-utility-pill em {
  font-style: normal;
  color: var(--lf-ink);
}

.lf-brand-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--lf-line);
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.95), rgba(251, 247, 239, 0.98)),
    radial-gradient(circle at 82% 38%, rgba(197, 154, 90, 0.08), transparent 42%);
}

.lf-brand-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 90, 0.6), transparent);
}

.lf-brand-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(197, 154, 90, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 154, 90, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.lf-brand-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 18px;
}

.lf-brand-band__identity,
.lf-brand-band__aside {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.lf-brand-band__identity {
  flex: 1 1 auto;
}

.lf-brand-band__aside {
  flex: 0 0 auto;
}

.lf-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lf-brand-mark img {
  width: 74px;
  height: 74px;
}

.lf-brand-band__divider {
  width: 1px;
  height: 64px;
  background: rgba(197, 154, 90, 0.72);
}

.lf-brand-band__tagline {
  max-width: 12ch;
  margin: 0;
  color: var(--lf-forest);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.lf-brand-band__mobile-tagline {
  display: none;
}

.lf-brand-band__skyline {
  width: 232px;
  height: auto;
  opacity: 0.68;
  mix-blend-mode: multiply;
}

.lf-wordmark img {
  width: min(100%, 1040px);
  max-height: 142px;
  object-fit: contain;
  object-position: left center;
}

.lf-main-nav {
  position: relative;
  z-index: 20;
  background: var(--lf-evergreen);
  color: var(--lf-parchment);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.lf-main-nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
}

.lf-main-nav__quick {
  display: none;
}

.lf-main-nav__list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-main-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  font-family: var(--lf-font-display);
  font-size: 1.12rem;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.lf-main-nav__link:hover,
.lf-main-nav__link.is-active {
  color: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.lf-main-nav__item--mobile-extra,
.lf-main-nav__item--mobile-cta {
  display: none;
}

.lf-main-nav__cta,
.lf-main-nav__link--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 15px 6px;
  border: 1px solid rgba(232, 198, 111, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(215, 177, 88, 0.96), rgba(184, 144, 55, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  color: var(--lf-deep-evergreen);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 5px 14px rgba(4, 28, 23, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.lf-main-nav__cta:hover,
.lf-main-nav__cta:focus-visible,
.lf-main-nav__cta.is-active,
.lf-main-nav__link--gold:hover,
.lf-main-nav__link--gold:focus-visible {
  color: var(--lf-deep-evergreen);
  transform: translateY(-1px);
  border-color: rgba(248, 220, 146, 0.92);
  background:
    linear-gradient(180deg, rgba(226, 191, 104, 0.98), rgba(197, 154, 61, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 7px 16px rgba(4, 28, 23, 0.22);
}

.lf-nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lf-radius-sm);
  background: transparent;
  color: inherit;
  padding: 10px 12px;
  font-family: var(--lf-font-display);
  letter-spacing: 0;
}

.lf-nav-toggle::after {
  content: "+";
  margin-left: 8px;
  color: var(--lf-gold);
  font-family: var(--lf-font-body);
  font-weight: 700;
}

.lf-live-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--lf-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(247, 242, 232, 0.82)),
    linear-gradient(180deg, rgba(197, 154, 90, 0.1), transparent);
}

.lf-live-ticker__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}

.lf-live-ticker__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lf-burnt);
  color: var(--lf-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--lf-meta);
  font-weight: 700;
  border-radius: var(--lf-radius-sm);
  padding: 8px 12px;
  box-shadow: 0 1px 0 rgba(10, 58, 47, 0.16);
}

.lf-live-ticker__marquee {
  min-width: 0;
  overflow: hidden;
}

.lf-live-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: lf-ticker 36s linear infinite;
}

.lf-live-ticker__marquee:hover .lf-live-ticker__track {
  animation-play-state: paused;
}

.lf-live-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 38px;
  white-space: nowrap;
  color: var(--lf-muted);
  font-size: 0.95rem;
}

.lf-live-ticker__item strong {
  color: var(--lf-burnt);
}

.lf-live-ticker__controls {
  display: inline-flex;
  gap: 6px;
}

.lf-live-ticker__controls button,
.lf-live-ticker__control {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 207, 184, 0.95);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--lf-muted);
}

.lf-home-mobile-ticker {
  display: none;
}

@keyframes lf-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.lf-home-top {
  padding-top: 28px;
}

.lf-home-top__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.72fr) minmax(300px, 0.52fr);
  gap: var(--lf-gutter);
  align-items: start;
}

.lf-home-top__grid > * {
  min-width: 0;
}

.lf-card,
.lf-widget,
.lf-signature-card,
.lf-side-card,
.lf-source-box,
.lf-tag-box,
.lf-author-card,
.lf-opinion-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-md);
  box-shadow: var(--lf-shadow-card);
}

.lf-media-fallback {
  object-fit: contain !important;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(197, 154, 90, 0.14), transparent 44%),
    linear-gradient(135deg, rgba(247, 242, 232, 0.95), rgba(255, 255, 255, 0.7));
}

img.lf-media-source--brand-fallback {
  filter: saturate(0.88) contrast(0.96);
}

.lf-hero-card img.lf-media-source--brand-fallback {
  filter: saturate(0.82) contrast(0.94) brightness(0.92);
}

.lf-card,
.lf-widget,
.lf-signature-card,
.lf-opinion-card,
.lf-side-card,
.lf-source-box,
.lf-tag-box,
.lf-author-card {
  overflow: hidden;
}

.lf-card,
.lf-widget,
.lf-signature-card,
.lf-opinion-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lf-card:hover,
.lf-widget:hover,
.lf-signature-card:hover,
.lf-opinion-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lf-shadow-widget);
  border-color: rgba(197, 154, 90, 0.65);
}

.lf-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--lf-sand);
}

.lf-card__media {
  position: relative;
}

.lf-card__image-link,
.lf-card__media-link,
.lf-story-stack__link,
.lf-atlas-item__media-link,
.lf-related-sidebar__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.lf-card__image-link {
  position: relative;
  z-index: 0;
}

.lf-card__media-link {
  position: relative;
  overflow: hidden;
}

.lf-story-stack__link {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lf-card__media-link img,
.lf-card__image-link img,
.lf-story-stack__thumb,
.lf-atlas-item__image,
.lf-related-sidebar__media-link img {
  transition: transform 220ms ease, filter 220ms ease;
}

.lf-story-card:hover .lf-card__media-link img,
.lf-card--compact:hover .lf-card__media-link img,
.lf-hero-card:hover .lf-card__image-link img,
.lf-story-stack__item:hover .lf-story-stack__thumb,
.lf-atlas-item:hover .lf-atlas-item__image,
.lf-related-sidebar__item:hover .lf-related-sidebar__media-link img {
  transform: scale(1.025);
}

.lf-hero-card__content h1 a,
.lf-card__body h2 a,
.lf-card__body h3 a,
.lf-atlas-item h2 a,
.lf-related-sidebar__item h3 a,
.lf-opinion-card h2 a,
.lf-opinion-card p a {
  color: inherit;
  text-decoration: none;
}

.lf-card__body h2 a:hover,
.lf-card__body h3 a:hover,
.lf-atlas-item h2 a:hover,
.lf-related-sidebar__item h3 a:hover,
.lf-opinion-card h2 a:hover,
.lf-opinion-card p a:hover {
  color: var(--lf-burnt);
}

.lf-hero-card__content h1 a:hover,
.lf-hero-card__content h1 a:focus-visible {
  color: var(--lf-white);
  text-decoration: underline;
  text-decoration-color: rgba(197, 154, 90, 0.82);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.lf-media-caption {
  display: block;
  margin-top: 7px;
  color: var(--lf-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.lf-card__media .lf-media-caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-block;
  max-width: calc(100% - 20px);
  margin-top: 0;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(10, 58, 47, 0.7);
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lf-card:hover .lf-card__media .lf-media-caption,
.lf-card:focus-within .lf-card__media .lf-media-caption {
  opacity: 1;
  transform: translateY(0);
}

.lf-card__body {
  padding: 18px 18px 16px;
}

.lf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--lf-evergreen);
  color: var(--lf-white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
  font-weight: 700;
}

.lf-kicker--warm {
  color: var(--lf-burnt);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.lf-kicker--overlay {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(14, 74, 60, 0.22);
}

.lf-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-meta--light {
  color: rgba(255, 255, 255, 0.84);
}

.lf-meta--hero {
  gap: 12px;
}

.lf-hero-card {
  position: relative;
  min-height: 100%;
}

.lf-card__image--hero {
  aspect-ratio: 11 / 8.35;
}

.lf-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 58, 47, 0.96) 14%, rgba(10, 58, 47, 0.1) 60%);
  pointer-events: none;
}

.lf-hero-card__content {
  position: absolute;
  inset: auto 28px 24px;
  z-index: 2;
  max-width: min(88%, 560px);
  color: var(--lf-white);
  pointer-events: none;
}

.lf-hero-card__content h1 {
  margin: 14px 0 12px;
  font-family: var(--lf-font-display);
  font-size: clamp(2.4rem, 4.4vw, var(--lf-h1-hero));
  line-height: 0.95;
  letter-spacing: 0;
}

.lf-hero-card__content a {
  pointer-events: auto;
}

.lf-hero-card__content p {
  margin: 0 0 16px;
  font-size: var(--lf-body-lg);
  max-width: 33ch;
}

.lf-avatar--hero {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.26);
}

.lf-story-stack {
  display: grid;
  gap: 14px;
}

.lf-story-stack__item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(220, 207, 184, 0.8);
}

.lf-story-stack__item:last-child {
  border-bottom: none;
}

.lf-story-stack__thumb {
  width: 96px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--lf-radius-sm);
}

.lf-story-stack__body h2,
.lf-story-stack__headline {
  display: block;
  margin: 8px 0 8px;
  font-family: var(--lf-font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.lf-home-widgets {
  display: grid;
  gap: 16px;
  align-items: start;
}

.lf-widget {
  padding: 18px;
}

.lf-home-widgets .lf-widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 247, 239, 0.92));
}

.lf-widget__header {
  margin-bottom: 16px;
}

.lf-widget__header h2 {
  margin: 0;
  color: var(--lf-burnt);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-widget__header--with-icon h2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.lf-widget__icon {
  width: 1.18rem;
  height: 1.18rem;
  color: var(--lf-evergreen);
}

.lf-weather {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lf-sun-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(197, 154, 90, 0.85);
  border-radius: 50%;
}

.lf-sun-icon::before,
.lf-sun-icon::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(197, 154, 90, 0.45);
}

.lf-weather__temp {
  font-family: var(--lf-font-display);
  font-size: 2.35rem;
  line-height: 0.95;
}

.lf-weather__temp small {
  font-size: 1.08rem;
}

.lf-weather p {
  margin: 4px 0 0;
  color: var(--lf-muted);
}

.lf-weather__forecast {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  font-size: var(--lf-meta);
  color: var(--lf-muted);
}

.lf-weather__forecast div {
  display: grid;
  gap: 2px;
  justify-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(220, 207, 184, 0.65);
}

.lf-market-list,
.lf-trending-list {
  display: grid;
  gap: 10px;
}

.lf-market-list__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  font-size: var(--lf-meta);
}

.lf-market-list__item strong {
  font-weight: 600;
  color: var(--lf-ink);
}

.lf-market-list__item em {
  font-style: normal;
  color: var(--lf-positive);
  font-weight: 600;
}

.lf-trending-list {
  counter-reset: trend;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-trending-list li {
  counter-increment: trend;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.lf-trending-list li::before {
  content: counter(trend);
  color: var(--lf-burnt);
  font-family: var(--lf-font-display);
  font-size: 1.4rem;
}

.lf-home-signals,
.lf-home-news,
.lf-home-briefs,
.lf-opinion-strip,
.lf-radar,
.lf-article-end {
  padding-top: 28px;
}

.lf-signature-grid,
.lf-briefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--lf-gutter);
}

.lf-signature-card {
  padding: 18px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(251, 247, 239, 0.9)),
    radial-gradient(circle at 0 0, rgba(197, 154, 90, 0.11), transparent 34%);
}

.lf-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.lf-section-heading__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.lf-section-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--lf-burnt);
  font-family: var(--lf-font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.lf-section-heading__label img {
  width: 24px;
  height: 24px;
}

.lf-section-heading__icon {
  width: 1.55rem;
  height: 1.55rem;
  color: currentColor;
}

.lf-section-heading__icon--signal,
.lf-section-heading__icon--radar,
.lf-section-heading__icon--related {
  color: var(--lf-gold);
}

.lf-section-heading__icon--retenir,
.lf-section-heading__icon--atlas,
.lf-section-heading__icon--coverage,
.lf-section-heading__icon--opinion {
  color: var(--lf-burnt);
}

.lf-section-heading a {
  color: var(--lf-muted);
  font-size: var(--lf-meta);
  transition: color 160ms ease;
}

.lf-section-heading a:hover {
  color: var(--lf-evergreen);
}

.lf-module-summary {
  margin: -4px 0 16px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
  line-height: 1.55;
}

.lf-editorial-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(197, 154, 90, 0.42);
  border-radius: 4px;
  color: var(--lf-forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.lf-source-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  max-width: 100%;
  align-items: flex-start;
  padding: 4px 7px;
  border: 1px solid rgba(14, 74, 60, 0.12);
  border-radius: 4px;
  background: rgba(247, 242, 232, 0.72);
  color: var(--lf-forest);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.lf-source-pill__label {
  display: inline-flex;
  align-items: center;
}

.lf-source-pill__label::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 999px;
  background: var(--lf-gold);
}

.lf-source-pill__angle {
  max-width: 34ch;
  color: var(--lf-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

a.lf-source-pill:hover {
  border-color: rgba(14, 74, 60, 0.32);
  background: rgba(255, 255, 255, 0.9);
}

.lf-section-heading--line {
  padding-top: 4px;
  border-top: 1px solid rgba(197, 154, 90, 0.55);
}

.lf-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lf-signal-item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px 12px;
  border-right: 1px solid rgba(220, 207, 184, 0.7);
  border-top: 2px solid rgba(197, 154, 90, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(247, 242, 232, 0));
}

.lf-signal-item:last-child {
  border-right: none;
}

.lf-signal-item__icon {
  color: var(--lf-evergreen);
}

.lf-signal-item__icon .lf-svg-icon {
  width: 2rem;
  height: 2rem;
}

.lf-signal-item h2,
.lf-atlas-item h2,
.lf-coverage-item h2,
.lf-video-card__body h3,
.lf-related-sidebar__item h3,
.lf-widget h3 {
  margin: 0;
  font-family: var(--lf-font-display);
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.lf-signal-item p,
.lf-atlas-item p,
.lf-coverage-item p,
.lf-opinion-card p,
.lf-widget p,
.lf-card__body p {
  margin: 0;
  color: var(--lf-muted);
}

.lf-retenir-list {
  display: grid;
}

.lf-retenir-list__item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(220, 207, 184, 0.7);
}

.lf-retenir-list__item:first-child {
  border-top: none;
  padding-top: 0;
}

.lf-retenir-list__item span {
  color: var(--lf-burnt);
  font-weight: 600;
  font-size: var(--lf-meta);
}

.lf-home-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--lf-gutter);
  align-items: start;
}

.lf-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--lf-gutter);
}

.lf-story-card h2 {
  margin: 12px 0 10px;
  font-family: var(--lf-font-display);
  font-size: 1.85rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.lf-home-news__rail {
  display: grid;
  gap: 16px;
}

.lf-widget--newsletter {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 242, 232, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(197, 154, 90, 0.16), transparent 38%);
}

.lf-widget--newsletter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--lf-gold), var(--lf-burnt));
}

.lf-widget--newsletter .lf-widget__header h2 {
  color: var(--lf-evergreen);
  font-family: var(--lf-font-display);
  font-size: 1.28rem;
  letter-spacing: 0;
  text-transform: none;
}

.lf-widget__note {
  display: inline-block;
  margin-top: 10px;
  color: var(--lf-muted);
  font-size: var(--lf-meta-xs);
}

.lf-widget--dark {
  background:
    linear-gradient(180deg, rgba(14, 74, 60, 0.98), rgba(10, 58, 47, 0.98)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 16px bottom 16px / 110px no-repeat;
  color: var(--lf-white);
  border-color: rgba(197, 154, 90, 0.34);
}

.lf-widget--dark .lf-widget__header h2,
.lf-widget--dark p,
.lf-widget--dark h3,
.lf-widget--dark a {
  color: var(--lf-white);
}

.lf-stack-form,
.lf-inline-form,
.lf-hero-form {
  display: grid;
  gap: 10px;
}

.lf-inline-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.lf-stack-form input,
.lf-inline-form input,
.lf-hero-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(220, 207, 184, 0.9);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.85);
}

.lf-stack-form button,
.lf-inline-form button,
.lf-hero-form button,
.lf-listen-button {
  border: none;
  border-radius: var(--lf-radius-sm);
  background: var(--lf-evergreen);
  color: var(--lf-white);
  padding: 12px 16px;
  font-weight: 600;
}

.lf-stack-form button:hover,
.lf-inline-form button:hover,
.lf-hero-form button:hover,
.lf-listen-button:hover {
  background: var(--lf-deep-evergreen);
}

.lf-newsletter-form {
  position: relative;
}

.lf-newsletter-form--coming-soon {
  display: grid;
  gap: 0.55rem;
}

.lf-newsletter-form__state {
  width: fit-content;
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  color: var(--lf-gold);
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lf-newsletter-form--coming-soon .lf-newsletter-form__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border: 1px solid rgba(201, 162, 75, 0.52);
  border-radius: 8px;
  padding: 0.72rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--lf-forest);
}

.lf-newsletter-form[data-newsletter-collection="disabled"] input,
.lf-newsletter-form[data-newsletter-collection="disabled"] button {
  cursor: not-allowed;
}

.lf-newsletter-form[data-newsletter-collection="disabled"] input {
  color: var(--lf-ink-muted);
  background: rgba(255, 255, 255, 0.64);
}

.lf-newsletter-form[data-newsletter-collection="disabled"] button {
  color: var(--lf-ink);
  background: var(--lf-line);
}

.lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible {
  color: var(--lf-ink);
  background: var(--lf-line);
  transform: none;
}

.lf-newsletter-form__link {
  width: fit-content;
  color: var(--lf-evergreen);
  font-size: var(--lf-meta);
  font-weight: 800;
}

.lf-newsletter-form__link:hover {
  color: var(--lf-burnt);
}

.lf-newsletter-form__status {
  min-height: 1.2em;
  color: var(--lf-forest);
  font-size: var(--lf-meta-xs);
  font-weight: 700;
}

.lf-newsletter-form .lf-widget__note,
.lf-newsletter-form__status {
  display: block;
}

.lf-newsletter-form.lf-inline-form .lf-newsletter-form__link,
.lf-newsletter-form.lf-inline-form .lf-widget__note,
.lf-newsletter-form.lf-inline-form .lf-newsletter-form__status,
.lf-newsletter-form.lf-hero-form .lf-widget__note,
.lf-newsletter-form.lf-hero-form .lf-newsletter-form__status {
  grid-column: 1 / -1;
}

.lf-widget--dark .lf-stack-form input {
  background: rgba(255, 255, 255, 0.12);
  color: var(--lf-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.lf-widget--dark .lf-stack-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.lf-widget--dark .lf-stack-form button {
  background: var(--lf-white);
  color: var(--lf-evergreen);
}

.lf-widget--dark .lf-widget__note {
  color: rgba(255, 255, 255, 0.72);
}

.lf-widget--dark .lf-newsletter-form__link,
.lf-widget--dark .lf-newsletter-form__status {
  color: var(--lf-white);
}

.lf-podcast {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.lf-podcast__badge {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(197, 154, 90, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.lf-podcast__badge .lf-svg-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.lf-podcast a {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.lf-video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lf-radius-sm);
}

.lf-video-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lf-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(14, 74, 60, 0.4);
  color: var(--lf-white);
  transform: translate(-50%, -50%);
}

.lf-video-card__body {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(10, 58, 47, 0), rgba(10, 58, 47, 0.92));
  color: var(--lf-white);
}

.lf-atlas-list,
.lf-coverage-list,
.lf-related-sidebar,
.lf-signal-sidebar {
  display: grid;
  gap: 14px;
}

.lf-atlas-item,
.lf-related-sidebar__item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lf-atlas-item__image,
.lf-related-sidebar__item img {
  width: 112px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--lf-radius-sm);
}

.lf-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.lf-tab-row__item {
  padding: 8px 14px;
  border: 1px solid rgba(220, 207, 184, 0.85);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.55);
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-tab-row__item.is-active {
  background: var(--lf-burnt);
  border-color: var(--lf-burnt);
  color: var(--lf-white);
}

.lf-coverage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(220, 207, 184, 0.58);
}

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

.lf-coverage-item__label,
.lf-opinion-card__role {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--lf-burnt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

.lf-opinion-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lf-opinion-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px;
  align-items: start;
}

.lf-opinion-card h2 {
  margin: 0 0 4px;
  font-family: var(--lf-font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}

.lf-avatar {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(197, 154, 90, 0.18), rgba(14, 74, 60, 0.14));
  border: 1px solid rgba(197, 154, 90, 0.52);
  color: var(--lf-evergreen);
  font-family: var(--lf-font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.lf-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lf-avatar--author {
  width: 62px;
  height: 62px;
}

.lf-avatar--author-card {
  width: 76px;
  height: 76px;
}

.lf-avatar--warm {
  background: linear-gradient(180deg, rgba(197, 106, 61, 0.12), rgba(197, 154, 90, 0.18));
}

.lf-avatar--warm img {
  object-position: center top;
}

.lf-avatar--editorial {
  width: 74px;
  height: 86px;
  border-radius: 6px;
}

.lf-avatar--editorial img {
  object-position: center top;
}

.lf-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lf-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(220, 207, 184, 0.92);
  background: rgba(255, 255, 255, 0.6);
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-site-footer {
  background:
    linear-gradient(180deg, var(--lf-evergreen), var(--lf-deep-evergreen)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 40px bottom 20px / 160px no-repeat;
  color: rgba(255, 255, 255, 0.88);
}

.lf-footer-primary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 38px 0 28px;
}

.lf-footer-primary__grid > * {
  padding-left: 22px;
  border-left: 1px solid rgba(197, 154, 90, 0.35);
}

.lf-footer-primary__grid > :first-child {
  padding-left: 0;
  border-left: none;
}

.lf-footer-brand__lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.lf-footer-brand__symbol {
  width: 44px;
  height: 44px;
  flex: none;
}

.lf-footer-brand__lockup img:last-child {
  width: 190px;
}

.lf-footer-brand p {
  max-width: 20ch;
  margin: 0 0 18px;
}

.lf-footer-socials {
  display: flex;
  gap: 10px;
}

.lf-footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lf-footer-newsletter .lf-inline-form input {
  min-width: 0;
  background: rgba(255, 255, 255, 0.94);
}

.lf-footer-newsletter .lf-inline-form {
  grid-template-columns: 1fr;
}

.lf-footer-newsletter .lf-inline-form button {
  background: var(--lf-gold);
  color: var(--lf-ink);
}

.lf-footer-column h3,
.lf-footer-newsletter h3 {
  margin: 0 0 14px;
  font-family: var(--lf-font-display);
  font-size: 1.3rem;
  color: var(--lf-white);
}

.lf-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.lf-footer-column a,
.lf-footer-newsletter p {
  color: rgba(255, 255, 255, 0.78);
}

.lf-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lf-footer-legal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 18px;
  font-size: var(--lf-meta);
}

.lf-footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lf-breadcrumbs {
  padding-top: 22px;
}

.lf-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-breadcrumbs li + li::before {
  content: "›";
  margin-right: 10px;
}

.lf-article-layout {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr) 310px;
  gap: var(--lf-gutter);
  padding-top: 18px;
}

.lf-share-rail,
.lf-article-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lf-side-card {
  padding: 18px 16px;
}

.lf-side-card h2,
.lf-source-box h2,
.lf-tag-box h2 {
  margin: 0 0 14px;
  color: var(--lf-burnt);
  font-family: var(--lf-font-display);
  font-size: 1.35rem;
}

.lf-share-rail__icons {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.lf-share-rail__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(220, 207, 184, 0.92);
  background: rgba(255, 255, 255, 0.65);
  color: var(--lf-evergreen);
  font-size: var(--lf-meta);
  font-weight: 700;
}

.lf-share-rail__icon:hover {
  background: var(--lf-evergreen);
  color: var(--lf-white);
}

.lf-share-card__status {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--lf-forest);
  font-size: var(--lf-meta-xs);
  font-weight: 700;
}

.lf-side-card__tools {
  display: grid;
  gap: 10px;
}

.lf-side-card__tools button {
  border: 1px solid rgba(220, 207, 184, 0.92);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--lf-muted);
  padding: 10px 12px;
  text-align: left;
}

.lf-side-card__tools button:hover {
  border-color: rgba(197, 154, 90, 0.78);
  color: var(--lf-evergreen);
}

.lf-summary-list,
.lf-bullet-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.lf-summary-list li::marker,
.lf-bullet-list li::marker {
  color: var(--lf-burnt);
}

.lf-article-header h1 {
  margin: 16px 0 16px;
  font-family: var(--lf-font-display);
  font-size: clamp(2.75rem, 5vw, var(--lf-h1-article));
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 14ch;
}

.lf-article-header__deck {
  max-width: 36ch;
  margin: 0 0 22px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  color: var(--lf-forest);
  border-left: 3px solid rgba(197, 154, 90, 0.72);
  padding-left: 16px;
}

.lf-author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  padding-bottom: 12px;
}

.lf-author-meta__identity,
.lf-author-meta__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lf-author-meta__identity > div,
.lf-author-meta__info {
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-author-meta__identity > div {
  display: grid;
  gap: 4px;
}

.lf-author-meta__identity strong {
  display: block;
  color: var(--lf-ink);
  font-size: 1rem;
}

.lf-author-meta__info {
  gap: 18px;
  flex-wrap: wrap;
}

.lf-listen-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 14px;
}

.lf-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lf-muted);
}

.lf-meta-chip .lf-svg-icon,
.lf-listen-button .lf-svg-icon {
  color: var(--lf-burnt);
}

.lf-article-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.lf-article-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(14, 74, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--lf-forest);
  font-size: var(--lf-meta-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lf-trust-strip__icon {
  width: 1rem;
  height: 1rem;
  color: var(--lf-burnt);
}

.lf-article-trust-strip strong {
  color: var(--lf-burnt);
}

.lf-article-hero {
  margin: 18px 0 18px;
}

.lf-article-hero img {
  width: 100%;
  border-radius: var(--lf-radius-md);
  box-shadow: var(--lf-shadow-widget);
}

.lf-article-hero figcaption {
  padding-top: 8px;
  text-align: center;
  color: var(--lf-muted);
  font-size: var(--lf-meta-xs);
}

.lf-mobile-trust-pack {
  display: none;
}

.lf-article-body {
  max-width: var(--lf-content);
}

.lf-article-section {
  margin-bottom: 26px;
}

.lf-article-section h2 {
  margin: 0 0 14px;
  font-family: var(--lf-font-display);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1.04;
}

.lf-article-section p {
  margin: 0 0 14px;
  font-size: 1.08rem;
}

.lf-article-body[data-text-scale="-1"] .lf-article-section p {
  font-size: 1rem;
}

.lf-article-body[data-text-scale="1"] .lf-article-section p {
  font-size: 1.16rem;
}

.lf-article-body[data-text-scale="2"] .lf-article-section p {
  font-size: 1.24rem;
}

.lf-dropcap::first-letter {
  float: left;
  margin: 0.06em 0.14em 0 0;
  font-family: var(--lf-font-display);
  font-size: 4.35rem;
  line-height: 0.8;
  color: var(--lf-evergreen);
}

.lf-pull-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border: 1px solid rgba(197, 154, 90, 0.52);
  border-left: 4px solid var(--lf-gold);
  border-radius: var(--lf-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 232, 0.92));
}

.lf-pull-quote p {
  margin: 0 0 10px;
  font-family: var(--lf-font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.25;
}

.lf-pull-quote cite {
  color: var(--lf-muted);
  font-size: var(--lf-meta);
  font-style: normal;
}

.lf-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.lf-data-card {
  padding: 18px;
  border: 1px solid rgba(220, 207, 184, 0.95);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.66);
}

.lf-data-card h3 {
  margin: 0 0 6px;
  font-family: var(--lf-font-display);
  font-size: 1.35rem;
}

.lf-data-card p {
  margin: 0 0 14px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-bar-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 168px;
  padding-top: 14px;
}

.lf-bar-chart__item {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.lf-bar-chart__bar {
  width: 34px;
  min-height: 12px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--lf-gold), var(--lf-evergreen));
}

.lf-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(220, 207, 184, 0.95);
  border-radius: var(--lf-radius-md);
  overflow: hidden;
}

.lf-mini-stats__item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(220, 207, 184, 0.95);
}

.lf-mini-stats__item:last-child {
  border-right: none;
}

.lf-mini-stats__item strong {
  display: block;
  font-family: var(--lf-font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--lf-burnt);
}

.lf-mini-stats__item span {
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-bullet-list,
.lf-stat-list,
.lf-related-sidebar,
.lf-signal-sidebar {
  margin: 0;
}

.lf-widget--trust {
  position: relative;
  border-color: rgba(14, 74, 60, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(251, 247, 239, 0.94)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.1), transparent 34%);
}

.lf-widget--trust::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lf-evergreen), var(--lf-gold));
}

.lf-trust-list {
  padding-left: 0;
  list-style: none;
  counter-reset: trust-list;
}

.lf-trust-list li {
  counter-increment: trust-list;
  display: grid;
  gap: 8px;
  padding: 12px 0 12px 34px;
  border-top: 1px solid rgba(220, 207, 184, 0.72);
  position: relative;
}

.lf-trust-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.lf-trust-list li::before {
  content: counter(trust-list);
  position: absolute;
  top: 12px;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(197, 154, 90, 0.48);
  border-radius: 50%;
  color: var(--lf-burnt);
  font-family: var(--lf-font-display);
  font-size: 0.92rem;
  line-height: 1;
}

.lf-trust-list li:first-child::before {
  top: 0;
}

.lf-confidence-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 4px 7px;
  border: 1px solid rgba(14, 74, 60, 0.14);
  border-radius: 999px;
  background: rgba(14, 74, 60, 0.06);
  color: var(--lf-forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.lf-stat-list,
.lf-signal-sidebar {
  display: grid;
  gap: 12px;
}

.lf-stat-list__item {
  padding: 12px 0;
  border-top: 1px solid rgba(220, 207, 184, 0.7);
}

.lf-stat-list__item:first-child {
  border-top: none;
  padding-top: 0;
}

.lf-stat-list__item strong {
  font-family: var(--lf-font-display);
  font-size: 2rem;
  line-height: 0.9;
}

.lf-stat-list__item span {
  color: var(--lf-evergreen);
}

.lf-stat-list__item p {
  margin: 6px 0 0;
  color: var(--lf-muted);
}

.lf-stat-list__item .lf-confidence-badge {
  margin-top: 10px;
}

.lf-signal-sidebar__item {
  padding-top: 12px;
  border-top: 1px solid rgba(220, 207, 184, 0.7);
}

.lf-signal-sidebar__item:first-child {
  border-top: none;
  padding-top: 0;
}

.lf-signal-sidebar__item h3 {
  margin: 0 0 6px;
  font-family: var(--lf-font-display);
  font-size: 1.25rem;
}

.lf-widget--signal-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 242, 232, 0.92)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 14px top 14px / 58px no-repeat;
}

.lf-signal-cta {
  display: grid;
  gap: 14px;
}

.lf-signal-cta__icon {
  color: var(--lf-evergreen);
}

.lf-signal-cta__icon .lf-svg-icon {
  width: 1.9rem;
  height: 1.9rem;
}

.lf-ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(14, 74, 60, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--lf-evergreen);
  font-weight: 600;
}

.lf-article-end__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: var(--lf-gutter);
  align-items: start;
}

.lf-source-box,
.lf-tag-box {
  padding: 20px;
}

.lf-source-box {
  position: relative;
  border-top: 3px solid rgba(197, 154, 90, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(251, 247, 239, 0.96)),
    radial-gradient(circle at 100% 0, rgba(14, 74, 60, 0.08), transparent 28%);
}

.lf-source-box::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 154, 90, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(197, 154, 90, 0.68) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(14, 74, 60, 0.1), rgba(197, 154, 90, 0.08));
}

.lf-source-box__header {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.lf-source-box__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lf-source-box__mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  flex: none;
  place-items: center;
  border: 1px solid rgba(197, 154, 90, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(197, 154, 90, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.62);
  color: var(--lf-evergreen);
}

.lf-source-box__mark .lf-svg-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.lf-source-box__mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(197, 154, 90, 0.34);
  border-radius: inherit;
}

.lf-source-box__header span {
  color: var(--lf-evergreen);
  font-size: var(--lf-meta-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lf-source-box__header h2 {
  margin-bottom: 0;
}

.lf-source-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.lf-source-box__meta span {
  padding: 6px 9px;
  border: 1px solid rgba(197, 154, 90, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--lf-forest);
  font-size: var(--lf-meta-xs);
  font-weight: 700;
}

.lf-source-references {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.lf-source-references--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.lf-source-references--cards li {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(220, 207, 184, 0.78);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.lf-source-references a {
  color: var(--lf-evergreen);
}

.lf-method-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.lf-method-list li::marker {
  color: var(--lf-burnt);
  font-weight: 700;
}

.lf-method-notes {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(14, 74, 60, 0.13);
  border-radius: var(--lf-radius-sm);
  background: rgba(247, 242, 232, 0.78);
}

.lf-method-notes p {
  margin: 0;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px;
}

.lf-author-card h2 {
  margin: 0 0 6px;
  font-family: var(--lf-font-display);
  font-size: 1.7rem;
}

.lf-author-card span,
.lf-author-card p {
  color: var(--lf-muted);
}

.lf-author-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--lf-evergreen);
  font-weight: 600;
}

.lf-read-also {
  grid-column: 1 / -1;
}

.lf-read-also__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lf-card--compact h3 {
  margin: 12px 0 10px;
  font-family: var(--lf-font-display);
  font-size: 1.35rem;
  line-height: 1.08;
}

.lf-scaffold-page {
  padding: 64px 0 96px;
}

.lf-scaffold-page h1 {
  margin: 12px 0;
  font-family: var(--lf-font-display);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.95;
}

body.has-motion .js-reveal.is-visible {
  animation: lf-rise 560ms cubic-bezier(0.2, 0.68, 0.18, 1) both;
}

@keyframes lf-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lf-live-breath {
  0%,
  100% {
    box-shadow: 0 1px 0 rgba(10, 58, 47, 0.16), 0 0 0 rgba(197, 106, 61, 0);
  }

  50% {
    box-shadow: 0 1px 0 rgba(10, 58, 47, 0.16), 0 0 0 5px rgba(197, 106, 61, 0.1);
  }
}

@keyframes lf-signal-ring {
  0%,
  100% {
    opacity: 0.54;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes lf-radar-sweep {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(12deg);
  }
}

@keyframes lf-source-ring {
  from {
    opacity: 0;
    transform: scale(0.82) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 1260px) {
  .lf-home-top__grid,
  .lf-home-news__grid,
  .lf-article-layout,
  .lf-footer-primary__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-story-grid,
  .lf-read-also__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-story-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-home-widgets,
  .lf-home-news__rail,
  .lf-share-rail,
  .lf-article-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lf-share-rail {
    order: 2;
  }

  .lf-article-sidebar {
    order: 3;
  }

  .lf-article-main {
    order: 1;
  }

  .lf-footer-primary__grid > * {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 1024px) {
  .lf-brand-band__inner {
    justify-content: flex-start;
  }

  .lf-brand-band__skyline {
    width: 170px;
  }

  .lf-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lf-main-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: auto;
    padding: 7px 0;
  }

  .lf-main-nav__quick {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 1;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .lf-main-nav__quick::-webkit-scrollbar {
    display: none;
  }

  .lf-main-nav__quick-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--lf-font-display);
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .lf-main-nav__quick-link.is-active {
    color: var(--lf-white);
  }

  .lf-main-nav__cta {
    display: inline-flex;
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    min-height: 40px;
    padding: 7px 14px;
    font-size: 0.93rem;
  }

  .lf-main-nav__list {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 14px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(197, 154, 90, 0.24);
    background: transparent;
    box-shadow: var(--lf-shadow-widget);
  }

  .lf-main-nav__list.is-open {
    display: grid;
  }

  .lf-main-nav__item--mobile-extra,
  .lf-main-nav__item--mobile-cta {
    display: list-item;
  }

  .lf-main-nav__item--mobile-cta {
    grid-column: 1 / -1;
    padding-bottom: 8px;
  }

  .lf-nav-toggle {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .lf-main-nav__link {
    min-height: 38px;
    font-size: 1rem;
  }

  .lf-main-nav__link--gold {
    width: 100%;
    min-height: 44px;
    color: var(--lf-deep-evergreen);
    font-family: var(--lf-font-body);
    font-size: 0.95rem;
  }

  .lf-signature-grid,
  .lf-briefs-grid,
  .lf-article-end__grid,
  .lf-data-grid,
  .lf-opinion-strip__grid,
  .lf-signal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-home-widgets,
  .lf-home-news__rail,
  .lf-article-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-mini-stats {
    grid-template-columns: 1fr;
  }

  .lf-live-ticker__controls {
    display: none;
  }
}

@media (max-width: 768px) {
  .lf-shell {
    width: min(100% - 24px, var(--lf-shell));
  }

  .lf-utility-bar__inner {
    display: grid;
    gap: 6px;
    padding: 7px 0;
    font-size: 0.82rem;
  }

  .lf-utility-bar__actions {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .lf-utility-link--account {
    display: none;
  }

  .lf-utility-link__label {
    display: none;
  }

  .lf-utility-link__mobile-label {
    display: inline;
  }

  .lf-utility-pill,
  .lf-utility-link,
  .lf-language-switcher {
    gap: 5px;
  }

  .lf-wordmark img {
    width: 160%;
    max-width: none;
    max-height: 154px;
    margin-left: -6%;
  }

  .lf-wordmark {
    overflow: hidden;
  }

  .lf-brand-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .lf-brand-band__mobile-tagline {
    display: block;
    max-width: 12ch;
    margin: 0;
    padding-left: 12px;
    border-left: 1px solid rgba(197, 154, 90, 0.74);
    color: var(--lf-forest);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.22;
  }

  .lf-brand-band__skyline {
    display: none;
  }

  .lf-brand-mark img {
    width: 58px;
    height: 58px;
  }

  .lf-home {
    display: flex;
    flex-direction: column;
  }

  .lf-home-mobile-ticker {
    display: none;
    order: 2;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
  }

  .lf-home-mobile-ticker .lf-shell {
    width: 100%;
  }

  .lf-home-top,
  .lf-home-top__grid,
  .lf-home-news,
  .lf-home-news__grid {
    display: contents;
  }

  .lf-hero-card {
    order: 1;
    width: min(100% - 24px, var(--lf-shell));
    margin: 18px auto 0;
  }

  .lf-story-stack {
    order: 3;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
  }

  .lf-home-news > .lf-section-heading {
    order: 4;
    width: min(100% - 24px, var(--lf-shell));
    margin: 8px auto 0;
  }

  .lf-story-grid {
    order: 5;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
  }

  .lf-home-signals {
    order: 6;
  }

  .lf-home-briefs {
    order: 7;
  }

  .lf-home-widgets {
    order: 8;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
  }

  .lf-home-news__rail {
    order: 10;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
  }

  .lf-opinion-strip {
    order: 11;
  }

  .lf-radar {
    order: 12;
  }

  .lf-hero-card__content {
    inset-inline: 18px;
    bottom: 18px;
    max-width: 100%;
  }

  .lf-hero-card__content h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .lf-hero-card__content p {
    font-size: var(--lf-body);
  }

  .lf-story-stack,
  .lf-story-grid,
  .lf-read-also__grid,
  .lf-home-widgets,
  .lf-home-news__rail {
    grid-template-columns: 1fr;
  }

  .lf-story-stack__item,
  .lf-story-stack__link,
  .lf-atlas-item,
  .lf-related-sidebar__item,
  .lf-opinion-card,
  .lf-author-card {
    grid-template-columns: 1fr;
  }

  .lf-story-stack__thumb,
  .lf-atlas-item__image,
  .lf-related-sidebar__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .lf-home-news__grid,
  .lf-home-top__grid {
    gap: 18px;
  }

  .lf-live-ticker__inner {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 7px 0;
  }

  .lf-live-ticker__badge {
    flex: none;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .lf-live-ticker__item {
    gap: 8px;
    padding-right: 28px;
    font-size: 0.88rem;
  }

  .lf-article-header h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .lf-author-meta {
    display: grid;
    gap: 14px;
  }

  .lf-author-meta__identity,
  .lf-author-meta__info {
    align-items: start;
  }

  .lf-article-trust-strip {
    gap: 6px;
  }

  .lf-article-trust-strip span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .lf-mobile-trust-pack {
    display: grid;
    gap: 14px;
    margin: 16px 0 22px;
    padding: 16px;
    border: 1px solid rgba(14, 74, 60, 0.16);
    border-radius: var(--lf-radius-md);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 232, 0.96)),
      radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.12), transparent 32%);
  }

  .lf-mobile-trust-pack__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(220, 207, 184, 0.78);
  }

  .lf-mobile-trust-pack__header span {
    color: var(--lf-burnt);
    font-size: var(--lf-meta-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .lf-mobile-trust-pack__header strong {
    color: var(--lf-forest);
    font-size: var(--lf-meta-xs);
  }

  .lf-mobile-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .lf-mobile-stat-row article {
    padding: 10px;
    border: 1px solid rgba(220, 207, 184, 0.76);
    border-radius: var(--lf-radius-sm);
    background: rgba(255, 255, 255, 0.62);
  }

  .lf-mobile-stat-row strong {
    display: block;
    color: var(--lf-burnt);
    font-family: var(--lf-font-display);
    font-size: 1.35rem;
    line-height: 1;
  }

  .lf-mobile-stat-row span,
  .lf-mobile-stat-row p {
    color: var(--lf-muted);
    font-size: 0.72rem;
  }

  .lf-mobile-stat-row p {
    margin: 4px 0 0;
    line-height: 1.3;
  }

  .lf-mobile-stat-row .lf-confidence-badge {
    margin-top: 8px;
    font-size: 9px;
  }

  .lf-mobile-stat-row .lf-source-pills {
    margin-top: 6px;
    gap: 4px;
  }

  .lf-mobile-stat-row .lf-source-pill {
    font-size: 9px;
  }

  .lf-article-sidebar .lf-widget--key-points,
  .lf-article-sidebar .lf-widget--stats {
    display: none;
  }

  .lf-source-references--cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .lf-utility-bar__inner {
    gap: 5px;
    padding: 6px 0;
  }

  .lf-utility-bar__date {
    line-height: 1.2;
  }

  .lf-utility-bar__actions {
    gap: 8px 10px;
  }

  .lf-utility-link .lf-svg-icon,
  .lf-utility-pill .lf-svg-icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .lf-brand-band__inner {
    padding: 12px 0 10px;
  }

  .lf-main-nav__quick {
    gap: 14px;
  }

  .lf-main-nav__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 8px;
  }

  .lf-main-nav__quick-link {
    min-height: 34px;
    font-size: 0.98rem;
  }

  .lf-nav-toggle {
    justify-self: start;
    padding: 7px 9px;
    font-size: 0.92rem;
  }

  .lf-main-nav__cta {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.88rem;
  }

  .lf-main-nav__list {
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
  }

  .lf-main-nav__link {
    min-height: 34px;
  }

  .lf-card__image--hero {
    aspect-ratio: 1 / 1.42;
  }

  .lf-story-stack__item {
    padding: 0 0 18px;
  }

  .lf-story-stack__body h2,
  .lf-story-stack__headline {
    font-size: 1.78rem;
    line-height: 1.04;
  }

  .lf-story-card h2 {
    font-size: 1.7rem;
    line-height: 1.04;
  }

  .lf-section-heading__label,
  .lf-article-section h2 {
    font-size: 1.5rem;
  }

  .lf-breadcrumbs {
    padding-top: 14px;
  }

  .lf-article-layout {
    padding-top: 12px;
  }

  .lf-article-header__deck {
    max-width: none;
    font-size: 1.08rem;
  }

  .lf-article-hero {
    margin: 14px 0 12px;
  }

  .lf-article-section {
    margin-bottom: 22px;
  }

  .lf-article-section p {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .lf-dropcap::first-letter {
    font-size: 3.25rem;
  }

  .lf-pull-quote {
    margin: 20px 0;
    padding: 18px;
  }

  .lf-pull-quote p {
    font-size: 1.25rem;
  }

  .lf-data-grid,
  .lf-mini-stats,
  .lf-share-rail,
  .lf-article-sidebar {
    grid-template-columns: 1fr;
  }

  .lf-mobile-stat-row {
    grid-template-columns: 1fr;
  }

  .lf-share-rail {
    gap: 12px;
  }

  .lf-share-card {
    padding: 14px;
  }

  .lf-share-rail__icons {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    margin-bottom: 12px;
  }

  .lf-side-card__tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-side-card--summary {
    display: none;
  }

  .lf-source-box,
  .lf-tag-box,
  .lf-author-card {
    padding: 16px;
  }

  .lf-source-box__meta {
    gap: 6px;
  }

  .lf-method-notes {
    padding: 12px;
  }

  .lf-section-heading {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .lf-section-heading__meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .lf-section-heading__label {
    overflow-wrap: anywhere;
  }

  .lf-home-news,
  .lf-home-briefs,
  .lf-opinion-strip,
  .lf-radar,
  .lf-article-end {
    padding-top: 20px;
  }

  .lf-widget,
  .lf-signature-card {
    padding: 16px;
  }

  .lf-footer-primary__grid {
    gap: 18px;
    padding: 24px 0 18px;
  }

  .lf-footer-brand__lockup {
    gap: 10px;
    margin-bottom: 10px;
  }

  .lf-footer-brand__symbol {
    width: 34px;
    height: 34px;
  }

  .lf-footer-brand__lockup img:last-child {
    width: 148px;
  }

  .lf-footer-brand p {
    max-width: none;
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .lf-footer-socials {
    gap: 8px;
  }

  .lf-footer-socials a {
    width: 30px;
    height: 30px;
  }

  .lf-footer-column h3,
  .lf-footer-newsletter h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
  }

  .lf-footer-column ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 14px;
  }

  .lf-footer-column a,
  .lf-footer-newsletter p {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .lf-footer-legal__inner {
    gap: 10px;
    padding: 12px 0 14px;
  }

  .lf-share-rail {
    grid-template-columns: 1fr;
  }

  .lf-share-rail__icons {
    grid-template-columns: repeat(5, auto);
  }

  .lf-footer-legal__inner,
  .lf-inline-form {
    grid-template-columns: 1fr;
    display: grid;
  }
}

/* Non-news templates */
.lf-newsletter-product-hero {
  margin-top: 34px;
  border-block: 1px solid rgba(197, 154, 90, 0.48);
  background:
    linear-gradient(135deg, rgba(10, 58, 47, 0.96), rgba(14, 74, 60, 0.9)),
    radial-gradient(circle at 84% 18%, rgba(197, 154, 90, 0.28), transparent 32%);
  color: var(--lf-white);
}

.lf-newsletter-product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 430px;
  padding: 54px 0;
}

.lf-newsletter-product-hero__copy {
  max-width: 760px;
}

.lf-newsletter-product-hero .lf-non-news-hero__eyebrow {
  color: var(--lf-gold);
}

.lf-newsletter-product-hero h1 {
  margin: 10px 0 18px;
  font-family: var(--lf-font-display);
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  color: var(--lf-white);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.lf-newsletter-product-hero p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.lf-newsletter-product-hero__signup {
  max-width: 620px;
  margin-top: 26px;
}

.lf-hero-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.lf-hero-form input {
  min-height: 54px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lf-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lf-hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.lf-hero-form button {
  min-height: 54px;
  border-radius: 999px;
  background: var(--lf-gold);
  color: var(--lf-evergreen);
  padding-inline: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.lf-hero-form button:hover,
.lf-hero-form button:focus-visible {
  background: var(--lf-gold-deep);
  color: var(--lf-evergreen);
}

.lf-hero-form .lf-widget__note,
.lf-hero-form .lf-newsletter-form__status {
  color: rgba(255, 255, 255, 0.72);
}

.lf-newsletter-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lf-newsletter-product-hero .lf-ghost-button {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lf-white);
}

.lf-newsletter-preview-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(197, 154, 90, 0.52);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(247, 242, 232, 0.92)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 18px top 16px / 90px no-repeat;
  color: var(--lf-ink);
  box-shadow: 0 24px 50px rgba(4, 21, 17, 0.24);
}

.lf-newsletter-preview-card__date {
  color: var(--lf-burnt);
  font-size: var(--lf-meta-xs);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lf-newsletter-preview-card h2 {
  max-width: 11ch;
  margin: 10px 0 18px;
  font-family: var(--lf-font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lf-newsletter-preview-card ol {
  counter-reset: lf-briefing;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lf-newsletter-preview-card li {
  counter-increment: lf-briefing;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(220, 207, 184, 0.86);
}

.lf-newsletter-preview-card li::before {
  content: "0" counter(lf-briefing);
  color: var(--lf-burnt);
  font-family: var(--lf-font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.lf-newsletter-preview-card strong {
  display: block;
  color: var(--lf-evergreen);
  line-height: 1.15;
}

.lf-newsletter-preview-card span:not(.lf-newsletter-preview-card__date) {
  display: block;
  grid-column: 2;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
  line-height: 1.35;
}

.lf-non-news-hero {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-lg);
  background: linear-gradient(145deg, var(--lf-parchment), var(--lf-sand));
}

.lf-non-news-hero__eyebrow {
  display: inline-block;
  font-size: var(--lf-meta-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lf-forest);
  margin-bottom: 10px;
}

.lf-non-news-hero h1 {
  margin: 0 0 12px;
  font-family: var(--lf-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.lf-non-news-hero p {
  margin: 0;
  max-width: 76ch;
  color: var(--lf-muted);
  font-size: var(--lf-body-lg);
}

.lf-non-news-highlights,
.lf-discovery-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lf-non-news-highlights article,
.lf-discovery-status-strip article {
  padding: 16px 18px;
  border: 1px solid rgba(220, 207, 184, 0.92);
  border-radius: var(--lf-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(251, 247, 239, 0.96));
  box-shadow: 0 8px 18px rgba(19, 35, 29, 0.045);
}

.lf-non-news-highlights span,
.lf-discovery-status-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--lf-burnt);
  font-size: var(--lf-meta-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lf-non-news-highlights strong,
.lf-discovery-status-strip strong {
  display: block;
  color: var(--lf-deep-evergreen);
  font-family: var(--lf-font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.lf-non-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(240px, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.lf-non-news-content,
.lf-non-news-sidebar {
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius-md);
  background: var(--lf-white);
}

.lf-non-news-content { padding: 28px; }
.lf-non-news-sidebar { padding: 20px; height: fit-content; }

.lf-non-news-section + .lf-non-news-section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(197, 154, 90, 0.42);
}

.lf-non-news-section h2,
.lf-rich-content h2,
.lf-rich-content h3 {
  font-family: var(--lf-font-display);
}

.lf-non-news-section__list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--lf-muted);
}

.lf-non-news-status {
  border-left: 4px solid rgba(14, 74, 60, 0.78);
}

.lf-reference-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.lf-reference-list a:hover { color: var(--lf-evergreen); }

.lf-404-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

@media (max-width: 980px) {
  .lf-non-news-layout {
    grid-template-columns: 1fr;
  }
}

.lf-gold-button { display:inline-flex; align-items:center; justify-content:center; padding:11px 16px; border-radius:999px; background: var(--lf-warm-gold); color: var(--lf-white); font-weight:600; }
.lf-gold-button:hover { background: var(--lf-gold); }

/* Media provenance */
.lf-media-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.lf-media-caption__type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 5px;
  border: 1px solid rgba(197, 154, 90, 0.38);
  border-radius: 999px;
  color: var(--lf-gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.lf-media-caption__text,
.lf-media-caption__credit,
.lf-media-caption__source {
  min-width: 0;
}

.lf-media-caption__credit {
  color: inherit;
  font-weight: 700;
}

.lf-media-caption__source {
  color: var(--lf-gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lf-media-caption[data-source-type="brand_fallback"] .lf-media-caption__type,
.lf-media-caption[data-source-type="ai_generated"] .lf-media-caption__type {
  border-color: rgba(197, 106, 61, 0.42);
  color: var(--lf-burnt);
}

.lf-media-caption--article {
  display: flex;
  margin-top: 0;
  color: var(--lf-muted);
  font-size: var(--lf-meta-xs);
  line-height: 1.45;
}

/* Launch-readiness polish */
.lf-screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lf-brand-band__inner {
  min-height: 176px;
}

.lf-wordmark img {
  width: min(100%, 1120px);
  max-height: 156px;
  filter: drop-shadow(0 10px 24px rgba(10, 58, 47, 0.05));
}

.lf-main-nav__link,
.lf-main-nav__quick-link,
.lf-footer-column a,
.lf-chip,
.lf-source-pill,
.lf-ghost-button,
.lf-gold-button {
  outline-offset: 4px;
}

.lf-home-top__grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.72fr) minmax(300px, 0.52fr);
}

@media (min-width: 1261px) and (max-width: 1480px) {
  .lf-home-top__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  }

  .lf-home-widgets {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lf-story-stack__body h2 {
    font-size: 1.36rem;
  }
}

.lf-hero-card {
  border-color: rgba(197, 154, 90, 0.72);
  box-shadow: 0 18px 36px rgba(10, 58, 47, 0.1);
}

.lf-hero-card .lf-card__image--hero {
  min-height: 520px;
}

.lf-story-stack__item {
  border-color: rgba(220, 207, 184, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(251, 247, 239, 0.76)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.08), transparent 30%);
}

.lf-story-stack__item:hover,
.lf-story-card:hover,
.lf-related-sidebar__item:hover {
  border-color: rgba(197, 154, 90, 0.74);
}

.lf-signature-card--signal,
.lf-signature-card--coverage,
.lf-widget--trust,
.lf-source-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(251, 247, 239, 0.96)),
    radial-gradient(circle at 100% 0, rgba(14, 74, 60, 0.09), transparent 34%),
    radial-gradient(circle at 0 100%, rgba(197, 154, 90, 0.11), transparent 40%);
}

.lf-signature-card--signal,
.lf-signature-card--coverage {
  border-top: 4px solid rgba(14, 74, 60, 0.82);
}

.lf-signature-card--retenir,
.lf-signature-card--atlas {
  border-top: 4px solid rgba(197, 106, 61, 0.78);
}

.lf-signal-grid {
  gap: 12px;
}

.lf-signal-item {
  position: relative;
  padding: 16px 14px 18px;
  border: 1px solid rgba(220, 207, 184, 0.74);
  border-top: 3px solid rgba(197, 154, 90, 0.64);
  border-radius: var(--lf-radius-sm);
}

.lf-source-pills {
  padding-top: 8px;
  border-top: 1px dashed rgba(197, 154, 90, 0.42);
}

.lf-source-pill {
  border-color: rgba(14, 74, 60, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.lf-source-pill__angle {
  max-width: 42ch;
}

.lf-coverage-item {
  padding: 16px 0;
}

.lf-coverage-item__label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--lf-gold);
}

.lf-widget--newsletter {
  border-color: rgba(197, 154, 90, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44), var(--lf-shadow-widget);
}

.lf-widget--newsletter .lf-stack-form button,
.lf-widget--newsletter .lf-inline-form button {
  background: linear-gradient(135deg, var(--lf-evergreen), var(--lf-deep-evergreen));
}

.lf-widget--dark {
  box-shadow: 0 16px 28px rgba(10, 58, 47, 0.14);
}

.lf-opinion-card {
  align-items: center;
  min-height: 132px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(251, 247, 239, 0.94)),
    radial-gradient(circle at 0 0, rgba(197, 154, 90, 0.1), transparent 34%);
}

.lf-radar {
  padding-bottom: 28px;
}

.lf-radar .lf-chip-cloud {
  padding: 20px;
  border: 1px solid rgba(220, 207, 184, 0.84);
  border-radius: var(--lf-radius-lg);
  background: rgba(255, 255, 255, 0.42);
}

.lf-article-layout {
  grid-template-columns: 136px minmax(0, 820px) minmax(300px, 340px);
  justify-content: center;
}

.lf-share-rail,
.lf-article-sidebar {
  position: sticky;
  top: 18px;
}

.lf-article-main {
  min-width: 0;
}

.lf-article-header {
  padding-top: 4px;
}

.lf-article-header h1 {
  max-width: 13.5ch;
}

.lf-article-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lf-article-hero figcaption {
  padding: 10px 14px 0;
  text-align: left;
  border-left: 2px solid rgba(197, 154, 90, 0.68);
}

.lf-source-box {
  border-top-width: 0;
  border-left: 5px solid rgba(14, 74, 60, 0.82);
  box-shadow: 0 12px 26px rgba(10, 58, 47, 0.08);
}

.lf-source-box__header h2 {
  color: var(--lf-evergreen);
  font-size: 1.65rem;
}

.lf-source-references--cards li {
  border-top: 3px solid rgba(197, 154, 90, 0.48);
}

.lf-method-notes {
  border-color: rgba(14, 74, 60, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 242, 232, 0.9));
}

.lf-archive-hero {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid rgba(220, 207, 184, 0.9);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(247, 242, 232, 0.94)),
    radial-gradient(circle at 84% 20%, rgba(197, 154, 90, 0.16), transparent 34%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 28px bottom 20px / 150px no-repeat;
}

.lf-archive-hero h1 {
  max-width: 13ch;
  margin: 12px 0 14px;
  font-family: var(--lf-font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lf-archive-hero p {
  max-width: 58ch;
  color: var(--lf-muted);
  font-size: var(--lf-body-lg);
}

.lf-archive-hero__actions,
.lf-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lf-atlas-morning-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(197, 154, 90, 0.62);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(14, 74, 60, 0.96), rgba(10, 58, 47, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(197, 154, 90, 0.24), transparent 34%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 22px center / 96px no-repeat;
  color: var(--lf-parchment);
  box-shadow: 0 16px 34px rgba(10, 58, 47, 0.16);
}

.lf-atlas-morning-cta .lf-kicker {
  color: var(--lf-gold);
}

.lf-atlas-morning-cta h2 {
  margin: 8px 0 6px;
  color: var(--lf-parchment);
  font-family: var(--lf-font-display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.lf-atlas-morning-cta p {
  max-width: 62ch;
  margin: 0;
  color: rgba(251, 247, 239, 0.78);
}

.lf-atlas-morning-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lf-atlas-morning-cta__signup {
  width: 100%;
  justify-self: end;
}

.lf-atlas-morning-cta .lf-stack-form input {
  border-color: rgba(251, 247, 239, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: var(--lf-white);
}

.lf-atlas-morning-cta .lf-stack-form input::placeholder {
  color: rgba(251, 247, 239, 0.76);
}

.lf-atlas-morning-cta .lf-stack-form button,
.lf-atlas-morning-cta .lf-gold-button {
  background: var(--lf-gold);
  color: var(--lf-deep-evergreen);
  font-weight: 800;
}

.lf-atlas-morning-cta .lf-stack-form button:hover,
.lf-atlas-morning-cta .lf-stack-form button:focus-visible {
  background: var(--lf-warm-gold);
  color: var(--lf-deep-evergreen);
}

.lf-atlas-morning-cta .lf-widget__note,
.lf-atlas-morning-cta .lf-newsletter-form__status {
  color: rgba(251, 247, 239, 0.74);
}

.lf-atlas-morning-cta .lf-ghost-button {
  border-color: rgba(251, 247, 239, 0.32);
  color: var(--lf-parchment);
}

.lf-atlas-morning-cta .lf-ghost-button:hover {
  border-color: rgba(197, 154, 90, 0.78);
  color: var(--lf-white);
}

.lf-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--lf-gutter);
  align-items: start;
  padding-top: 28px;
}

.lf-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lf-gutter);
}

.lf-archive-main {
  min-width: 0;
}

.lf-archive-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 18px;
}

.lf-archive-intro {
  max-width: 72ch;
  margin: 0 0 20px;
  color: var(--lf-muted);
  font-size: var(--lf-body-lg);
}

.lf-discovery-intel-grid,
.lf-discovery-opinion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lf-gutter);
}

.lf-discovery-intel-card,
.lf-discovery-angle-card,
.lf-discovery-radar-panel,
.lf-empty-state {
  border: 1px solid rgba(220, 207, 184, 0.92);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 247, 239, 0.96));
  box-shadow: var(--lf-shadow-widget);
}

.lf-discovery-intel-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-top: 4px solid rgba(14, 74, 60, 0.76);
}

.lf-discovery-intel-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 154, 90, 0.5);
  border-radius: 999px;
  color: var(--lf-evergreen);
  background: rgba(247, 242, 232, 0.82);
}

.lf-discovery-intel-card h2,
.lf-discovery-angle-card h2,
.lf-empty-state h2 {
  margin: 0;
  color: var(--lf-deep-evergreen);
  font-family: var(--lf-font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lf-discovery-intel-card p,
.lf-discovery-angle-card p,
.lf-empty-state p {
  margin: 0;
  color: var(--lf-muted);
}

.lf-discovery-angle-list {
  display: grid;
  gap: 14px;
}

.lf-discovery-angle-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-left: 4px solid rgba(197, 154, 90, 0.7);
}

.lf-discovery-radar-panel {
  padding: 24px;
  margin-bottom: 28px;
}

.lf-empty-state {
  padding: 28px;
}

.lf-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lf-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.lf-search-form input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 207, 184, 0.95);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.86);
}

.lf-search-form button {
  border: none;
  border-radius: var(--lf-radius-sm);
  background: var(--lf-evergreen);
  color: var(--lf-white);
  padding: 0 18px;
  font-weight: 700;
}

.lf-404-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--lf-gutter);
  align-items: start;
  margin-top: 24px;
}

.lf-404-panel .lf-404-actions {
  margin-top: 0;
  padding: 20px;
  border: 1px solid rgba(220, 207, 184, 0.84);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.lf-non-news-newsletter-box {
  scroll-margin-top: 96px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(197, 154, 90, 0.52);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 242, 232, 0.96)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.14), transparent 36%);
}

.lf-non-news-newsletter-box h2 {
  margin-top: 0;
  color: var(--lf-evergreen);
  font-family: var(--lf-font-display);
  font-size: 2rem;
  line-height: 1;
}

.lf-rich-content p:first-child {
  margin-top: 0;
  color: var(--lf-forest);
  font-size: var(--lf-body-lg);
}

@media (max-width: 1260px) {
  .lf-brand-band__inner {
    min-height: 142px;
  }

  .lf-article-layout {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .lf-archive-layout,
  .lf-newsletter-product-hero__inner,
  .lf-404-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-archive-sidebar,
  .lf-share-rail,
  .lf-article-sidebar {
    position: static;
  }

  .lf-atlas-morning-cta {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    background-position: right 18px bottom 18px;
  }

  .lf-atlas-morning-cta__actions {
    justify-content: flex-start;
  }

  .lf-atlas-morning-cta__signup {
    justify-self: stretch;
  }
}

@media (max-width: 1024px) {
  .lf-archive-grid,
  .lf-discovery-intel-grid,
  .lf-discovery-opinion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-nav-toggle[aria-expanded="true"]::after {
    content: "–";
  }
}

@media (max-width: 768px) {
  .lf-brand-band__inner {
    min-height: 122px;
  }

  .lf-home-mobile-ticker {
    margin-top: 8px;
  }

  .lf-hero-card .lf-card__image--hero {
    min-height: auto;
  }

  .lf-card__media .lf-media-caption {
    position: static;
    max-width: none;
    border-radius: 0;
    background: rgba(10, 58, 47, 0.08);
    color: var(--lf-muted);
    opacity: 1;
    transform: none;
  }

  .lf-signal-item {
    border-right: 1px solid rgba(220, 207, 184, 0.74);
  }

  .lf-source-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lf-opinion-card {
    min-height: auto;
  }

  .lf-article-hero figcaption {
    padding-inline: 10px;
  }

  .lf-archive-hero {
    margin-top: 20px;
    padding: 24px 18px;
    background-size: 96px;
  }

  .lf-atlas-morning-cta {
    margin-top: 12px;
    padding: 18px;
    background-size: 74px;
  }

  .lf-atlas-morning-cta__actions {
    display: grid;
  }

  .lf-atlas-morning-cta__signup {
    justify-self: stretch;
  }

  .lf-archive-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .lf-archive-grid,
  .lf-discovery-intel-grid,
  .lf-discovery-opinion-grid,
  .lf-non-news-highlights,
  .lf-discovery-status-strip,
  .lf-search-form {
    grid-template-columns: 1fr;
  }

  .lf-discovery-angle-card {
    grid-template-columns: 1fr;
  }

  .lf-search-form button {
    min-height: 46px;
  }

  .lf-empty-state__actions {
    display: grid;
  }

  .lf-newsletter-product-hero {
    margin-top: 18px;
  }

  .lf-newsletter-product-hero__inner {
    min-height: auto;
    padding: 28px 0;
  }

  .lf-newsletter-product-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 11vw, 3.7rem);
    line-height: 0.94;
  }

  .lf-newsletter-product-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .lf-newsletter-product-hero__signup {
    margin-top: 18px;
  }

  .lf-hero-form {
    grid-template-columns: 1fr;
  }

  .lf-hero-form button {
    width: 100%;
  }

  .lf-newsletter-product-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lf-newsletter-product-hero__actions a {
    width: 100%;
  }

  .lf-newsletter-preview-card {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .lf-article-header h1 {
    font-size: clamp(1.95rem, 9.2vw, 2.65rem);
  }

  .lf-brand-band__mobile-tagline {
    font-size: 0.82rem;
  }

  .lf-live-ticker__badge {
    max-width: max-content;
  }

  .lf-newsletter-form.lf-inline-form {
    grid-template-columns: 1fr;
  }

  .lf-signature-card--signal,
  .lf-signature-card--retenir,
  .lf-signature-card--atlas,
  .lf-signature-card--coverage {
    border-top-width: 3px;
  }

  .lf-source-box::before {
    display: none;
  }

  .lf-source-box {
    border-left-width: 4px;
  }

  .lf-archive-hero p {
    font-size: 1rem;
  }

  .lf-404-panel .lf-404-actions {
    display: grid;
  }
}

/* MVP editorial polish */
.lf-live-ticker__control {
  pointer-events: none;
}

.lf-article-trust-strip {
  margin-top: 4px;
  padding: 8px;
  border: 1px solid rgba(14, 74, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.lf-article-trust-strip span {
  background: rgba(247, 242, 232, 0.88);
}

.lf-signature-card--signal {
  overflow: hidden;
}

.lf-signature-card--signal .lf-module-summary,
.lf-signature-card--coverage .lf-module-summary {
  max-width: 70ch;
  padding-left: 14px;
  border-left: 3px solid rgba(197, 154, 90, 0.64);
}

.lf-signal-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 239, 0.94)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.1), transparent 34%);
}

.lf-signal-item:nth-child(1) {
  border-top-color: rgba(14, 94, 80, 0.78);
}

.lf-signal-item:nth-child(2) {
  border-top-color: rgba(197, 106, 61, 0.78);
}

.lf-signal-item:nth-child(3) {
  border-top-color: rgba(197, 154, 90, 0.88);
}

.lf-coverage-item {
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-coverage-item:first-child {
  border-top: 0;
}

.lf-coverage-item__label {
  color: var(--lf-burnt);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lf-source-box {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.lf-briefs-grid {
  align-items: start;
}

.lf-source-box > p {
  max-width: 72ch;
  margin: 0;
  color: var(--lf-forest);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.lf-source-box__reader-note {
  display: grid;
  gap: 4px;
  max-width: 76ch;
  padding: 12px 14px;
  border: 1px solid rgba(14, 74, 60, 0.14);
  border-left: 4px solid rgba(197, 154, 90, 0.76);
  border-radius: var(--lf-radius-sm);
  background: rgba(247, 242, 232, 0.72);
}

.lf-source-box__reader-note strong {
  color: var(--lf-evergreen);
  font-size: var(--lf-meta-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-source-box__reader-note span {
  color: var(--lf-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lf-source-references--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-source-references--cards li {
  display: grid;
  gap: 7px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(220, 207, 184, 0.9);
  border-top: 3px solid rgba(197, 154, 90, 0.56);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.lf-source-references--cards a {
  color: var(--lf-evergreen);
  font-weight: 800;
}

.lf-method-list {
  margin-top: 2px;
}

.lf-method-list li::marker {
  color: var(--lf-burnt);
  font-weight: 900;
}

.lf-media-caption--article {
  justify-content: center;
}

.lf-card__media .lf-media-caption {
  max-height: 72px;
  overflow: hidden;
}

/* Launch-feel visual and UX polish */
.lf-reading-progress {
  --lf-reading-progress: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--lf-reading-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--lf-gold), var(--lf-burnt), var(--lf-evergreen));
  box-shadow: 0 1px 8px rgba(10, 58, 47, 0.18);
  pointer-events: none;
}

.lf-brand-band__inner {
  min-height: 138px;
  padding-block: 14px 12px;
}

.lf-wordmark img {
  max-height: 126px;
}

.lf-brand-band__skyline {
  width: 210px;
  opacity: 0.58;
}

.lf-main-nav {
  position: sticky;
  top: 0;
  z-index: 90;
}

.lf-main-nav__link,
.lf-main-nav__quick-link {
  position: relative;
}

.lf-main-nav__link::after,
.lf-main-nav__quick-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--lf-gold);
  transition: transform 180ms ease;
}

.lf-main-nav__link--gold::after {
  display: none;
}

.lf-main-nav__link:hover::after,
.lf-main-nav__link.is-active::after,
.lf-main-nav__quick-link:hover::after,
.lf-main-nav__quick-link.is-active::after {
  transform: scaleX(1);
}

.lf-live-ticker {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.92), rgba(247, 242, 232, 0.88)),
    linear-gradient(180deg, rgba(197, 154, 90, 0.09), transparent);
}

.lf-live-ticker__inner {
  min-height: 44px;
}

.lf-live-ticker__badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
}

body.has-motion .lf-live-ticker__badge {
  animation: lf-live-breath 3.2s ease-in-out infinite;
}

.lf-hero-card {
  isolation: isolate;
}

.lf-hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--lf-radius-md) - 2px);
  pointer-events: none;
}

.lf-hero-card .lf-card__image--hero {
  filter: saturate(0.92) contrast(1.04);
  object-position: center;
}

.lf-hero-card__overlay {
  background:
    linear-gradient(90deg, rgba(10, 58, 47, 0.72) 0%, rgba(10, 58, 47, 0.18) 48%, rgba(10, 58, 47, 0.06) 100%),
    linear-gradient(0deg, rgba(10, 58, 47, 0.96) 0%, rgba(10, 58, 47, 0.36) 46%, rgba(10, 58, 47, 0.08) 100%);
}

.lf-hero-card__content {
  z-index: 2;
  max-width: min(86%, 760px);
  padding-top: 14px;
  border-top: 1px solid rgba(197, 154, 90, 0.42);
  text-shadow: 0 2px 16px rgba(4, 21, 17, 0.54);
}

.lf-hero-card__content h1 {
  max-width: 13em;
  color: var(--lf-white);
  font-size: clamp(2.45rem, 3.8vw, 3.75rem);
  line-height: 0.96;
}

.lf-hero-card__content p {
  color: rgba(255, 255, 255, 0.93);
}

.lf-signature-card {
  position: relative;
}

.lf-signature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--lf-gold), rgba(197, 154, 90, 0));
  opacity: 0.7;
}

.lf-signature-card .lf-section-heading__icon,
.lf-widget--trust .lf-widget__icon,
.lf-source-box__mark,
.lf-read-also .lf-section-heading__icon {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.lf-signature-card:hover .lf-section-heading__icon,
.lf-widget--trust:hover .lf-widget__icon,
.lf-source-box:hover .lf-source-box__mark,
.lf-read-also:hover .lf-section-heading__icon {
  transform: translateY(-1px);
}

body.has-motion .lf-section-heading__icon--signal svg circle:nth-of-type(3),
body.has-motion .lf-signal-cta__icon .lf-svg-icon svg circle:nth-of-type(3) {
  animation: lf-signal-ring 2.9s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

body.has-motion .lf-section-heading__icon--radar svg {
  animation: lf-radar-sweep 5.5s ease-in-out infinite;
  transform-origin: 50% 50%;
}

body.has-motion .js-reveal.is-visible .lf-source-box__mark::after,
body.has-motion .lf-source-box:hover .lf-source-box__mark::after {
  animation: lf-source-ring 620ms ease both;
}

.lf-signature-card--signal {
  background:
    linear-gradient(135deg, rgba(14, 74, 60, 0.98), rgba(10, 58, 47, 0.92)),
    radial-gradient(circle at 92% 8%, rgba(197, 154, 90, 0.22), transparent 34%);
  color: rgba(255, 255, 255, 0.9);
}

.lf-signature-card--signal .lf-section-heading__label,
.lf-signature-card--signal .lf-module-summary,
.lf-signature-card--signal .lf-section-heading a {
  color: rgba(255, 255, 255, 0.86);
}

.lf-signature-card--signal .lf-section-heading__label {
  color: var(--lf-white);
}

.lf-signature-card--signal .lf-section-heading__icon {
  color: var(--lf-gold);
}

.lf-signature-card--signal .lf-signal-item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.lf-signature-card--signal .lf-signal-item__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(197, 154, 90, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--lf-gold);
}

.lf-signature-card--signal .lf-signal-item h2 {
  color: var(--lf-white);
}

.lf-signature-card--signal .lf-signal-item p,
.lf-signature-card--signal .lf-source-pill__angle {
  color: rgba(255, 255, 255, 0.72);
}

.lf-signature-card--signal .lf-source-pill {
  border-color: rgba(197, 154, 90, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lf-white);
}

.lf-signature-card--coverage .lf-coverage-list {
  counter-reset: coverage-angle;
}

.lf-signature-card--coverage .lf-coverage-item {
  counter-increment: coverage-angle;
  position: relative;
  padding-left: 12px;
}

.lf-signature-card--coverage .lf-coverage-item::after {
  content: "0" counter(coverage-angle);
  position: absolute;
  right: 0;
  top: 12px;
  color: rgba(197, 154, 90, 0.24);
  font-family: var(--lf-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.lf-opinion-strip {
  padding-block: 30px;
  border-block: 1px solid rgba(197, 154, 90, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 0, rgba(197, 106, 61, 0.08), transparent 30%);
}

.lf-opinion-card {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.lf-radar .lf-chip-cloud {
  gap: 12px;
}

.lf-radar .lf-chip {
  padding: 9px 14px;
  border-color: rgba(197, 154, 90, 0.48);
  background: rgba(255, 255, 255, 0.7);
}

.lf-radar .lf-chip:hover {
  background: var(--lf-evergreen);
  color: var(--lf-white);
}

.lf-discovery-status-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.lf-discovery-status-strip article {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(220, 207, 184, 0.72);
  border-radius: var(--lf-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(251, 247, 239, 0.9)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.1), transparent 38%);
  box-shadow: 0 8px 18px rgba(10, 58, 47, 0.04);
}

.lf-discovery-status-strip strong {
  font-family: var(--lf-font-body);
  color: var(--lf-evergreen);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0;
}

.lf-discovery-status-strip span {
  color: var(--lf-burnt);
}

.lf-empty-state {
  position: relative;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(251, 247, 239, 0.96)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 18px bottom 14px / 110px no-repeat;
}

.lf-search-page .lf-archive-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(247, 242, 232, 0.96)),
    radial-gradient(circle at 78% 16%, rgba(14, 74, 60, 0.12), transparent 34%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 28px bottom 20px / 130px no-repeat;
}

.lf-search-form {
  padding: 6px;
  border: 1px solid rgba(220, 207, 184, 0.72);
  border-radius: calc(var(--lf-radius-sm) + 4px);
  background: rgba(255, 255, 255, 0.54);
}

.lf-search-form input {
  border-color: rgba(14, 74, 60, 0.14);
}

.lf-search-form button {
  background:
    linear-gradient(180deg, var(--lf-evergreen), var(--lf-deep-evergreen));
}

.lf-search-form button:hover,
.lf-search-form button:focus-visible {
  background:
    linear-gradient(180deg, var(--lf-deep-evergreen), #052d26);
}

.lf-non-news-status {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(251, 247, 239, 0.96)),
    radial-gradient(circle at 100% 0, rgba(14, 74, 60, 0.1), transparent 34%);
}

.lf-non-news-status .lf-reference-list li::marker {
  color: var(--lf-burnt);
}

.lf-article-header {
  position: relative;
}

.lf-article-header::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 10px;
  width: 4px;
  height: min(220px, 72%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lf-gold), rgba(197, 154, 90, 0));
}

.lf-article-header__deck {
  background: linear-gradient(90deg, rgba(197, 154, 90, 0.1), transparent);
}

.lf-author-meta {
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(220, 207, 184, 0.76);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.lf-meta-chip__label {
  color: var(--lf-burnt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-article-trust-strip {
  margin-top: 12px;
}

.lf-mobile-trust-pack {
  box-shadow: 0 10px 24px rgba(10, 58, 47, 0.06);
}

.lf-source-box {
  box-shadow: 0 18px 34px rgba(10, 58, 47, 0.1);
}

@media (min-width: 1025px) {
  .lf-brand-band__inner {
    min-height: 134px;
  }

  .lf-home-top {
    padding-top: 22px;
  }

  .lf-home-signals,
  .lf-home-news,
  .lf-home-briefs,
  .lf-opinion-strip,
  .lf-radar,
  .lf-article-end {
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .lf-reading-progress {
    height: 2px;
  }

  .lf-main-nav {
    position: relative;
  }

  .lf-brand-band__inner {
    min-height: 112px;
  }

  .lf-wordmark img {
    max-height: 132px;
  }

  .lf-hero-card::after {
    inset: 8px;
  }

  .lf-card__image--hero {
    aspect-ratio: 1 / 1.38;
  }

  .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(10, 58, 47, 0.2) 0%, rgba(10, 58, 47, 0.42) 42%, rgba(10, 58, 47, 0.98) 100%),
      linear-gradient(90deg, rgba(10, 58, 47, 0.42), rgba(10, 58, 47, 0.04));
  }

  .lf-hero-card__content {
    padding-top: 10px;
  }

  .lf-hero-card__content h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 7.7vw, 2.45rem);
    line-height: 0.98;
    text-shadow: 0 2px 14px rgba(4, 21, 17, 0.72);
  }

  .lf-signature-card--signal .lf-signal-grid {
    gap: 10px;
  }

  .lf-signature-card--coverage .lf-coverage-item::after {
    top: 16px;
    font-size: 2rem;
  }

  .lf-discovery-status-strip {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lf-discovery-status-strip article {
    border-radius: var(--lf-radius-sm);
  }

  .lf-article-header::before {
    left: -10px;
    top: 6px;
    width: 3px;
  }

  .lf-author-meta {
    padding: 10px 12px;
  }

  .lf-author-meta__info {
    gap: 10px;
  }

  .lf-meta-chip {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .lf-meta-chip__label {
    width: 100%;
    margin-left: 1.45rem;
  }

  .lf-article-trust-strip {
    border-radius: var(--lf-radius-md);
  }

  .lf-source-box__reader-note {
    padding: 11px 12px;
  }

  .lf-source-references--cards {
    grid-template-columns: 1fr;
  }

  .lf-card__media .lf-media-caption,
  .lf-atlas-item .lf-media-caption,
  .lf-related-sidebar .lf-media-caption,
  .lf-read-also .lf-media-caption {
    display: none;
  }

  .lf-article-hero .lf-media-caption {
    display: flex;
  }
}

/* Brand refresh foundation — LeFrontline.com 2026 */
body {
  background:
    radial-gradient(circle at 100% 0, rgba(15, 61, 46, 0.05), transparent 34rem),
    var(--lf-paper);
  color: var(--lf-black);
  -webkit-font-smoothing: antialiased;
}

.lf-utility-bar {
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98), rgba(6, 42, 32, 0.98));
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: none;
}

.lf-utility-bar__inner {
  min-height: 36px;
  padding: 6px 0;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.lf-utility-pill em,
.lf-utility-link:hover,
.lf-language-switcher__link:hover {
  color: var(--lf-white);
}

.lf-utility-pill .lf-svg-icon,
.lf-utility-link .lf-svg-icon {
  color: var(--lf-gold);
}

.lf-brand-band {
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  background:
    radial-gradient(circle at 96% 10%, rgba(15, 61, 46, 0.58), transparent 26rem),
    linear-gradient(135deg, var(--lf-black) 0%, #111 48%, var(--lf-green-deep) 100%);
}

.lf-brand-band::before {
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.72), transparent);
}

.lf-brand-band::after {
  background-image:
    linear-gradient(rgba(201, 162, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.72;
}

.lf-brand-band__inner {
  min-height: 86px;
  padding-block: 14px;
}

.lf-wordmark {
  display: inline-flex;
  align-items: center;
  max-width: min(620px, 62vw);
}

.lf-wordmark img {
  width: 100%;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

.lf-brand-band__skyline {
  display: none;
}

.lf-brand-band__mobile-tagline {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lf-main-nav {
  top: 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  background:
    linear-gradient(90deg, var(--lf-green-deep), var(--lf-green));
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(13, 13, 13, 0.14);
}

.lf-main-nav__inner {
  min-height: 50px;
}

.lf-main-nav__link,
.lf-main-nav__quick-link {
  font-family: var(--lf-font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.lf-main-nav__link:hover,
.lf-main-nav__link.is-active,
.lf-main-nav__quick-link:hover,
.lf-main-nav__quick-link.is-active {
  color: var(--lf-white);
}

.lf-main-nav__link::after,
.lf-main-nav__quick-link::after {
  height: 2px;
  bottom: 5px;
  background: var(--lf-gold);
}

.lf-main-nav__cta,
.lf-main-nav__link--gold,
.lf-gold-button {
  border: 1px solid rgba(13, 13, 13, 0.14);
  border-radius: var(--lf-radius-sm);
  background:
    linear-gradient(180deg, var(--lf-gold), var(--lf-gold-muted));
  color: var(--lf-black);
  font-family: var(--lf-font-body);
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(13, 13, 13, 0.18);
}

.lf-main-nav__cta:hover,
.lf-main-nav__cta:focus-visible,
.lf-main-nav__cta.is-active,
.lf-main-nav__link--gold:hover,
.lf-main-nav__link--gold:focus-visible,
.lf-gold-button:hover,
.lf-gold-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, #d6b359, var(--lf-gold));
  color: var(--lf-black);
  transform: translateY(-1px);
}

.lf-nav-toggle {
  border-color: rgba(201, 162, 75, 0.32);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.045);
  font-family: var(--lf-font-display);
  font-weight: 700;
}

.lf-live-ticker {
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98), rgba(15, 61, 46, 0.98));
  color: rgba(255, 255, 255, 0.8);
}

.lf-live-ticker__badge {
  background: rgba(15, 61, 46, 0.9);
  color: var(--lf-white);
  border: 1px solid rgba(201, 162, 75, 0.32);
  box-shadow: none;
}

.lf-live-ticker__badge .lf-icon-chip,
.lf-live-ticker__item strong {
  color: var(--lf-gold);
}

.lf-live-ticker__item {
  color: rgba(255, 255, 255, 0.76);
}

.lf-live-ticker__control {
  border-color: rgba(201, 162, 75, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.lf-kicker,
.lf-section-heading__label,
.lf-widget__header h2 {
  color: var(--lf-green);
}

.lf-kicker,
.lf-category-badge {
  color: var(--lf-white);
  font-family: var(--lf-font-body);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lf-kicker--warm {
  color: var(--lf-gold-muted);
}

.lf-ghost-button {
  border-color: rgba(15, 61, 46, 0.24);
  color: var(--lf-green-deep);
  font-weight: 850;
}

.lf-ghost-button:hover,
.lf-ghost-button:focus-visible {
  border-color: var(--lf-gold);
  color: var(--lf-black);
}

.lf-site-footer {
  background:
    radial-gradient(circle at 85% 10%, rgba(15, 61, 46, 0.52), transparent 32rem),
    linear-gradient(135deg, var(--lf-black), #111 48%, var(--lf-green-deep));
}

.lf-footer-primary__grid {
  padding: 34px 0 30px;
}

.lf-footer-brand__lockup {
  align-items: center;
}

.lf-footer-brand__symbol {
  width: 46px;
  height: 46px;
  border-radius: var(--lf-radius-icon);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.lf-footer-brand__lockup img:last-child {
  width: 210px;
  max-height: 64px;
  object-fit: contain;
}

.lf-footer-column h3,
.lf-footer-newsletter h3 {
  font-family: var(--lf-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-footer-socials a:hover,
.lf-footer-socials a:focus-visible,
.lf-footer-column a:hover,
.lf-footer-column a:focus-visible,
.lf-footer-legal__links a:hover,
.lf-footer-legal__links a:focus-visible {
  color: var(--lf-white);
  border-color: rgba(201, 162, 75, 0.5);
}

@media (min-width: 1025px) {
  .lf-brand-band__inner {
    min-height: 86px;
  }
}

@media (max-width: 1024px) {
  .lf-main-nav__quick-link {
    font-size: 0.98rem;
  }

  .lf-main-nav__list {
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .lf-brand-band__inner {
    min-height: 94px;
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-wordmark {
    max-width: min(342px, 90vw);
    overflow: visible;
  }

  .lf-wordmark img {
    width: 100%;
    max-width: 100%;
    max-height: 76px;
    margin-left: 0;
  }

  .lf-brand-band__mobile-tagline {
    display: none;
    max-width: 10ch;
    border-left-color: rgba(201, 162, 75, 0.7);
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .lf-main-nav__cta {
    border-radius: var(--lf-radius-sm);
  }

  .lf-live-ticker {
    background:
      linear-gradient(90deg, var(--lf-black), var(--lf-green-deep));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* UI kit integration: controls, chips, and micro-interactions from the approved button board. */
:root {
  --lf-control-height: 46px;
  --lf-control-height-sm: 38px;
  --lf-focus-ring: 0 0 0 4px rgba(201, 162, 75, 0.28);
  --lf-control-shadow: 0 10px 22px rgba(13, 13, 13, 0.11);
}

:where(
  .lf-gold-button,
  .lf-ghost-button,
  .lf-main-nav__cta,
  .lf-main-nav__link--gold,
  .lf-stack-form button,
  .lf-inline-form button,
  .lf-hero-form button,
  .lf-search-form button,
  .lf-listen-button,
  .lf-nav-toggle,
  .lf-live-ticker__control,
  .lf-share-rail__icon,
  .lf-chip,
  .lf-source-pill
) {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

:where(
  .lf-gold-button,
  .lf-ghost-button,
  .lf-stack-form button,
  .lf-inline-form button,
  .lf-hero-form button,
  .lf-search-form button,
  .lf-listen-button
) {
  min-height: var(--lf-control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 19px;
  font-family: var(--lf-font-body);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

:where(
  .lf-gold-button,
  .lf-stack-form button,
  .lf-inline-form button,
  .lf-hero-form button,
  .lf-search-form button,
  .lf-listen-button
)::after {
  content: "→";
  display: inline-flex;
  transform: translateX(0);
  transition: transform 180ms ease;
}

:where(
  .lf-gold-button,
  .lf-stack-form button,
  .lf-inline-form button,
  .lf-hero-form button,
  .lf-search-form button,
  .lf-listen-button
):hover::after,
:where(
  .lf-gold-button,
  .lf-stack-form button,
  .lf-inline-form button,
  .lf-hero-form button,
  .lf-search-form button,
  .lf-listen-button
):focus-visible::after {
  transform: translateX(3px);
}

:where(.lf-stack-form button, .lf-inline-form button, .lf-hero-form button, .lf-search-form button, .lf-listen-button) {
  border: 1px solid rgba(6, 42, 32, 0.92);
  background:
    linear-gradient(180deg, #0f4736, var(--lf-green-deep));
  color: var(--lf-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    var(--lf-control-shadow);
}

:where(.lf-stack-form button, .lf-inline-form button, .lf-hero-form button, .lf-search-form button, .lf-listen-button):hover,
:where(.lf-stack-form button, .lf-inline-form button, .lf-hero-form button, .lf-search-form button, .lf-listen-button):focus-visible {
  border-color: rgba(201, 162, 75, 0.44);
  background:
    linear-gradient(180deg, #14533f, var(--lf-green-deep));
  color: var(--lf-white);
  transform: translateY(-1px);
}

:where(.lf-gold-button, .lf-main-nav__cta, .lf-main-nav__link--gold),
.lf-atlas-morning-cta .lf-stack-form button,
.lf-footer-newsletter .lf-inline-form button,
.lf-newsletter-product-hero .lf-hero-form button {
  border: 1px solid rgba(13, 13, 13, 0.12);
  background:
    linear-gradient(180deg, #e0bb4d, var(--lf-gold) 58%, var(--lf-gold-muted));
  color: var(--lf-black);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 24px rgba(13, 13, 13, 0.16);
}

:where(.lf-gold-button, .lf-main-nav__cta, .lf-main-nav__link--gold):hover,
:where(.lf-gold-button, .lf-main-nav__cta, .lf-main-nav__link--gold):focus-visible,
.lf-atlas-morning-cta .lf-stack-form button:hover,
.lf-atlas-morning-cta .lf-stack-form button:focus-visible,
.lf-footer-newsletter .lf-inline-form button:hover,
.lf-footer-newsletter .lf-inline-form button:focus-visible,
.lf-newsletter-product-hero .lf-hero-form button:hover,
.lf-newsletter-product-hero .lf-hero-form button:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, #edcb65, #d3a735 64%, var(--lf-gold-muted));
  color: var(--lf-black);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 15px 28px rgba(13, 13, 13, 0.2);
  transform: translateY(-1px);
}

.lf-atlas-morning-cta .lf-newsletter-form[data-newsletter-collection="disabled"] button,
.lf-footer-newsletter .lf-newsletter-form[data-newsletter-collection="disabled"] button,
.lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button {
  border-color: rgba(201, 162, 75, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(13, 13, 13, 0.72);
  box-shadow: none;
}

.lf-atlas-morning-cta .lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-atlas-morning-cta .lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible,
.lf-footer-newsletter .lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-footer-newsletter .lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible,
.lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible {
  border-color: rgba(201, 162, 75, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(13, 13, 13, 0.72);
  box-shadow: none;
  transform: none;
}

.lf-main-nav__cta,
.lf-main-nav__link--gold {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 18px;
  white-space: nowrap;
}

.lf-ghost-button {
  border: 1px solid rgba(15, 61, 46, 0.28);
  background: rgba(255, 255, 255, 0.58);
  color: var(--lf-green-deep);
  box-shadow: none;
}

.lf-ghost-button:hover,
.lf-ghost-button:focus-visible {
  border-color: rgba(201, 162, 75, 0.86);
  background: rgba(255, 255, 255, 0.9);
  color: var(--lf-black);
  transform: translateY(-1px);
}

:where(
  .lf-stack-form input,
  .lf-inline-form input,
  .lf-hero-form input,
  .lf-search-form input,
  select,
  textarea
) {
  min-height: var(--lf-control-height);
  border-radius: 999px;
  border: 1px solid rgba(217, 217, 210, 0.96);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lf-ink);
  box-shadow: inset 0 1px 0 rgba(13, 13, 13, 0.03);
}

:where(.lf-stack-form input, .lf-inline-form input, .lf-hero-form input, .lf-search-form input)::placeholder {
  color: rgba(111, 112, 107, 0.88);
}

:where(
  .lf-stack-form input,
  .lf-inline-form input,
  .lf-hero-form input,
  .lf-search-form input,
  select,
  textarea
):focus-visible {
  border-color: rgba(201, 162, 75, 0.92);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(13, 13, 13, 0.03),
    var(--lf-focus-ring);
}

.lf-inline-form {
  align-items: center;
}

.lf-widget--dark .lf-stack-form input,
.lf-widget--dark .lf-inline-form input {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lf-white);
}

.lf-widget--dark .lf-stack-form button,
.lf-widget--dark .lf-inline-form button {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--lf-white);
  color: var(--lf-green-deep);
}

.lf-category-badge,
.lf-editorial-badge,
.lf-confidence-badge,
.lf-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 26px;
  border-radius: 999px;
  font-family: var(--lf-font-body);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.lf-category-badge {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, #0f4a3a, var(--lf-green-deep));
  color: var(--lf-white);
  box-shadow: 0 9px 18px rgba(13, 13, 13, 0.14);
}

.lf-editorial-badge,
.lf-confidence-badge {
  padding: 6px 10px;
  border: 1px solid rgba(201, 162, 75, 0.42);
  background: rgba(255, 255, 255, 0.74);
  color: var(--lf-green-deep);
}

.lf-meta-chip {
  padding: 7px 10px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--lf-muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.lf-chip,
.lf-source-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--lf-green-deep);
}

.lf-chip {
  min-height: var(--lf-control-height-sm);
  padding: 0 14px;
  border-color: rgba(15, 61, 46, 0.18);
  font-weight: 760;
}

.lf-chip:hover,
.lf-chip:focus-visible,
a.lf-source-pill:hover,
a.lf-source-pill:focus-visible {
  border-color: rgba(201, 162, 75, 0.7);
  background: rgba(255, 255, 255, 0.94);
  color: var(--lf-black);
  transform: translateY(-1px);
}

.lf-source-pill {
  padding: 6px 10px;
  border-color: rgba(15, 61, 46, 0.14);
}

.lf-breadcrumbs ol {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(217, 217, 210, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.lf-live-ticker__badge {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--lf-font-body);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-live-ticker__control {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
}

.lf-live-ticker__control:hover,
.lf-live-ticker__control:focus-visible,
.lf-nav-toggle:hover,
.lf-nav-toggle:focus-visible {
  border-color: rgba(201, 162, 75, 0.58);
  box-shadow: var(--lf-focus-ring);
}

.lf-share-rail__icon {
  border-radius: 999px;
  border-color: rgba(15, 61, 46, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.lf-share-rail__icon:hover,
.lf-share-rail__icon:focus-visible {
  border-color: rgba(201, 162, 75, 0.7);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-form-row,
.lf-ui-searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lf-status-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lf-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.16);
}

.lf-signal-bars {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  min-height: 22px;
  color: var(--lf-green-deep);
}

.lf-signal-bars::before,
.lf-signal-bars::after,
.lf-signal-bars span {
  content: "";
  width: 6px;
  border-radius: 999px 999px 2px 2px;
  background: currentColor;
}

.lf-signal-bars::before {
  height: 8px;
}

.lf-signal-bars span {
  height: 15px;
}

.lf-signal-bars::after {
  height: 22px;
}

@media (max-width: 768px) {
  :where(
    .lf-gold-button,
    .lf-ghost-button,
    .lf-stack-form button,
    .lf-inline-form button,
    .lf-hero-form button,
    .lf-search-form button,
    .lf-listen-button
  ) {
    min-height: 48px;
    padding-inline: 18px;
  }

  .lf-inline-form,
  .lf-search-form {
    grid-template-columns: 1fr;
  }

  .lf-main-nav__cta,
  .lf-main-nav__link--gold {
    min-height: 42px;
    padding-inline: 18px;
  }

  .lf-breadcrumbs ol {
    border-radius: var(--lf-radius-md);
  }
}

/* Internal UI-kit reference page */
.lf-ui-kit-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(201, 162, 75, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--lf-paper), var(--lf-paper-alt));
}

.lf-ui-kit-hero {
  border-bottom: 1px solid rgba(201, 162, 75, 0.24);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.98), rgba(6, 42, 32, 0.96)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 7vw center / 220px no-repeat;
  color: var(--lf-white);
}

.lf-ui-kit-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--lf-gutter);
  align-items: center;
  min-height: 340px;
  padding: clamp(46px, 7vw, 86px) 0;
}

.lf-ui-kit-hero h1 {
  max-width: 9ch;
  margin: 10px 0 16px;
  font-family: var(--lf-font-display);
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lf-ui-kit-hero p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.lf-ui-kit-hero__mark {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 22px;
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: var(--lf-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lf-gold);
}

.lf-ui-kit-hero__mark img {
  width: 86px;
}

.lf-ui-kit-hero__mark span {
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lf-ui-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--lf-gutter);
  padding-top: clamp(28px, 5vw, 54px);
}

.lf-ui-kit-review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.lf-ui-kit-review-strip article {
  padding: 14px 16px;
  border: 1px solid rgba(217, 217, 210, 0.82);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.lf-ui-kit-review-strip span,
.lf-ui-kit-control-matrix span,
.lf-ui-kit-form-states label > span {
  display: block;
  color: var(--lf-gold-muted);
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lf-ui-kit-review-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--lf-green-deep);
  font-size: 0.98rem;
  line-height: 1.25;
}

.lf-ui-kit-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(217, 217, 210, 0.9);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.96)),
    radial-gradient(circle at 92% 8%, rgba(201, 162, 75, 0.12), transparent 28%);
  box-shadow: var(--lf-shadow-widget);
}

.lf-ui-kit-panel--dark,
.lf-ui-kit-panel--signature {
  border-color: rgba(201, 162, 75, 0.28);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.94)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.18), transparent 32%);
  color: var(--lf-white);
}

.lf-ui-kit-panel h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--lf-green-deep);
  font-family: var(--lf-font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lf-ui-kit-panel--dark h2,
.lf-ui-kit-panel--signature h2 {
  color: var(--lf-white);
}

.lf-ui-kit-panel p {
  max-width: 58ch;
  margin: 0;
  color: var(--lf-muted);
}

.lf-ui-kit-panel--dark p,
.lf-ui-kit-panel--signature p {
  color: rgba(255, 255, 255, 0.76);
}

.lf-ui-kit-row,
.lf-ui-kit-badge-row,
.lf-ui-kit-micro-row,
.lf-ui-kit-nav-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lf-ui-kit-control-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lf-ui-kit-control-matrix div {
  display: grid;
  gap: 8px;
}

.lf-ui-kit-control-matrix span {
  color: rgba(255, 255, 255, 0.62);
}

.lf-ui-primary-demo {
  min-height: var(--lf-control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid rgba(6, 42, 32, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, #0f4736, var(--lf-green-deep));
  color: var(--lf-white);
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--lf-control-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lf-ui-primary-demo::after {
  content: "→";
  transition: transform 180ms ease;
}

.lf-ui-primary-demo:hover,
.lf-ui-primary-demo:focus-visible {
  background: linear-gradient(180deg, #14533f, var(--lf-green-deep));
  transform: translateY(-1px);
}

.lf-ui-primary-demo:hover::after,
.lf-ui-primary-demo:focus-visible::after {
  transform: translateX(3px);
}

.lf-ui-inverse-button {
  min-height: var(--lf-control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lf-green-deep);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lf-ui-inverse-button::after {
  content: "→";
  transition: transform 180ms ease;
}

.lf-ui-inverse-button:hover,
.lf-ui-inverse-button:focus-visible {
  border-color: rgba(201, 162, 75, 0.52);
  background: var(--lf-white);
  transform: translateY(-1px);
}

.lf-ui-inverse-button:hover::after,
.lf-ui-inverse-button:focus-visible::after {
  transform: translateX(3px);
}

.lf-ui-kit-badge-row .lf-category-badge {
  background: linear-gradient(180deg, var(--lf-gold), var(--lf-gold-muted));
  color: var(--lf-black);
}

.lf-ui-kit-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lf-icon-action {
  min-height: 78px;
  display: grid;
  gap: 7px;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.64);
  color: var(--lf-green-deep);
  font-size: var(--lf-meta-xs);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.lf-icon-action .lf-svg-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.lf-icon-action:hover,
.lf-icon-action:focus-visible {
  border-color: rgba(201, 162, 75, 0.62);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-ui-kit-newsletter {
  padding: 14px;
  border: 1px solid rgba(217, 217, 210, 0.72);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.52);
}

.lf-ui-kit-form-states {
  display: grid;
  gap: 14px;
}

.lf-ui-kit-form-states label {
  display: grid;
  gap: 7px;
}

.lf-ui-kit-form-states input[type="text"],
.lf-ui-kit-form-states select {
  width: 100%;
  min-height: var(--lf-control-height);
  padding: 0 15px;
  border: 1px solid rgba(217, 217, 210, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lf-ink);
}

.lf-ui-check,
.lf-ui-toggle {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.lf-ui-check input,
.lf-ui-toggle input {
  accent-color: var(--lf-green-deep);
}

.lf-ui-toggle {
  position: relative;
}

.lf-ui-toggle input {
  width: 42px;
  height: 24px;
}

.lf-ui-check span,
.lf-ui-toggle span {
  color: var(--lf-green-deep);
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.lf-ui-kit-nav-demo {
  padding: 10px;
  border-radius: var(--lf-radius-md);
  background: linear-gradient(90deg, var(--lf-green-deep), var(--lf-green));
  color: rgba(255, 255, 255, 0.9);
}

.lf-ui-kit-nav-demo .lf-main-nav__quick-link {
  padding: 8px 0;
}

.lf-ui-breadcrumb-demo {
  padding-top: 0;
}

.lf-ui-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lf-ui-pagination a {
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--lf-green-deep);
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lf-ui-pagination a:hover,
.lf-ui-pagination a:focus-visible,
.lf-ui-pagination a.is-active {
  border-color: rgba(201, 162, 75, 0.68);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-ui-kit-trust-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-left: 4px solid var(--lf-gold);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.lf-ui-kit-trust-card p {
  font-weight: 650;
}

.lf-ui-kit-separator {
  width: min(180px, 42vw);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, var(--lf-gold), transparent);
}

.lf-ui-kit-panel--signature .lf-signal-bars,
.lf-ui-kit-panel--signature .lf-status-dot {
  color: var(--lf-gold);
}

.lf-ui-kit-panel--signature .lf-status-dot {
  background: var(--lf-gold);
}

@media (max-width: 1024px) {
  .lf-ui-kit-hero__inner,
  .lf-ui-kit-grid,
  .lf-ui-kit-review-strip {
    grid-template-columns: 1fr;
  }

  .lf-ui-kit-hero__mark {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .lf-ui-kit-hero__inner {
    min-height: auto;
    padding-block: 36px;
  }

  .lf-ui-kit-hero h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .lf-ui-kit-panel {
    min-height: auto;
  }

  .lf-ui-kit-control-matrix,
  .lf-ui-kit-icon-grid {
    grid-template-columns: 1fr;
  }

  .lf-ui-kit-row,
  .lf-ui-kit-nav-demo {
    align-items: stretch;
    flex-direction: column;
  }

  .lf-ui-kit-row > *,
  .lf-ui-kit-nav-demo > * {
    justify-content: center;
    width: 100%;
  }
}

/* Applied public controls: the UI kit should now be visible in real reader journeys. */
.lf-share-card {
  border-color: rgba(201, 162, 75, 0.28);
  background:
    radial-gradient(circle at 14% 10%, rgba(201, 162, 75, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.7);
}

.lf-share-card h2 {
  margin-bottom: 12px;
}

.lf-share-card .lf-share-rail__icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.lf-share-card .lf-share-rail__icon {
  width: auto;
  height: auto;
  min-height: 66px;
  padding: 10px 6px;
  border-radius: var(--lf-radius-sm);
  text-decoration: none;
}

.lf-share-card .lf-share-rail__icon span:not(.lf-svg-icon) {
  max-width: 100%;
  overflow: hidden;
  color: currentColor;
  font-size: 0.68rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lf-share-card .lf-side-card__tools {
  display: grid;
  gap: 8px;
}

.lf-share-card .lf-side-card__tools button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border-color: rgba(15, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--lf-green-deep);
  font-weight: 850;
}

.lf-share-card .lf-side-card__tools button .lf-svg-icon {
  width: 1rem;
  height: 1rem;
}

.lf-share-card .lf-side-card__tools button:hover,
.lf-share-card .lf-side-card__tools button:focus-visible {
  border-color: rgba(201, 162, 75, 0.6);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-search-format-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
}

.lf-search-format-strip > span {
  color: var(--lf-grey-text);
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lf-search-format-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 61, 46, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--lf-green-deep);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
}

.lf-search-format-strip a .lf-svg-icon {
  width: 1rem;
  height: 1rem;
  color: var(--lf-gold-muted);
}

.lf-search-format-strip a:hover,
.lf-search-format-strip a:focus-visible {
  border-color: rgba(201, 162, 75, 0.64);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-search-result-count {
  color: var(--lf-grey-text);
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lf-atlas-funnel-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.lf-atlas-funnel-proof span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 750;
}

.lf-atlas-funnel-proof strong {
  color: var(--lf-gold);
  font-family: var(--lf-font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 0.95;
}

.lf-discovery-pagination {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: clamp(26px, 4vw, 42px);
  padding: 14px;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.05), transparent 52%),
    rgba(255, 255, 255, 0.7);
}

.lf-discovery-pagination__arrow,
.lf-discovery-pagination__pages a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--lf-green-deep);
  font-weight: 850;
  text-decoration: none;
}

.lf-discovery-pagination__arrow {
  padding: 0 12px;
  white-space: nowrap;
}

.lf-discovery-pagination__arrow .lf-svg-icon {
  width: 1rem;
  height: 1rem;
}

.lf-discovery-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.lf-discovery-pagination__pages a {
  padding: 0 12px;
  font-size: 0.82rem;
}

.lf-discovery-pagination__arrow:hover,
.lf-discovery-pagination__arrow:focus-visible,
.lf-discovery-pagination__pages a:hover,
.lf-discovery-pagination__pages a:focus-visible,
.lf-discovery-pagination__pages a.is-active {
  border-color: rgba(201, 162, 75, 0.68);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-footer-newsletter__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(201, 162, 75, 0.38);
  border-radius: 999px;
  color: var(--lf-gold);
  font-size: var(--lf-meta-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lf-footer-newsletter__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.lf-footer-newsletter__proof span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .lf-share-card .lf-share-rail__icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lf-search-format-strip {
    align-items: stretch;
  }

  .lf-search-format-strip > span {
    width: 100%;
  }

  .lf-atlas-funnel-proof,
  .lf-discovery-pagination {
    grid-template-columns: 1fr;
  }

  .lf-discovery-pagination__pages {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .lf-discovery-pagination__pages a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .lf-discovery-pagination__arrow {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .lf-share-card .lf-share-rail__icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-search-format-strip a {
    width: 100%;
    justify-content: center;
  }
}

.lf-article-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(135deg, rgba(201, 162, 75, 0.1), transparent 54%),
    rgba(255, 255, 255, 0.66);
}

.lf-article-jump-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--lf-green-deep);
  font-size: 0.82rem;
  font-weight: 880;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.lf-article-jump-nav a .lf-svg-icon {
  width: 1rem;
  height: 1rem;
  color: var(--lf-gold-muted);
}

.lf-article-jump-nav a:hover,
.lf-article-jump-nav a:focus-visible {
  border-color: rgba(201, 162, 75, 0.62);
  background: var(--lf-green-deep);
  color: var(--lf-white);
  transform: translateY(-1px);
}

.lf-article-jump-nav a:hover .lf-svg-icon,
.lf-article-jump-nav a:focus-visible .lf-svg-icon {
  color: currentColor;
}

.lf-article-body,
.lf-source-box,
.lf-tag-box,
.lf-read-also,
.lf-widget--key-points,
.lf-widget--stats {
  scroll-margin-top: 92px;
}

@media (max-width: 768px) {
  .lf-article-jump-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .lf-article-jump-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* Self-driven launch polish pass: denser publisher shell and safer route layouts. */
@media (min-width: 1261px) {
  .lf-home-top {
    padding-top: 22px;
  }

  .lf-home-top__grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.68fr) minmax(284px, 0.48fr);
    gap: 20px;
  }

  .lf-hero-card .lf-card__image--hero {
    min-height: clamp(480px, 41vw, 610px);
  }

  .lf-story-stack__item {
    padding: 12px;
    border: 1px solid rgba(220, 207, 184, 0.78);
    border-radius: var(--lf-radius-md);
  }

  .lf-story-stack__link {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .lf-story-stack__thumb {
    width: 112px;
    height: 104px;
  }

  .lf-home-widgets .lf-widget {
    padding: 16px;
  }
}

@media (min-width: 1025px) {
  .lf-search-page .lf-archive-hero,
  .lf-page--archive .lf-archive-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
    column-gap: clamp(28px, 4vw, 64px);
    align-items: end;
  }

  .lf-search-page .lf-archive-hero > .lf-kicker,
  .lf-page--archive .lf-archive-hero > .lf-kicker {
    justify-self: start;
    align-self: start;
  }

  .lf-search-page .lf-archive-hero > h1,
  .lf-page--archive .lf-archive-hero > h1,
  .lf-search-page .lf-archive-hero > p,
  .lf-page--archive .lf-archive-hero > p {
    grid-column: 1;
  }

  .lf-search-page .lf-archive-hero > .lf-search-form,
  .lf-search-page .lf-archive-hero > .lf-search-format-strip,
  .lf-page--archive .lf-archive-hero > .lf-archive-hero__actions {
    grid-column: 2;
  }

  .lf-search-page .lf-archive-hero > .lf-search-form {
    align-self: start;
  }

  .lf-search-page .lf-archive-hero > .lf-search-format-strip {
    align-self: start;
    margin-top: 14px;
  }

  .lf-article-layout {
    grid-template-columns: 148px minmax(0, 860px) minmax(300px, 350px);
  }

  .lf-article-jump-nav {
    max-width: 760px;
  }

  .lf-article-end__grid {
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .lf-site-footer {
    background-size: 126px;
  }

  .lf-footer-primary__grid {
    grid-template-columns: minmax(250px, 1.1fr) repeat(3, minmax(130px, 0.62fr)) minmax(300px, 1fr);
    gap: 18px;
    padding: 26px 0 22px;
  }

  .lf-footer-primary__grid > * {
    padding-left: 16px;
  }

  .lf-footer-brand p {
    max-width: 24ch;
    margin-bottom: 12px;
  }

  .lf-footer-column ul {
    gap: 5px;
  }

  .lf-footer-newsletter {
    padding: 16px;
    border: 1px solid rgba(201, 162, 75, 0.22);
    border-radius: var(--lf-radius-md);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* Mobile article command bar: useful reading affordance without onboarding language. */
.lf-mobile-reader-bar {
  display: none;
}

.lf-search-page .lf-archive-hero {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.94), rgba(6, 42, 32, 0.94)),
    radial-gradient(circle at 84% 20%, rgba(201, 162, 75, 0.2), transparent 34%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 28px bottom 20px / 150px no-repeat;
  color: var(--lf-paper);
}

.lf-search-page .lf-archive-hero h1,
.lf-search-page .lf-archive-hero p {
  color: inherit;
}

.lf-search-page .lf-archive-hero p {
  color: rgba(247, 247, 245, 0.78);
}

.lf-search-page .lf-search-form input {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--lf-white);
}

.lf-search-page .lf-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.lf-search-page .lf-search-form button {
  background: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-search-page .lf-search-format-strip > span {
  color: rgba(247, 247, 245, 0.68);
}

.lf-search-page .lf-search-format-strip a {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lf-white);
}

.lf-search-page .lf-search-format-strip a:hover,
.lf-search-page .lf-search-format-strip a:focus-visible {
  background: var(--lf-white);
  color: var(--lf-green-deep);
}

.lf-page--article .lf-article-body,
.lf-page--article .lf-mobile-trust-pack,
.lf-page--article .lf-source-box,
.lf-page--article .lf-tag-box,
.lf-page--article .lf-read-also {
  scroll-margin-top: 96px;
}

@media (max-width: 768px) {
  .lf-page--article {
    padding-bottom: 86px;
  }

  .lf-mobile-reader-bar {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 75, 0.52);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(6, 42, 32, 0.96)),
      radial-gradient(circle at 10% 0, rgba(201, 162, 75, 0.18), transparent 32%);
    color: var(--lf-white);
    box-shadow: 0 18px 44px rgba(6, 42, 32, 0.34);
  }

  .lf-mobile-reader-bar__progress {
    position: absolute;
    top: 0;
    right: 8px;
    left: 8px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
  }

  .lf-mobile-reader-bar__progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--lf-reading-progress));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-white));
  }

  .lf-mobile-reader-bar a,
  .lf-mobile-reader-bar button {
    min-width: 0;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 3px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1.1;
    text-decoration: none;
  }

  .lf-mobile-reader-bar a:hover,
  .lf-mobile-reader-bar a:focus-visible,
  .lf-mobile-reader-bar button:hover,
  .lf-mobile-reader-bar button:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lf-white);
  }

  .lf-mobile-reader-bar .lf-svg-icon {
    width: 1rem;
    height: 1rem;
    color: var(--lf-gold);
  }

  .lf-mobile-reader-bar__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .lf-search-page .lf-archive-hero {
    padding: 24px 18px;
  }

  .lf-search-page .lf-search-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-search-page .lf-search-form button {
    min-height: 48px;
  }

  .lf-atlas-morning-cta .lf-atlas-funnel-proof {
    display: none;
  }

  .lf-page--archive-atlas .lf-archive-hero {
    padding-bottom: 22px;
  }

  .lf-page--archive-atlas .lf-archive-hero__actions {
    display: none;
  }
}

/* Reader/discovery milestone: stronger exploration and conversion surfaces. */
#atlas-brief-newsletter {
  scroll-margin-top: 96px;
}

.lf-discovery-journey,
.lf-search-intent-panel,
.lf-article-continuation {
  margin-top: clamp(18px, 3vw, 34px);
}

.lf-discovery-journey {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.lf-discovery-journey__header,
.lf-article-continuation__header {
  padding: 18px;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(6, 42, 32, 0.96)),
    url("../images/brand/symbol-gold-on-transparent.svg") right -18px bottom -28px / 124px no-repeat;
  color: var(--lf-white);
}

.lf-discovery-journey__header .lf-kicker,
.lf-article-continuation__header .lf-kicker {
  color: var(--lf-gold);
}

.lf-discovery-journey__header h2,
.lf-article-continuation__header h2 {
  max-width: 12ch;
  margin: 10px 0 0;
  color: inherit;
  font-family: var(--lf-font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lf-article-continuation__header p {
  max-width: 31ch;
  margin: 12px 0 0;
  color: rgba(247, 247, 245, 0.74);
  line-height: 1.45;
}

.lf-discovery-journey__grid,
.lf-article-continuation__grid {
  display: grid;
  gap: 10px;
}

.lf-discovery-journey__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lf-article-continuation {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.lf-article-continuation__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lf-discovery-journey__card,
.lf-article-continuation__card,
.lf-search-intent-panel article {
  position: relative;
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 247, 245, 0.94)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.1), transparent 36%);
  color: var(--lf-green-deep);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(10, 58, 47, 0.055);
}

.lf-discovery-journey__card::after,
.lf-article-continuation__card::after,
.lf-search-intent-panel article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(201, 162, 75, 0.16);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
  transform: translate(44%, 46%);
}

.lf-discovery-journey__card .lf-svg-icon,
.lf-article-continuation__card .lf-svg-icon,
.lf-search-intent-panel article > .lf-svg-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--lf-gold-muted);
}

.lf-discovery-journey__card span,
.lf-article-continuation__card span,
.lf-search-intent-panel article > span {
  color: var(--lf-gold-muted);
  font-size: var(--lf-meta-xs);
  font-weight: 920;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lf-discovery-journey__card strong,
.lf-article-continuation__card strong,
.lf-search-intent-panel h2 {
  color: var(--lf-green-deep);
  font-family: var(--lf-font-display);
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.05;
}

.lf-discovery-journey__card em,
.lf-article-continuation__card em,
.lf-search-intent-panel p {
  color: var(--lf-grey-text);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.42;
}

.lf-discovery-journey__card:hover,
.lf-discovery-journey__card:focus-visible,
.lf-article-continuation__card:hover,
.lf-article-continuation__card:focus-visible {
  border-color: rgba(201, 162, 75, 0.72);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98));
  color: var(--lf-white);
  transform: translateY(-2px);
}

.lf-discovery-journey__card:hover *,
.lf-discovery-journey__card:focus-visible *,
.lf-article-continuation__card:hover *,
.lf-article-continuation__card:focus-visible * {
  color: currentColor;
}

.lf-discovery-journey__card--gold,
.lf-article-continuation__card--gold {
  border-color: rgba(201, 162, 75, 0.58);
  background:
    linear-gradient(180deg, rgba(201, 162, 75, 0.98), rgba(169, 132, 53, 0.96));
}

.lf-discovery-journey__card--gold .lf-svg-icon,
.lf-discovery-journey__card--gold span,
.lf-discovery-journey__card--gold strong,
.lf-discovery-journey__card--gold em,
.lf-article-continuation__card--gold .lf-svg-icon,
.lf-article-continuation__card--gold span,
.lf-article-continuation__card--gold strong,
.lf-article-continuation__card--gold em {
  color: var(--lf-black);
}

.lf-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.lf-search-suggestions span {
  color: rgba(247, 247, 245, 0.66);
  font-size: var(--lf-meta-xs);
  font-weight: 920;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lf-search-suggestions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 820;
  cursor: pointer;
}

.lf-search-suggestions button:hover,
.lf-search-suggestions button:focus-visible {
  border-color: rgba(201, 162, 75, 0.72);
  background: var(--lf-white);
  color: var(--lf-green-deep);
  transform: translateY(-1px);
}

.lf-search-intent-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lf-search-intent-panel article {
  min-height: 190px;
}

.lf-search-intent-panel h2 {
  margin: 0;
}

.lf-search-intent-panel p {
  margin: 0;
}

.lf-search-intent-panel a {
  width: fit-content;
  margin-top: 4px;
  color: var(--lf-green-deep);
  font-weight: 900;
  text-decoration: none;
}

.lf-search-intent-panel a:hover,
.lf-search-intent-panel a:focus-visible {
  color: var(--lf-burnt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lf-search-intent-panel__cta {
  border-color: rgba(201, 162, 75, 0.58);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(201, 162, 75, 0.18), transparent 34%) !important;
}

.lf-search-intent-panel__cta .lf-svg-icon,
.lf-search-intent-panel__cta span,
.lf-search-intent-panel__cta h2,
.lf-search-intent-panel__cta p,
.lf-search-intent-panel__cta a {
  color: var(--lf-white);
}

.lf-search-intent-panel__cta span,
.lf-search-intent-panel__cta .lf-svg-icon {
  color: var(--lf-gold);
}

@media (min-width: 1025px) {
  .lf-discovery-journey,
  .lf-article-continuation {
    align-items: stretch;
  }
}

@media (max-width: 1180px) {
  .lf-discovery-journey,
  .lf-article-continuation {
    grid-template-columns: 1fr;
  }

  .lf-discovery-journey__grid,
  .lf-search-intent-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lf-discovery-journey,
  .lf-search-intent-panel,
  .lf-article-continuation {
    margin-top: 14px;
  }

  .lf-discovery-journey__header,
  .lf-article-continuation__header {
    padding: 16px;
    background-size: 86px;
  }

  .lf-discovery-journey__header h2,
  .lf-article-continuation__header h2 {
    max-width: 11ch;
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .lf-discovery-journey__grid,
  .lf-article-continuation__grid,
  .lf-search-intent-panel {
    grid-template-columns: 1fr;
  }

  .lf-discovery-journey__card,
  .lf-article-continuation__card,
  .lf-search-intent-panel article {
    min-height: auto;
    min-width: 0;
    padding: 15px;
  }

  .lf-search-suggestions {
    align-items: stretch;
  }

  .lf-search-suggestions span {
    width: 100%;
  }

  .lf-search-suggestions button {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 420px) {
  .lf-search-suggestions button {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .lf-atlas-morning-cta {
    padding: 18px;
  }

  .lf-atlas-morning-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .lf-atlas-morning-cta p {
    font-size: 0.95rem;
    line-height: 1.48;
  }
}

@media (max-width: 420px) {
  .lf-mobile-reader-bar {
    left: 8px;
    right: 8px;
    padding: 7px;
    border-radius: 18px;
  }

  .lf-mobile-reader-bar a,
  .lf-mobile-reader-bar button {
    min-height: 44px;
    font-size: 0.62rem;
  }
}

/* Article launch milestone: trust-first reading UX and map-safe data visuals. */
.lf-data-card--network {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 232, 0.94)),
    radial-gradient(circle at 100% 8%, rgba(201, 162, 75, 0.16), transparent 34%);
}

.lf-data-card--network h3 {
  max-width: 18ch;
}

.lf-project-network__note {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--lf-forest);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lf-project-network {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 4px 0 2px;
}

.lf-project-network::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 19px;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 162, 75, 0), rgba(201, 162, 75, 0.72), rgba(201, 162, 75, 0));
}

.lf-project-network__node {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
}

.lf-project-network__node strong {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.58);
  border-radius: 50%;
  background: var(--lf-paper);
  color: var(--lf-green-deep);
  font-size: 0.74rem;
  font-weight: 900;
}

.lf-project-network__node em {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(15, 61, 46, 0.11);
  border-radius: var(--lf-radius-sm);
  background: rgba(255, 255, 255, 0.58);
  color: var(--lf-ink);
  font-style: normal;
  font-weight: 760;
  line-height: 1.25;
}

.lf-page--article .lf-article-header {
  isolation: isolate;
}

.lf-page--article .lf-article-header h1 {
  text-wrap: balance;
}

.lf-page--article .lf-article-header__deck {
  border-left-width: 4px;
  box-shadow: inset 12px 0 28px rgba(201, 162, 75, 0.06);
}

.lf-page--article .lf-article-trust-strip {
  align-items: center;
}

.lf-page--article .lf-article-trust-strip span {
  box-shadow: 0 8px 18px rgba(10, 58, 47, 0.04);
}

.lf-page--article .lf-mobile-trust-pack,
.lf-page--article .lf-widget--key-points,
.lf-page--article .lf-widget--stats,
.lf-page--article .lf-widget--related {
  border-top: 3px solid rgba(201, 162, 75, 0.62);
}

.lf-page--article .lf-widget--key-points,
.lf-page--article .lf-widget--stats,
.lf-page--article .lf-widget--related {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 242, 232, 0.94)),
    radial-gradient(circle at 100% 0, rgba(15, 61, 46, 0.08), transparent 30%);
}

.lf-page--article .lf-stat-list__item {
  border-left: 3px solid rgba(201, 162, 75, 0.54);
}

.lf-page--article .lf-related-sidebar__item {
  border-radius: var(--lf-radius-sm);
}

.lf-page--article .lf-source-box {
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-top: 4px solid var(--lf-gold);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98) 0 195px, rgba(15, 61, 46, 0) 196px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 232, 0.98)),
    radial-gradient(circle at 93% 6%, rgba(201, 162, 75, 0.2), transparent 34%);
  box-shadow: 0 22px 46px rgba(10, 58, 47, 0.14);
}

.lf-page--article .lf-source-box::before {
  border-color: rgba(201, 162, 75, 0.58);
  background:
    radial-gradient(circle, rgba(201, 162, 75, 0.88) 0 3px, transparent 4px),
    rgba(255, 255, 255, 0.12);
}

.lf-page--article .lf-source-box__header {
  position: relative;
  z-index: 1;
  margin: -2px -2px 14px;
  padding: 0 70px 4px 0;
  color: var(--lf-white);
}

.lf-page--article .lf-source-box__header span,
.lf-page--article .lf-source-box__header h2 {
  color: inherit;
}

.lf-page--article .lf-source-box__mark {
  border-color: rgba(201, 162, 75, 0.68);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lf-gold);
}

.lf-page--article .lf-source-box__mark::after {
  border-color: rgba(201, 162, 75, 0.46);
}

.lf-page--article .lf-source-box__meta {
  margin-top: 22px;
}

.lf-page--article .lf-source-box__meta span {
  border-color: rgba(15, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--lf-green-deep);
  box-shadow: 0 8px 16px rgba(10, 58, 47, 0.05);
}

.lf-page--article .lf-source-box__reader-note {
  border: 1px solid rgba(201, 162, 75, 0.36);
  border-left: 4px solid var(--lf-gold);
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.12), transparent),
    rgba(255, 255, 255, 0.72);
}

.lf-page--article .lf-source-references--cards li {
  border-color: rgba(15, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.lf-page--article .lf-source-references--cards li::before {
  content: "Source";
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  color: var(--lf-burnt);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-page--article .lf-method-list {
  counter-reset: method-step;
  padding-left: 0;
  list-style: none;
}

.lf-page--article .lf-method-list li {
  position: relative;
  min-height: 34px;
  padding: 8px 0 8px 46px;
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-page--article .lf-method-list li::before {
  counter-increment: method-step;
  content: counter(method-step, decimal-leading-zero);
  position: absolute;
  top: 8px;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.58);
  border-radius: 50%;
  background: var(--lf-paper);
  color: var(--lf-green-deep);
  font-size: 0.68rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .lf-page--article .lf-breadcrumbs {
    padding-top: 12px;
  }

  .lf-page--article .lf-article-layout {
    padding-top: 10px;
  }

  .lf-page--article .lf-article-header::before {
    height: 74px;
  }

  .lf-page--article .lf-article-header h1 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: clamp(2.15rem, 10vw, 2.82rem);
    line-height: 0.96;
  }

  .lf-page--article .lf-article-header__deck {
    margin-bottom: 14px;
    padding: 10px 0 10px 13px;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.42;
  }

  .lf-page--article .lf-author-meta {
    gap: 10px;
    border-radius: var(--lf-radius-sm);
  }

  .lf-page--article .lf-author-meta__identity {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lf-page--article .lf-author-meta__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .lf-page--article .lf-listen-button {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 42px;
  }

  .lf-page--article .lf-article-trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
    min-width: 0;
    overflow: hidden;
  }

  .lf-page--article .lf-article-trust-strip span {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: var(--lf-radius-sm);
    overflow-wrap: anywhere;
  }

  .lf-page--article .lf-article-jump-nav {
    display: none;
  }

  .lf-page--article .lf-article-hero {
    margin-top: 14px;
  }

  .lf-page--article .lf-mobile-trust-pack {
    gap: 10px;
    margin: 10px 0 18px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
    border-bottom: 1px solid rgba(15, 61, 46, 0.14);
    border-radius: 0;
    background: transparent;
  }

  .lf-page--article .lf-mobile-trust-pack__header {
    align-items: center;
    padding: 10px 0 8px;
    border-bottom-color: rgba(15, 61, 46, 0.1);
  }

  .lf-page--article .lf-trust-list li {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 61, 46, 0.1);
    background: transparent;
    line-height: 1.42;
  }

  .lf-page--article .lf-trust-list li:last-child {
    border-bottom: 0;
  }

  .lf-page--article .lf-mobile-trust-pack .lf-source-pills {
    display: none;
  }

  .lf-page--article .lf-mobile-stat-row {
    display: none;
  }

  .lf-page--article .lf-data-grid {
    gap: 12px;
  }

  .lf-page--article .lf-data-card {
    padding: 15px;
  }

  .lf-page--article .lf-source-box {
    border-radius: var(--lf-radius-md);
    background:
      linear-gradient(135deg, rgba(15, 61, 46, 0.98) 0 175px, rgba(15, 61, 46, 0) 176px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 232, 0.98));
  }

  .lf-page--article .lf-source-box__header {
    padding-right: 50px;
  }

  .lf-page--article .lf-source-box__meta {
    margin-top: 20px;
  }

  body.lf-page--article:not(.is-reader-bar-active) .lf-mobile-reader-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  body.has-motion.lf-page--article .lf-mobile-reader-bar {
    transition: opacity 180ms ease, transform 180ms ease;
  }
}

@media (max-width: 420px) {
  .lf-page--article .lf-author-meta__info {
    grid-template-columns: 1fr;
  }

  .lf-page--article .lf-source-box__title {
    gap: 10px;
  }

  .lf-page--article .lf-source-box__mark {
    width: 38px;
    height: 38px;
  }
}

/* Homepage launch polish: first viewport, header density, and premium editorial rhythm. */
.lf-page--home .lf-main-nav__cta {
  min-height: 32px;
  padding: 6px 16px 5px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(214, 179, 89, 0.96), rgba(171, 134, 54, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 6px 14px rgba(13, 13, 13, 0.16);
}

.lf-page--home .lf-live-ticker__inner {
  min-height: 38px;
}

.lf-page--home .lf-live-ticker__badge {
  padding: 4px 9px;
  font-size: 0.64rem;
  letter-spacing: 0.075em;
}

.lf-page--home .lf-live-ticker__item {
  font-size: 0.86rem;
}

.lf-page--home .lf-live-ticker__track {
  animation-duration: 44s;
  animation-delay: 3.5s;
}

.lf-page--home .lf-hero-card__content {
  border-top-color: rgba(214, 179, 89, 0.5);
}

.lf-page--home .lf-hero-card__content h1 {
  text-wrap: balance;
}

.lf-page--home .lf-hero-card__content p {
  max-width: 35ch;
}

@media (min-width: 1261px) {
  .lf-page--home .lf-brand-band__inner {
    min-height: 82px;
  }

  .lf-page--home .lf-home-top {
    padding-top: 18px;
  }

  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 1.38fr) minmax(292px, 0.58fr) minmax(264px, 0.42fr);
    gap: 18px;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: clamp(500px, 36vw, 570px);
  }

  .lf-page--home .lf-story-stack {
    gap: 9px;
  }

  .lf-page--home .lf-story-stack__item {
    padding: 9px;
    border-color: rgba(220, 207, 184, 0.68);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(251, 247, 239, 0.82));
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 11px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 88px;
    height: 76px;
    border-radius: calc(var(--lf-radius-sm) - 2px);
  }

  .lf-page--home .lf-story-stack__headline {
    margin: 3px 0 4px;
    font-size: clamp(1.1rem, 1.22vw, 1.28rem);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-stack .lf-kicker--warm {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .lf-page--home .lf-story-stack .lf-meta {
    font-size: 0.72rem;
  }

  .lf-page--home .lf-home-widgets {
    gap: 11px;
  }

  .lf-page--home .lf-home-widgets .lf-widget {
    padding: 13px;
  }

  .lf-page--home .lf-widget__header {
    margin-bottom: 10px;
  }

  .lf-page--home .lf-weather {
    margin-bottom: 8px;
  }

  .lf-page--home .lf-weather__temp {
    font-size: 2rem;
  }

  .lf-page--home .lf-market-list__item {
    padding-block: 6px;
  }

  .lf-page--home .lf-trending-list li {
    padding-block: 6px;
  }
}

@media (min-width: 1025px) and (max-width: 1260px) {
  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 104px;
    height: 86px;
  }

  .lf-page--home .lf-story-stack__headline {
    font-size: clamp(1.22rem, 2.2vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-utility-bar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.74rem;
  }

  .lf-page--home .lf-utility-bar__date {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .lf-page--home .lf-utility-bar__actions {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }

  .lf-page--home .lf-utility-pill {
    max-width: 104px;
    overflow: hidden;
    white-space: nowrap;
  }

  .lf-page--home .lf-utility-pill em {
    display: none;
  }

  .lf-page--home .lf-utility-link--search {
    flex: 0 0 auto;
  }

  .lf-page--home .lf-language-switcher {
    flex: 0 0 auto;
    gap: 7px;
  }

  .lf-page--home .lf-brand-band__inner {
    min-height: 86px;
    padding-block: 9px;
  }

  .lf-page--home .lf-wordmark {
    max-width: min(328px, 88vw);
  }

  .lf-page--home .lf-wordmark img {
    max-height: 68px;
  }

  .lf-page--home .lf-main-nav__inner {
    gap: 4px 8px;
    padding: 5px 0 7px;
  }

  .lf-page--home .lf-main-nav__quick {
    gap: 18px;
    padding-bottom: 1px;
  }

  .lf-page--home .lf-main-nav__quick-link {
    min-height: 30px;
    font-size: 0.92rem;
  }

  .lf-page--home .lf-nav-toggle {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .lf-page--home .lf-main-nav__cta {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .lf-page--home .lf-hero-card {
    margin-top: 14px;
  }

  .lf-page--home .lf-card__image--hero {
    aspect-ratio: 1 / 1.2;
  }

  .lf-page--home .lf-hero-card__content {
    inset-inline: 16px;
    bottom: 16px;
    padding-top: 9px;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 15ch;
    margin: 10px 0 10px;
    font-size: clamp(1.78rem, 7.2vw, 2.32rem);
    line-height: 0.98;
  }

  .lf-page--home .lf-hero-card__content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .lf-page--home .lf-meta--hero {
    gap: 9px;
    font-size: 0.76rem;
  }

  .lf-page--home .lf-avatar--hero {
    width: 30px;
    height: 30px;
  }

  .lf-page--home .lf-home-mobile-ticker {
    margin-top: 10px;
  }

  .lf-page--home .lf-home-mobile-ticker .lf-live-ticker {
    border-radius: var(--lf-radius-md);
  }

  .lf-page--home .lf-live-ticker__inner {
    min-height: 36px;
    padding: 5px 0;
  }

  .lf-page--home .lf-live-ticker__badge {
    padding: 4px 8px;
    font-size: 0.62rem;
  }

  .lf-page--home .lf-live-ticker__item {
    font-size: 0.78rem;
  }

  .lf-page--home .lf-story-stack {
    margin-top: 14px;
  }

  .lf-page--home .lf-story-stack__item {
    padding-bottom: 14px;
  }

  .lf-page--home .lf-story-stack__headline {
    font-size: clamp(1.42rem, 7.2vw, 1.86rem);
  }

  .lf-page--home .lf-home-signals {
    order: 4;
  }

  .lf-page--home .lf-home-news > .lf-section-heading {
    order: 5;
  }

  .lf-page--home .lf-story-grid {
    order: 6;
  }

  .lf-page--home .lf-home-briefs {
    order: 7;
  }

  .lf-page--home .lf-home-widgets {
    order: 8;
  }

  .lf-page--home .lf-home-news__rail {
    order: 9;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-utility-pill {
    max-width: 94px;
  }

  .lf-page--home .lf-utility-link--search .lf-svg-icon {
    display: none;
  }

  .lf-page--home .lf-main-nav__quick {
    gap: 16px;
  }

  .lf-page--home .lf-main-nav__quick-link {
    font-size: 0.88rem;
  }
}

/* Homepage signature module polish: each editorial product gets a distinct role. */
.lf-page--home .lf-home-signals,
.lf-page--home .lf-home-briefs,
.lf-page--home .lf-opinion-strip,
.lf-page--home .lf-radar {
  margin-top: clamp(18px, 3vw, 36px);
}

.lf-page--home .lf-signature-grid,
.lf-page--home .lf-briefs-grid {
  align-items: stretch;
  gap: clamp(16px, 2.4vw, 28px);
}

.lf-page--home .lf-signature-card {
  padding: clamp(18px, 2.4vw, 28px);
  border-color: rgba(201, 162, 75, 0.28);
  box-shadow: 0 18px 38px rgba(13, 13, 13, 0.075);
}

.lf-page--home .lf-signature-card::before {
  width: 3px;
  opacity: 0.94;
}

.lf-page--home .lf-section-heading {
  gap: 14px;
}

.lf-page--home .lf-section-heading__label {
  align-items: center;
  gap: 10px;
}

.lf-page--home .lf-section-heading__label span {
  text-wrap: balance;
}

.lf-page--home .lf-section-heading a {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lf-page--home .lf-module-summary {
  max-width: 72ch;
  margin-top: 14px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

.lf-page--home .lf-signature-card--signal {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0, rgba(201, 162, 75, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(6, 42, 32, 0.98), rgba(15, 61, 46, 0.96));
}

.lf-page--home .lf-signature-card--signal::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(255, 255, 255, 0.025),
    inset 0 0 0 72px rgba(201, 162, 75, 0.045);
}

.lf-page--home .lf-signature-card--signal .lf-signal-grid {
  gap: 12px;
  margin-top: 18px;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item {
  position: relative;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: var(--lf-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.035));
}

.lf-page--home .lf-signature-card--signal .lf-signal-item::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lf-gold);
  box-shadow: 0 0 0 6px rgba(201, 162, 75, 0.12);
}

.lf-page--home .lf-signature-card--signal .lf-signal-item h2 {
  max-width: 14ch;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.02;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item p {
  line-height: 1.55;
}

.lf-page--home .lf-signature-card--signal .lf-source-pills,
.lf-page--home .lf-signature-card--coverage .lf-source-pills {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(201, 162, 75, 0.34);
}

.lf-page--home .lf-signature-card--signal .lf-source-pill,
.lf-page--home .lf-signature-card--coverage .lf-source-pill {
  border-radius: 999px;
}

.lf-page--home .lf-signature-card--retenir {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 247, 239, 0.98)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.1), transparent 28%);
}

.lf-page--home .lf-retenir-list {
  position: relative;
  margin-top: 14px;
}

.lf-page--home .lf-retenir-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 12px;
  left: 67px;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 162, 75, 0.84), rgba(201, 162, 75, 0.08));
}

.lf-page--home .lf-retenir-list__item {
  position: relative;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top-color: rgba(220, 207, 184, 0.62);
}

.lf-page--home .lf-retenir-list__item::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 63px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: var(--lf-gold-muted);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}

.lf-page--home .lf-retenir-list__item span {
  color: var(--lf-gold-muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.lf-page--home .lf-retenir-list__item p {
  color: var(--lf-ink);
  font-family: var(--lf-font-display);
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.lf-page--home .lf-signature-card--atlas {
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 86% 8%, rgba(201, 162, 75, 0.2), transparent 28%);
}

.lf-page--home .lf-atlas-list {
  gap: 14px;
  margin-top: 16px;
}

.lf-page--home .lf-atlas-item {
  position: relative;
  grid-template-columns: minmax(126px, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(220, 207, 184, 0.74);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.lf-page--home .lf-atlas-item::before {
  content: "Brief";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(6, 42, 32, 0.92);
  color: var(--lf-white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-page--home .lf-atlas-item__image {
  height: 100%;
  min-height: 136px;
  border-radius: calc(var(--lf-radius-md) - 4px);
}

.lf-page--home .lf-atlas-item h2 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.02;
}

.lf-page--home .lf-signature-card--coverage {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 232, 0.98));
}

.lf-page--home .lf-tab-row {
  gap: 8px;
  margin: 14px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-page--home .lf-tab-row__item {
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.06);
}

.lf-page--home .lf-tab-row__item.is-active {
  background: var(--lf-green-deep);
  color: var(--lf-white);
}

.lf-page--home .lf-coverage-list {
  gap: 12px;
  margin-top: 14px;
}

.lf-page--home .lf-coverage-item {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(220, 207, 184, 0.72);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.lf-page--home .lf-signature-card--coverage .lf-coverage-item::after {
  right: 14px;
  top: 12px;
  opacity: 0.8;
}

.lf-page--home .lf-coverage-item__label {
  color: var(--lf-gold-muted);
}

.lf-page--home .lf-coverage-item h2 {
  max-width: 21rem;
  font-size: clamp(1.18rem, 1.75vw, 1.56rem);
}

.lf-page--home .lf-opinion-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3.2vw, 42px);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(6, 42, 32, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(201, 162, 75, 0.2), transparent 34%);
  color: rgba(255, 255, 255, 0.88);
}

.lf-page--home .lf-opinion-strip::after {
  content: "Opinion";
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--lf-font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.lf-page--home .lf-opinion-strip .lf-section-heading__label,
.lf-page--home .lf-opinion-strip .lf-section-heading a,
.lf-page--home .lf-opinion-strip .lf-editorial-status-badge {
  color: var(--lf-white);
}

.lf-page--home .lf-opinion-strip .lf-section-heading__icon {
  color: var(--lf-gold);
}

.lf-page--home .lf-opinion-strip__grid {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 16px;
}

.lf-page--home .lf-opinion-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.lf-page--home .lf-opinion-card h2,
.lf-page--home .lf-opinion-card p {
  color: var(--lf-white);
}

.lf-page--home .lf-opinion-card__role {
  color: var(--lf-gold);
}

.lf-page--home .lf-radar {
  padding: clamp(18px, 2.8vw, 32px);
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 232, 0.96)),
    radial-gradient(circle at 96% 8%, rgba(15, 61, 46, 0.12), transparent 34%);
}

.lf-page--home .lf-radar .lf-chip-cloud {
  margin-top: 14px;
}

.lf-page--home .lf-radar .lf-chip {
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(13, 13, 13, 0.045);
}

@media (max-width: 1024px) {
  .lf-page--home .lf-signal-grid,
  .lf-page--home .lf-opinion-strip__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-atlas-item {
    grid-template-columns: minmax(112px, 0.32fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-home-signals,
  .lf-page--home .lf-home-briefs,
  .lf-page--home .lf-opinion-strip,
  .lf-page--home .lf-radar {
    margin-top: 18px;
  }

  .lf-page--home .lf-signature-card {
    padding: 16px;
    border-radius: var(--lf-radius-md);
  }

  .lf-page--home .lf-section-heading {
    align-items: flex-start;
  }

  .lf-page--home .lf-module-summary {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-grid {
    gap: 10px;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item {
    padding: 14px;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item h2,
  .lf-page--home .lf-retenir-list__item p,
  .lf-page--home .lf-atlas-item h2,
  .lf-page--home .lf-coverage-item h2 {
    max-width: none;
    font-size: clamp(1.22rem, 6.4vw, 1.62rem);
  }

  .lf-page--home .lf-retenir-list::before {
    left: 56px;
  }

  .lf-page--home .lf-retenir-list__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
  }

  .lf-page--home .lf-retenir-list__item::after {
    left: 52px;
  }

  .lf-page--home .lf-atlas-item,
  .lf-page--home .lf-coverage-item {
    grid-template-columns: 1fr;
  }

  .lf-page--home .lf-atlas-item__image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .lf-page--home .lf-tab-row {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .lf-page--home .lf-tab-row::-webkit-scrollbar {
    display: none;
  }

  .lf-page--home .lf-opinion-strip {
    width: min(100% - 24px, var(--lf-shell));
    padding: 18px;
  }

  .lf-page--home .lf-opinion-strip__grid {
    gap: 10px;
  }

  .lf-page--home .lf-opinion-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .lf-page--home .lf-radar {
    width: min(100% - 24px, var(--lf-shell));
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-section-heading__meta {
    width: 100%;
    justify-content: space-between;
  }

  .lf-page--home .lf-opinion-card {
    grid-template-columns: 1fr;
  }
}

/* Article launch polish: authority, reading comfort, and trust rhythm. */
.lf-page--article .lf-article-layout {
  grid-template-columns: minmax(126px, 0.15fr) minmax(0, 1fr) minmax(286px, 0.34fr);
  gap: clamp(18px, 2.45vw, 34px);
}

.lf-page--article .lf-article-body,
.lf-page--article .lf-mobile-trust-pack,
.lf-page--article .lf-source-box,
.lf-page--article .lf-tag-box,
.lf-page--article .lf-read-also {
  scroll-margin-top: 132px;
}

.lf-page--article .lf-share-rail,
.lf-page--article .lf-article-sidebar {
  position: sticky;
  top: 18px;
}

.lf-page--article .lf-article-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

.lf-page--article .lf-article-header {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(220, 207, 184, 0.88);
  border-radius: var(--lf-radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 162, 75, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 242, 232, 0.96));
  box-shadow: 0 22px 52px rgba(10, 58, 47, 0.08);
}

.lf-page--article .lf-article-header::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: clamp(84px, 10vw, 132px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 162, 75, 0.12) 0 3px, transparent 4px),
    url("../images/brand/symbol-gold-on-transparent.svg") center / 78% no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.lf-page--article .lf-article-header > * {
  position: relative;
  z-index: 1;
}

.lf-page--article .lf-article-header h1 {
  max-width: 20ch;
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
}

.lf-page--article .lf-article-header__deck {
  max-width: 45ch;
  color: rgba(15, 61, 46, 0.92);
}

.lf-page--article .lf-author-meta {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(15, 61, 46, 0.11);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.lf-page--article .lf-author-meta__identity {
  min-width: min(100%, 280px);
}

.lf-page--article .lf-author-meta__info {
  flex: 1;
  justify-content: flex-end;
}

.lf-article-trust-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.lf-article-trust-ledger__item {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.1), transparent 36%);
  color: var(--lf-muted);
}

.lf-article-trust-ledger__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-radius: 50%;
  color: var(--lf-evergreen);
}

.lf-article-trust-ledger__icon .lf-svg-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.lf-article-trust-ledger__label {
  color: var(--lf-burnt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.lf-article-trust-ledger strong {
  color: var(--lf-ink);
  font-family: var(--lf-font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1;
}

.lf-article-trust-ledger em {
  color: var(--lf-muted);
  font-size: var(--lf-meta-xs);
  font-style: normal;
  line-height: 1.22;
}

.lf-page--article .lf-article-jump-nav {
  margin-top: 16px;
}

.lf-page--article .lf-article-hero {
  margin: clamp(18px, 2.4vw, 28px) 0 22px;
}

.lf-page--article .lf-article-hero img {
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0 22px 50px rgba(10, 58, 47, 0.16);
}

.lf-page--article .lf-article-hero figcaption {
  display: flex;
  justify-content: flex-start;
  padding: 10px 2px 0;
  text-align: left;
}

.lf-page--article .lf-article-body {
  max-width: min(100%, 742px);
  margin-inline: auto;
}

.lf-page--article .lf-article-section {
  margin-bottom: 34px;
}

.lf-page--article .lf-article-section h2 {
  max-width: 17ch;
  margin-bottom: 16px;
  color: var(--lf-ink);
  text-wrap: balance;
}

.lf-page--article .lf-article-section p {
  font-size: clamp(1.08rem, 1.2vw, 1.16rem);
  line-height: 1.75;
}

.lf-page--article .lf-dropcap::first-letter {
  margin-top: 0.1em;
  color: var(--lf-burnt);
}

.lf-page--article .lf-pull-quote {
  position: relative;
  margin: 34px 0;
  padding: clamp(22px, 3vw, 32px);
  border: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.62);
  border-bottom: 1px solid rgba(201, 162, 75, 0.62);
  border-radius: 0;
  background: transparent;
}

.lf-page--article .lf-pull-quote::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 0;
  color: rgba(201, 162, 75, 0.45);
  font-family: var(--lf-font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.lf-page--article .lf-pull-quote p,
.lf-page--article .lf-pull-quote cite {
  position: relative;
  z-index: 1;
}

.lf-page--article .lf-pull-quote p {
  max-width: 18ch;
  margin-left: clamp(22px, 4vw, 48px);
  color: var(--lf-evergreen);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
}

.lf-page--article .lf-data-grid {
  margin: 30px 0;
}

.lf-page--article .lf-data-card,
.lf-page--article .lf-mini-stats {
  box-shadow: 0 16px 34px rgba(10, 58, 47, 0.07);
}

.lf-page--article .lf-widget--trust {
  box-shadow: 0 14px 30px rgba(10, 58, 47, 0.07);
}

.lf-page--article .lf-widget--trust .lf-widget__header h2 {
  color: var(--lf-evergreen);
}

.lf-page--article .lf-trust-list li > span:first-child {
  color: var(--lf-ink);
  font-weight: 720;
  line-height: 1.35;
}

.lf-page--article .lf-stat-list__item {
  padding-left: 12px;
}

.lf-page--article .lf-stat-list__item strong {
  color: var(--lf-ink);
}

.lf-page--article .lf-related-sidebar__item {
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, 0.11);
  background: rgba(255, 255, 255, 0.54);
}

.lf-page--article .lf-related-sidebar__item h3 a {
  overflow-wrap: anywhere;
}

.lf-page--article .lf-source-box {
  padding: clamp(22px, 3vw, 34px);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 232, 0.98)),
    radial-gradient(circle at 93% 6%, rgba(201, 162, 75, 0.18), transparent 34%);
}

.lf-page--article .lf-source-box::before {
  z-index: 2;
  top: 20px;
  right: 20px;
  background:
    radial-gradient(circle, rgba(201, 162, 75, 0.92) 0 3px, transparent 4px),
    rgba(255, 255, 255, 0.12);
}

.lf-page--article .lf-source-box__header {
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 18px;
  padding: clamp(20px, 3vw, 30px) clamp(68px, 8vw, 92px) clamp(20px, 3vw, 30px) clamp(22px, 3vw, 34px);
  border-bottom: 3px solid var(--lf-gold);
  border-radius: var(--lf-radius-lg) var(--lf-radius-lg) 0 0;
  background:
    radial-gradient(circle at 88% 0, rgba(201, 162, 75, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(6, 42, 32, 0.98), rgba(15, 61, 46, 0.96));
}

.lf-page--article .lf-source-box__title {
  max-width: 38rem;
}

.lf-page--article .lf-source-box__header h2 {
  max-width: 14ch;
  color: var(--lf-white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

.lf-page--article .lf-source-box__header span {
  color: rgba(255, 255, 255, 0.78);
}

.lf-page--article .lf-source-box > p {
  max-width: 62ch;
  color: var(--lf-muted);
  line-height: 1.62;
}

.lf-page--article .lf-method-notes {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-page--article .lf-method-notes p {
  margin: 0 0 8px;
  color: var(--lf-muted);
  font-size: var(--lf-meta);
}

.lf-page--article .lf-read-also {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--lf-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(247, 242, 232, 0.94)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.11), transparent 34%);
}

.lf-page--article .lf-read-also .lf-card {
  border-color: rgba(15, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .lf-page--article .lf-article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  }

  .lf-page--article .lf-share-rail {
    display: none;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .lf-page--article .lf-article-layout {
    grid-template-columns: 1fr;
  }

  .lf-page--article .lf-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lf-page--article .lf-article-header {
    padding: 17px;
    border-radius: var(--lf-radius-md);
  }

  .lf-page--article .lf-article-body,
  .lf-page--article .lf-mobile-trust-pack,
  .lf-page--article .lf-source-box,
  .lf-page--article .lf-tag-box,
  .lf-page--article .lf-read-also {
    scroll-margin-top: 102px;
  }

  .lf-page--article .lf-article-header::after {
    width: 74px;
    right: 14px;
    bottom: 14px;
    opacity: 0.18;
  }

  .lf-page--article .lf-article-header h1 {
    max-width: none;
    font-size: clamp(1.92rem, 8.2vw, 2.48rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .lf-page--article .lf-article-header__deck {
    max-width: none;
  }

  .lf-page--article .lf-author-meta {
    margin-top: 14px;
    padding: 10px;
  }

  .lf-page--article .lf-article-sidebar {
    grid-template-columns: 1fr;
  }

  .lf-page--article .lf-article-trust-strip {
    display: none;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .lf-page--article .lf-article-trust-ledger__item {
    padding: 10px;
  }

  .lf-page--article .lf-article-trust-ledger__icon {
    width: 26px;
    height: 26px;
  }

  .lf-page--article .lf-article-hero img {
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: var(--lf-radius-sm);
  }

  .lf-page--article .lf-article-hero figcaption {
    padding-top: 8px;
  }

  .lf-page--article .lf-article-body {
    max-width: none;
  }

  .lf-page--article .lf-article-section {
    margin-bottom: 28px;
  }

  .lf-page--article .lf-article-section h2 {
    max-width: none;
    font-size: clamp(1.58rem, 7.5vw, 2.05rem);
  }

  .lf-page--article .lf-article-section p {
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .lf-page--article .lf-dropcap::first-letter {
    font-size: 3.35rem;
  }

  .lf-page--article .lf-pull-quote {
    margin: 26px 0;
    padding: 22px 0 22px 20px;
  }

  .lf-page--article .lf-pull-quote p {
    max-width: none;
    margin-left: 22px;
    font-size: clamp(1.35rem, 6.4vw, 1.7rem);
  }

  .lf-page--article .lf-mini-stats {
    grid-template-columns: 1fr;
  }

  .lf-page--article .lf-mini-stats__item {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.95);
  }

  .lf-page--article .lf-mini-stats__item:last-child {
    border-bottom: 0;
  }

  .lf-page--article .lf-source-box {
    padding: 18px;
  }

  .lf-page--article .lf-source-box__header {
    margin: -18px -18px 16px;
    padding: 18px 58px 18px 18px;
    border-radius: var(--lf-radius-md) var(--lf-radius-md) 0 0;
  }

  .lf-page--article .lf-source-box__header h2 {
    max-width: 12ch;
    font-size: clamp(1.58rem, 8vw, 2.2rem);
  }

  .lf-page--article .lf-source-box::before {
    top: 16px;
    right: 16px;
  }

  .lf-page--article .lf-read-also {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: 1fr;
  }
}

/* Route-wide launch polish: make discovery/search pages feel like publisher products, not generic archives. */
.lf-page--archive-signal .lf-archive-hero,
.lf-page--archive-coverage .lf-archive-hero,
.lf-page--archive-radar .lf-archive-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(201, 162, 75, 0.36);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)),
    radial-gradient(circle at 86% 18%, rgba(201, 162, 75, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    url("../images/brand/symbol-gold-on-transparent.svg") right 24px bottom 18px / 160px no-repeat;
  background-size: auto, auto, 96px 96px, 160px;
  color: var(--lf-white);
  box-shadow: 0 22px 60px rgba(6, 42, 32, 0.2);
}

.lf-page--archive-signal .lf-archive-hero::before,
.lf-page--archive-coverage .lf-archive-hero::before,
.lf-page--archive-radar .lf-archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.16), transparent 42%),
    radial-gradient(circle at 14% 90%, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.lf-page--archive-signal .lf-archive-hero .lf-kicker,
.lf-page--archive-coverage .lf-archive-hero .lf-kicker,
.lf-page--archive-radar .lf-archive-hero .lf-kicker {
  color: var(--lf-gold);
}

.lf-page--archive-signal .lf-archive-hero h1,
.lf-page--archive-coverage .lf-archive-hero h1,
.lf-page--archive-radar .lf-archive-hero h1,
.lf-page--archive-signal .lf-archive-hero p,
.lf-page--archive-coverage .lf-archive-hero p,
.lf-page--archive-radar .lf-archive-hero p {
  color: inherit;
}

.lf-page--archive-signal .lf-archive-hero p,
.lf-page--archive-coverage .lf-archive-hero p,
.lf-page--archive-radar .lf-archive-hero p {
  color: rgba(247, 247, 245, 0.76);
}

.lf-page--archive-signal .lf-archive-hero .lf-gold-button,
.lf-page--archive-coverage .lf-archive-hero .lf-gold-button,
.lf-page--archive-radar .lf-archive-hero .lf-gold-button {
  background: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-page--archive-signal .lf-archive-hero .lf-ghost-button,
.lf-page--archive-coverage .lf-archive-hero .lf-ghost-button,
.lf-page--archive-radar .lf-archive-hero .lf-ghost-button {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lf-white);
}

.lf-page--archive-atlas .lf-archive-hero {
  border-top: 4px solid var(--lf-gold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.96)),
    radial-gradient(circle at 83% 18%, rgba(201, 162, 75, 0.2), transparent 32%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 24px bottom 20px / 150px no-repeat;
  box-shadow: 0 18px 48px rgba(10, 58, 47, 0.08);
}

.lf-page--archive-atlas .lf-archive-hero h1 {
  color: var(--lf-black);
}

.lf-page--archive-atlas .lf-atlas-morning-cta {
  margin-top: 20px;
  border-color: rgba(201, 162, 75, 0.74);
  box-shadow: 0 22px 58px rgba(6, 42, 32, 0.2);
}

.lf-page--archive-atlas .lf-atlas-morning-cta__signup {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.lf-page--archive-signal .lf-discovery-status-strip article,
.lf-page--archive-coverage .lf-discovery-status-strip article,
.lf-page--archive-radar .lf-discovery-status-strip article,
.lf-page--archive-atlas .lf-discovery-status-strip article {
  border-color: rgba(201, 162, 75, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.94));
}

.lf-page--archive-signal .lf-discovery-intel-grid {
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.9fr));
}

.lf-page--archive-signal .lf-discovery-intel-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-top: 0;
  border-color: rgba(15, 61, 46, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.98)),
    radial-gradient(circle at 92% 12%, rgba(201, 162, 75, 0.14), transparent 28%);
}

.lf-page--archive-signal .lf-discovery-intel-card:first-child {
  border-color: rgba(201, 162, 75, 0.58);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)),
    radial-gradient(circle at 90% 12%, rgba(201, 162, 75, 0.2), transparent 34%);
  color: var(--lf-white);
}

.lf-page--archive-signal .lf-discovery-intel-card:first-child h2,
.lf-page--archive-signal .lf-discovery-intel-card:first-child p {
  color: inherit;
}

.lf-page--archive-signal .lf-discovery-intel-card:first-child p {
  color: rgba(247, 247, 245, 0.74);
}

.lf-page--archive-signal .lf-discovery-intel-card__icon {
  border-color: rgba(201, 162, 75, 0.64);
  background: rgba(201, 162, 75, 0.1);
  color: var(--lf-green-deep);
}

.lf-page--archive-signal .lf-discovery-intel-card:first-child .lf-discovery-intel-card__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lf-gold);
}

.lf-page--archive-signal .lf-discovery-intel-card .lf-source-pills,
.lf-page--archive-coverage .lf-discovery-angle-card .lf-source-pills {
  margin-top: 4px;
}

.lf-page--archive-signal .lf-discovery-intel-card .lf-source-pill,
.lf-page--archive-coverage .lf-discovery-angle-card .lf-source-pill {
  border-color: rgba(201, 162, 75, 0.34);
  background: rgba(201, 162, 75, 0.08);
}

.lf-page--archive-coverage .lf-discovery-angle-list {
  gap: 18px;
}

.lf-page--archive-coverage .lf-discovery-angle-card {
  position: relative;
  overflow: hidden;
  border-left: 0;
  border-color: rgba(15, 61, 46, 0.14);
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.96));
}

.lf-page--archive-coverage .lf-discovery-angle-card::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lf-gold), rgba(15, 61, 46, 0.76));
}

.lf-page--archive-coverage .lf-discovery-angle-card:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.96));
}

.lf-page--archive-coverage .lf-discovery-angle-card .lf-avatar {
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.22);
}

.lf-page--archive-radar .lf-discovery-radar-panel {
  padding: clamp(18px, 3vw, 30px);
  border-color: rgba(201, 162, 75, 0.4);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(6, 42, 32, 0.96)),
    radial-gradient(circle at 88% 14%, rgba(201, 162, 75, 0.16), transparent 30%);
}

.lf-page--archive-radar .lf-discovery-radar-panel .lf-chip {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.lf-page--archive-radar .lf-discovery-radar-panel .lf-chip:hover,
.lf-page--archive-radar .lf-discovery-radar-panel .lf-chip:focus-visible {
  border-color: rgba(201, 162, 75, 0.7);
  background: var(--lf-white);
  color: var(--lf-green-deep);
}

.lf-search-page .lf-search-form {
  max-width: none;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lf-search-page .lf-search-form input {
  min-width: 0;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 760;
}

.lf-search-page .lf-search-form button {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 22px;
}

.lf-search-page .lf-search-intent-panel article {
  min-height: 176px;
}

@media (min-width: 1025px) {
  .lf-page--archive-signal .lf-discovery-intel-card:first-child {
    grid-row: span 2;
  }

  .lf-page--archive-coverage .lf-discovery-angle-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .lf-page--archive-signal .lf-discovery-intel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lf-page--archive-signal .lf-archive-hero,
  .lf-page--archive-coverage .lf-archive-hero,
  .lf-page--archive-radar .lf-archive-hero,
  .lf-page--archive-atlas .lf-archive-hero {
    margin-top: 16px;
    padding: 24px 18px;
    background-size: auto, auto, 72px 72px, 92px;
  }

  .lf-page--archive-signal .lf-archive-hero h1,
  .lf-page--archive-coverage .lf-archive-hero h1,
  .lf-page--archive-radar .lf-archive-hero h1,
  .lf-page--archive-atlas .lf-archive-hero h1 {
    max-width: 9.8ch;
    letter-spacing: 0;
  }

  .lf-page--archive-signal .lf-discovery-intel-grid {
    grid-template-columns: 1fr;
  }

  .lf-page--archive-signal .lf-discovery-intel-card {
    min-height: auto;
    padding: 18px;
  }

  .lf-page--archive-coverage .lf-discovery-angle-card {
    padding: 18px;
  }

  .lf-page--archive-coverage .lf-discovery-angle-card::before {
    inset: 18px auto 18px 0;
  }

  .lf-page--archive-signal .lf-discovery-status-strip,
  .lf-page--archive-coverage .lf-discovery-status-strip,
  .lf-page--archive-radar .lf-discovery-status-strip,
  .lf-page--archive-atlas .lf-discovery-status-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: x proximity;
  }

  .lf-page--archive-signal .lf-discovery-status-strip article,
  .lf-page--archive-coverage .lf-discovery-status-strip article,
  .lf-page--archive-radar .lf-discovery-status-strip article,
  .lf-page--archive-atlas .lf-discovery-status-strip article {
    flex: 0 0 min(250px, 78vw);
    min-height: 72px;
    padding: 11px 13px;
    scroll-snap-align: start;
  }

  .lf-search-page .lf-search-form {
    padding: 8px;
    border-radius: 22px;
  }

  .lf-search-page .lf-search-form input,
  .lf-search-page .lf-search-form button {
    width: 100%;
    border-radius: 16px;
  }

  .lf-search-page .lf-search-form input {
    padding-inline: 16px;
  }

  .lf-search-page .lf-search-format-strip {
    gap: 8px;
  }
}

/* Trust/static page polish: these should read as editorial commitments, not administrative pages. */
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(201, 162, 75, 0.38);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)),
    radial-gradient(circle at 86% 14%, rgba(201, 162, 75, 0.2), transparent 34%),
    url("../images/brand/symbol-gold-on-transparent.svg") right 26px bottom 18px / 142px no-repeat;
  color: var(--lf-white);
  box-shadow: 0 18px 48px rgba(6, 42, 32, 0.16);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.14), transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px;
  pointer-events: none;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero__eyebrow {
  color: var(--lf-gold);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero h1,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero p {
  color: inherit;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero p {
  max-width: 58ch;
  color: rgba(247, 247, 245, 0.76);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article {
  border-color: rgba(201, 162, 75, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 247, 245, 0.96)),
    radial-gradient(circle at 100% 0, rgba(201, 162, 75, 0.11), transparent 32%);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child {
  border-color: rgba(201, 162, 75, 0.6);
  background:
    linear-gradient(135deg, rgba(201, 162, 75, 0.96), rgba(169, 132, 53, 0.96));
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child span,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child strong {
  color: var(--lf-black);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-sidebar {
  border-color: rgba(15, 61, 46, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.98));
  box-shadow: 0 16px 34px rgba(10, 58, 47, 0.055);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content {
  border-top: 4px solid rgba(201, 162, 75, 0.72);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-section h2,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-rich-content h2,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-rich-content h3 {
  color: var(--lf-green-deep);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero {
    margin-top: 26px;
    padding: 26px 20px;
    background-size: auto, auto, 96px;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 0.98;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: x proximity;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article {
    flex: 0 0 min(248px, 78vw);
    scroll-snap-align: start;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content {
    padding: 22px 18px;
  }
}

/* Stronger image treatment for public story media. */
.lf-card__media::after,
.lf-card__image-link::after,
.lf-card__media-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(201, 162, 75, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 42%, rgba(6, 42, 32, 0.22));
  opacity: 0;
  transition: opacity 240ms ease;
}

.lf-card:hover .lf-card__media::after,
.lf-card:focus-within .lf-card__media::after,
.lf-card__image-link:hover::after,
.lf-card__image-link:focus-visible::after,
.lf-card__media-link:hover::after,
.lf-card__media-link:focus-visible::after {
  opacity: 1;
}

/* Small desktop/tablet safety: never let the lead grid squeeze headlines into newspaper slivers. */
@media (min-width: 769px) and (max-width: 1260px) {
  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 132px;
    height: 104px;
  }

  .lf-page--home .lf-home-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Launch stabilization layer: preserve the current visual recovery while the brand refresh is pending. */
.lf-main-nav__cta {
  border-color: rgba(201, 162, 75, 0.68);
  background:
    linear-gradient(180deg, rgba(214, 179, 89, 0.9), rgba(188, 148, 59, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 10px rgba(10, 58, 47, 0.12);
}

.lf-main-nav__cta:hover,
.lf-main-nav__cta:focus-visible,
.lf-main-nav__cta.is-active {
  background:
    linear-gradient(180deg, rgba(226, 191, 101, 0.94), rgba(190, 150, 62, 0.92));
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 7px 16px rgba(10, 58, 47, 0.14);
}

.lf-page--home .lf-card,
.lf-page--home .lf-widget,
.lf-page--home .lf-signature-card,
.lf-page--home .lf-opinion-card,
.lf-page--home .lf-side-card {
  box-shadow: var(--lf-shadow-editorial-soft);
}

.lf-page--home .lf-card:hover,
.lf-page--home .lf-widget:hover,
.lf-page--home .lf-signature-card:hover,
.lf-page--home .lf-opinion-card:hover {
  transform: none;
}

.lf-page--home .lf-home-signals {
  margin-top: clamp(18px, 3vw, 34px);
}

.lf-page--home .lf-story-card {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--lf-border-editorial-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--home .lf-story-card .lf-card__media {
  border-radius: var(--lf-radius-sm);
  box-shadow: var(--lf-shadow-editorial-media);
}

.lf-page--home .lf-story-card .lf-card__body {
  padding: 12px 0 0;
}

.lf-page--home .lf-story-card .lf-card__body h2 {
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.02;
}

.lf-page--home .lf-story-card .lf-card__body p {
  color: rgba(34, 34, 34, 0.62);
}

.lf-page--home .lf-signature-card {
  border-color: var(--lf-border-editorial-soft);
}

.lf-page--home .lf-signature-card--signal {
  box-shadow: 0 14px 30px rgba(6, 42, 32, 0.12);
}

.lf-page--home .lf-signature-card--signal .lf-signal-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.lf-page--home .lf-signature-card--retenir,
.lf-page--home .lf-signature-card--atlas,
.lf-page--home .lf-signature-card--coverage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(251, 247, 239, 0.84));
}

.lf-page--home .lf-opinion-strip {
  box-shadow: none;
}

.lf-page--home .lf-radar {
  border-top: 1px solid var(--lf-border-editorial-soft);
  box-shadow: none;
}

.lf-page--home .lf-widget {
  border-color: rgba(15, 61, 46, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(251, 247, 239, 0.88));
}

.lf-page--home .lf-widget--dark {
  border-color: rgba(201, 162, 75, 0.34);
  background:
    linear-gradient(180deg, rgba(14, 74, 60, 0.98), rgba(6, 42, 32, 0.98)),
    url("../images/brand/symbol-gold-on-transparent.svg") right 16px bottom 16px / 98px no-repeat;
  color: var(--lf-white);
}

.lf-page--home .lf-widget--dark .lf-widget__header h2,
.lf-page--home .lf-widget--dark h3,
.lf-page--home .lf-widget--dark p,
.lf-page--home .lf-widget--dark a {
  color: var(--lf-white);
}

.lf-page--article .lf-side-card,
.lf-page--article .lf-widget,
.lf-page--article .lf-author-card,
.lf-page--article .lf-read-also,
.lf-page--article .lf-source-methodology-box {
  box-shadow: var(--lf-shadow-editorial-soft);
}

.lf-page--article .lf-article-trust-ledger__item,
.lf-page--article .lf-mobile-trust-pack,
.lf-page--article .lf-data-card,
.lf-page--article .lf-stat-card {
  box-shadow: none;
}

@media (max-width: 768px) {
  .lf-page--home .lf-home-signals {
    order: 4;
    margin-top: 18px;
  }

  .lf-page--home .lf-home-news > .lf-section-heading {
    order: 5;
  }

  .lf-page--home .lf-story-grid {
    order: 6;
  }

  .lf-page--home .lf-home-briefs {
    order: 7;
  }

  .lf-page--home .lf-home-widgets {
    order: 8;
  }

  .lf-page--home .lf-home-news__rail {
    order: 9;
  }

  .lf-page--home .lf-opinion-strip {
    order: 10;
  }

  .lf-page--home .lf-radar {
    order: 11;
  }

  .lf-page--home .lf-story-card {
    padding-top: 14px;
  }

  .lf-page--home .lf-story-card .lf-card__media {
    box-shadow: none;
  }

  .lf-page--home .lf-story-card .lf-card__body h2 {
    font-size: clamp(1.35rem, 7vw, 1.86rem);
  }

  .lf-page--article .lf-article-jump-nav {
    display: none;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: var(--lf-radius-sm);
    background: rgba(255, 255, 255, 0.58);
  }

  .lf-page--article .lf-article-trust-ledger__item {
    gap: 5px;
    min-height: 0;
    padding: 9px 6px;
    border: 0;
    border-right: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .lf-page--article .lf-article-trust-ledger__item:last-child {
    border-right: 0;
  }

  .lf-page--article .lf-article-trust-ledger__icon,
  .lf-page--article .lf-article-trust-ledger em {
    display: none;
  }

  .lf-page--article .lf-article-trust-ledger__label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .lf-page--article .lf-article-trust-ledger strong {
    font-size: clamp(0.98rem, 5vw, 1.18rem);
  }
}

@media (max-width: 420px) {
  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Signature modules restraint: keep the products, remove the widget mosaic feeling. */
.lf-page--home .lf-section-heading__icon {
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.72;
}

.lf-page--home .lf-section-heading__label {
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
}

.lf-page--home .lf-signature-card--signal,
.lf-page--home .lf-signature-card--retenir,
.lf-page--home .lf-signature-card--atlas,
.lf-page--home .lf-signature-card--coverage {
  border-radius: var(--lf-radius-sm);
}

.lf-page--home .lf-signature-card--signal {
  background:
    linear-gradient(135deg, rgba(6, 42, 32, 0.98), rgba(12, 55, 42, 0.97));
  box-shadow: 0 14px 26px rgba(6, 42, 32, 0.1);
}

.lf-page--home .lf-signature-card--signal::after {
  display: none;
}

.lf-page--home .lf-signature-card--signal .lf-signal-grid {
  gap: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.22);
}

.lf-page--home .lf-signature-card--signal .lf-signal-item {
  min-height: auto;
  padding: 18px 16px 8px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: transparent;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item:last-child {
  border-right: 0;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item::before {
  display: none;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-color: rgba(201, 162, 75, 0.32);
  background: transparent;
}

.lf-page--home .lf-signature-card--signal .lf-signal-item h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
}

.lf-page--home .lf-signature-card--signal .lf-source-pills,
.lf-page--home .lf-signature-card--coverage .lf-source-pills {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.lf-page--home .lf-signature-card--retenir {
  border-left: 3px solid rgba(201, 162, 75, 0.68);
  background: var(--lf-surface-editorial-soft);
  box-shadow: none;
}

.lf-page--home .lf-retenir-list::before,
.lf-page--home .lf-retenir-list__item::after {
  display: none;
}

.lf-page--home .lf-retenir-list__item {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
}

.lf-page--home .lf-retenir-list__item p {
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.22;
}

.lf-page--home .lf-signature-card--atlas,
.lf-page--home .lf-signature-card--coverage {
  background: var(--lf-surface-editorial-soft);
  box-shadow: none;
}

.lf-page--home .lf-atlas-list,
.lf-page--home .lf-coverage-list {
  gap: 0;
}

.lf-page--home .lf-atlas-item {
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid var(--lf-border-editorial-hairline);
  border-radius: 0;
  background: transparent;
}

.lf-page--home .lf-atlas-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.lf-page--home .lf-atlas-item::before {
  display: none;
}

.lf-page--home .lf-atlas-item__image {
  min-height: 94px;
  height: 94px;
  border-radius: var(--lf-radius-xs);
}

.lf-page--home .lf-atlas-item h2 {
  font-size: clamp(1.15rem, 1.65vw, 1.46rem);
}

.lf-page--home .lf-tab-row {
  gap: 6px;
  margin: 6px 0 4px;
  padding-bottom: 8px;
}

.lf-page--home .lf-tab-row__item {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.lf-page--home .lf-coverage-item {
  padding: 15px 0;
  border: 0;
  border-top: 1px solid var(--lf-border-editorial-hairline);
  border-radius: 0;
  background: transparent;
}

.lf-page--home .lf-coverage-item:first-child {
  border-top: 0;
}

.lf-page--home .lf-signature-card--coverage .lf-coverage-item::after {
  opacity: 0.34;
}

.lf-page--home .lf-coverage-item h2 {
  max-width: none;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
}

.lf-page--home .lf-opinion-strip {
  border-radius: var(--lf-radius-sm);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(5, 39, 30, 0.98));
}

.lf-page--home .lf-opinion-strip::after {
  display: none;
}

.lf-page--home .lf-opinion-strip__grid {
  gap: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}

.lf-page--home .lf-opinion-card {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--home .lf-opinion-card:last-child {
  border-right: 0;
}

.lf-page--home .lf-radar {
  padding: 20px 0 6px;
  border: 0;
  border-top: 1px solid var(--lf-border-editorial-soft);
  border-radius: 0;
  background: transparent;
}

.lf-page--home .lf-radar .lf-chip-cloud {
  gap: 8px;
}

.lf-page--home .lf-radar .lf-chip {
  padding: 7px 12px;
  border-color: rgba(15, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

@media (max-width: 1024px) {
  .lf-page--home .lf-signature-card--signal .lf-signal-item,
  .lf-page--home .lf-opinion-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item:last-child,
  .lf-page--home .lf-opinion-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-signature-card--signal,
  .lf-page--home .lf-signature-card--retenir,
  .lf-page--home .lf-signature-card--atlas,
  .lf-page--home .lf-signature-card--coverage,
  .lf-page--home .lf-opinion-strip {
    padding: 16px;
  }

  .lf-page--home .lf-atlas-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-atlas-item__media-link {
    display: none;
  }

  .lf-page--home .lf-atlas-item__image {
    min-height: 78px;
    height: 78px;
  }

  .lf-page--home .lf-atlas-item h2,
  .lf-page--home .lf-coverage-item h2 {
    font-size: clamp(1.2rem, 6.2vw, 1.46rem);
    line-height: 1.08;
  }

  .lf-page--home .lf-atlas-item p,
  .lf-page--home .lf-coverage-item p,
  .lf-page--home .lf-source-pills {
    display: none;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .lf-page--home .lf-opinion-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 13px 0;
  }

  .lf-page--home .lf-opinion-card .lf-avatar {
    display: none;
  }

  .lf-page--home .lf-opinion-card h2 {
    font-size: 1.16rem;
  }

  .lf-page--home .lf-opinion-card p {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .lf-page--home .lf-radar {
    padding-top: 16px;
  }
}

/* External critique pack guardrails: keep public UI stable under late CSS additions. */
@media (min-width: 769px) and (max-width: 1260px) {
  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .lf-page--home .lf-home-widgets {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .lf-page--archive-signal .lf-discovery-status-strip,
  .lf-page--archive-coverage .lf-discovery-status-strip,
  .lf-page--archive-radar .lf-discovery-status-strip,
  .lf-page--archive-atlas .lf-discovery-status-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }

  .lf-page--archive-signal .lf-discovery-status-strip article,
  .lf-page--archive-coverage .lf-discovery-status-strip article,
  .lf-page--archive-radar .lf-discovery-status-strip article,
  .lf-page--archive-atlas .lf-discovery-status-strip article {
    min-width: 0;
    min-height: auto;
    padding: 13px 14px;
  }
}

@media (max-width: 420px) {
  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--article .lf-article-trust-ledger__item {
    border-bottom: 1px solid rgba(15, 61, 46, 0.1);
  }

  .lf-page--article .lf-article-trust-ledger__item:nth-child(2n) {
    border-right: 0;
  }

  .lf-page--article .lf-article-trust-ledger__item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

.lf-live-ticker__control {
  width: auto;
  min-width: 0;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--lf-forest);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  pointer-events: auto;
  text-transform: uppercase;
}

.lf-live-ticker__control[aria-pressed="true"] {
  border-color: rgba(201, 162, 75, 0.5);
  background: rgba(201, 162, 75, 0.16);
  color: var(--lf-evergreen);
}

.lf-article-hero .lf-media-caption,
.lf-media-caption--article {
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
}

/* Launch Candidate 1.0: calmer publisher hierarchy, fewer repeated cards. */
.lf-main-nav__cta {
  min-height: 36px;
  padding: 7px 14px 6px;
  border-color: rgba(201, 162, 75, 0.72);
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.96), rgba(168, 132, 53, 0.94));
  color: var(--lf-black);
  box-shadow:
    inset 0 -2px 0 rgba(13, 13, 13, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.08);
}

.lf-main-nav__cta::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 9px;
  background: rgba(13, 13, 13, 0.52);
}

.lf-main-nav__cta:hover,
.lf-main-nav__cta:focus-visible,
.lf-main-nav__cta.is-active {
  background:
    linear-gradient(90deg, rgba(219, 184, 92, 0.98), rgba(188, 148, 59, 0.96));
  box-shadow:
    inset 0 -2px 0 rgba(13, 13, 13, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}

.lf-live-ticker__control {
  height: 28px;
  padding: 0 9px;
  border-color: rgba(201, 162, 75, 0.3);
  background: transparent;
  color: rgba(247, 247, 245, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.lf-live-ticker__control:hover,
.lf-live-ticker__control:focus-visible,
.lf-live-ticker__control[aria-pressed="true"] {
  border-color: rgba(201, 162, 75, 0.68);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lf-white);
}

.lf-live-ticker__controls {
  display: none;
}

.lf-discovery-status-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 14px;
  border-block: 1px solid rgba(220, 207, 184, 0.78);
  background: rgba(255, 255, 255, 0.34);
}

.lf-discovery-status-strip article {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid rgba(220, 207, 184, 0.72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-discovery-status-strip article:last-child {
  border-right: 0;
}

.lf-discovery-status-strip span {
  color: var(--lf-gold-muted);
  font-size: 0.68rem;
}

.lf-discovery-status-strip strong {
  color: var(--lf-green-deep);
  font-size: 0.88rem;
}

.lf-archive-layout {
  padding-top: clamp(18px, 3vw, 28px);
}

.lf-archive-grid .lf-story-card,
.lf-archive-grid--briefs .lf-story-card {
  border-radius: 4px;
  box-shadow: none;
}

.lf-archive-grid .lf-card__body {
  padding: 17px 18px 19px;
}

.lf-archive-grid .lf-card__body h2 {
  font-size: clamp(1.34rem, 2.1vw, 1.82rem);
  letter-spacing: 0;
}

.lf-archive-sidebar .lf-widget {
  border-radius: 4px;
  box-shadow: none;
}

.lf-search-intent-panel {
  gap: 0;
  border-block: 1px solid rgba(220, 207, 184, 0.8);
}

.lf-search-intent-panel article,
.lf-search-intent-panel__cta {
  min-height: auto;
  padding: 18px 18px 20px;
  border: 0;
  border-right: 1px solid rgba(220, 207, 184, 0.72);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.36) !important;
  box-shadow: none;
}

.lf-search-intent-panel article:last-child {
  border-right: 0;
}

.lf-search-intent-panel article::after {
  display: none;
}

.lf-search-intent-panel__cta {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)) !important;
}

.lf-search-intent-panel__cta h2,
.lf-search-intent-panel__cta p,
.lf-search-intent-panel__cta a {
  color: var(--lf-white);
}

.lf-discovery-opinion-grid {
  padding: 1px;
  gap: 1px;
  border: 1px solid rgba(201, 162, 75, 0.22);
  background: rgba(15, 61, 46, 0.95);
}

.lf-discovery-opinion-grid .lf-opinion-card {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(6, 42, 32, 0.92));
  box-shadow: none;
  color: var(--lf-white);
}

.lf-discovery-opinion-grid .lf-opinion-card span,
.lf-discovery-opinion-grid .lf-opinion-card__role {
  color: var(--lf-gold);
}

.lf-discovery-opinion-grid .lf-opinion-card h2,
.lf-discovery-opinion-grid .lf-opinion-card p,
.lf-discovery-opinion-grid .lf-opinion-card a {
  color: inherit;
}

.lf-discovery-opinion-grid .lf-opinion-card p {
  color: rgba(247, 247, 245, 0.76);
}

.lf-page--article .lf-source-box {
  border: 1px solid rgba(201, 162, 75, 0.32);
  box-shadow: 0 14px 34px rgba(10, 58, 47, 0.1);
}

.lf-page--article .lf-source-box__header {
  border-bottom-width: 2px;
}

.lf-page--article .lf-source-box__reader-note {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 18px 0;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-layout {
  align-items: start;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-sidebar {
  border-radius: 4px;
  box-shadow: none;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-section h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(220, 207, 184, 0.72);
}

@media (max-width: 768px) {
  .lf-main-nav__cta {
    width: fit-content;
    min-height: 42px;
    margin-top: 8px;
    padding-inline: 18px;
  }

  .lf-main-nav__cta::after {
    width: 14px;
  }

  .lf-live-ticker__controls {
    display: none;
  }

  .lf-discovery-status-strip,
  .lf-search-intent-panel {
    display: grid;
    grid-template-columns: 1fr;
    border-block: 1px solid rgba(220, 207, 184, 0.72);
  }

  .lf-discovery-status-strip article,
  .lf-search-intent-panel article,
  .lf-search-intent-panel__cta {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.64);
    padding: 13px 0;
    background: transparent !important;
  }

  .lf-discovery-status-strip article:last-child,
  .lf-search-intent-panel article:last-child {
    border-bottom: 0;
  }

  .lf-search-intent-panel__cta {
    padding: 16px 14px;
    background:
      linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(6, 42, 32, 0.98)) !important;
  }

  .lf-archive-grid,
  .lf-archive-grid--briefs,
  .lf-discovery-opinion-grid {
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .lf-discovery-opinion-grid .lf-opinion-card {
    border-radius: 4px;
  }

  .lf-page--article .lf-source-box__reader-note {
    grid-template-columns: 1fr;
  }
}

/* Premium homepage front page pass: fewer boxes, stronger density, more newspaper authority. */
@media (min-width: 1261px) and (max-width: 1359px) {
  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
  }

  .lf-page--home .lf-home-widgets {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1360px) {
  .lf-page--home .lf-home-top {
    padding-top: 16px;
  }

  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr) minmax(252px, 2.25fr);
    gap: 16px;
    align-items: stretch;
  }

  .lf-page--home .lf-hero-card {
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(6, 42, 32, 0.12);
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: clamp(560px, 40vw, 650px);
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto 30px 28px;
    max-width: min(82%, 650px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 12.5ch;
    font-size: clamp(3.05rem, 4.15vw, 4.85rem);
    line-height: 0.91;
    letter-spacing: 0;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 40ch;
    font-size: clamp(1.02rem, 1.2vw, 1.16rem);
    line-height: 1.55;
  }

  .lf-page--home .lf-story-stack {
    align-self: stretch;
    gap: 0;
    padding: 2px 0;
    border-block: 1px solid rgba(220, 207, 184, 0.82);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(251, 247, 239, 0.7));
  }

  .lf-page--home .lf-story-stack__item {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.82);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-story-stack__item:last-child {
    border-bottom: 0;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 104px;
    height: 84px;
    border-radius: 4px;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 112px;
    height: 112px;
  }

  .lf-page--home .lf-story-stack__headline {
    margin: 4px 0 6px;
    font-size: clamp(1.18rem, 1.32vw, 1.46rem);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    font-size: clamp(1.36rem, 1.62vw, 1.72rem);
  }

  .lf-page--home .lf-story-stack .lf-kicker--warm {
    font-size: 0.61rem;
    letter-spacing: 0.11em;
  }

  .lf-page--home .lf-story-stack .lf-meta {
    font-size: 0.72rem;
  }

  .lf-page--home .lf-home-widgets {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-self: stretch;
    gap: 10px;
  }

  .lf-page--home .lf-home-widgets .lf-widget {
    padding: 13px 14px;
    border-radius: 4px;
    box-shadow: none;
  }

  .lf-page--home .lf-home-widgets .lf-widget__header {
    margin-bottom: 9px;
  }

  .lf-page--home .lf-home-widgets .lf-widget__header h2 {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .lf-page--home .lf-weather {
    gap: 10px;
    margin-bottom: 8px;
  }

  .lf-page--home .lf-sun-icon {
    width: 32px;
    height: 32px;
  }

  .lf-page--home .lf-weather__temp {
    font-size: 2rem;
  }

  .lf-page--home .lf-weather p,
  .lf-page--home .lf-market-list__item,
  .lf-page--home .lf-trending-list li {
    font-size: 0.78rem;
  }

  .lf-page--home .lf-weather__forecast {
    gap: 6px;
    font-size: 0.72rem;
  }

  .lf-page--home .lf-weather__forecast div {
    padding-top: 6px;
  }

  .lf-page--home .lf-market-list,
  .lf-page--home .lf-trending-list {
    gap: 7px;
  }

  .lf-page--home .lf-market-list__item,
  .lf-page--home .lf-trending-list li {
    padding-block: 4px;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-hero-card {
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(6, 42, 32, 0.12);
  }

  .lf-page--home .lf-card__image--hero {
    aspect-ratio: 1 / 1.28;
  }

  .lf-page--home .lf-hero-card__content {
    inset-inline: 16px;
    bottom: 16px;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 14.5ch;
    font-size: clamp(1.95rem, 8.4vw, 2.6rem);
    line-height: 0.94;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 33ch;
    font-size: 0.95rem;
  }

  .lf-page--home .lf-story-stack {
    gap: 0;
    margin-top: 12px;
    padding-block: 2px;
    border-block: 1px solid rgba(220, 207, 184, 0.86);
    background: transparent;
  }

  .lf-page--home .lf-story-stack__item {
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.82);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-story-stack__item:last-child {
    border-bottom: 0;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 108px;
    height: 96px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .lf-page--home .lf-story-stack__headline {
    margin: 4px 0 6px;
    font-size: clamp(1.08rem, 4.9vw, 1.28rem);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-stack .lf-kicker--warm {
    font-size: 0.58rem;
    letter-spacing: 0.09em;
  }

  .lf-page--home .lf-story-stack .lf-meta {
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 96px;
    height: 86px;
  }

  .lf-page--home .lf-story-stack__headline {
    font-size: clamp(1rem, 5vw, 1.16rem);
  }
}

/* Launch candidate homepage refinement: reduce card fatigue and make the front page scan like a publisher. */
@media (min-width: 1025px) {
  .lf-page--home .lf-home-news__grid {
    grid-template-columns: minmax(0, 1fr) 276px;
    gap: 22px;
  }

  .lf-page--home .lf-story-grid {
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    align-items: start;
  }

  .lf-page--home .lf-story-card:first-child {
    grid-row: span 4;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__image {
    aspect-ratio: 16 / 10.2;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body h2 {
    max-width: 13ch;
    font-size: clamp(1.82rem, 2.4vw, 2.45rem);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body p {
    max-width: 38ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 11px;
    min-height: 92px;
    padding-top: 11px;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__media {
    align-self: start;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__image {
    height: 76px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-kicker--overlay {
    left: 7px;
    bottom: 7px;
    padding: 5px 7px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body {
    padding-top: 0;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body h2 {
    margin: 0 0 6px;
    font-size: clamp(0.98rem, 1.1vw, 1.16rem);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body p {
    display: none;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-meta {
    font-size: 0.7rem;
  }

  .lf-page--home .lf-home-news__rail {
    gap: 11px;
  }

  .lf-page--home .lf-home-news__rail .lf-widget {
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(8, 39, 31, 0.055);
  }

  .lf-page--home .lf-home-news__rail .lf-widget__header {
    margin-bottom: 9px;
  }

  .lf-page--home .lf-home-news__rail .lf-widget__header h2 {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .lf-page--home .lf-home-news__rail .lf-widget p,
  .lf-page--home .lf-home-news__rail .lf-widget__note {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .lf-page--home .lf-home-news__rail .lf-newsletter-form__link {
    display: none;
  }

  .lf-page--home .lf-home-news__rail .lf-stack-form {
    gap: 8px;
  }

  .lf-page--home .lf-home-news__rail .lf-stack-form input,
  .lf-page--home .lf-home-news__rail .lf-stack-form button {
    min-height: 38px;
    padding-block: 9px;
    font-size: 0.75rem;
  }

  .lf-page--home .lf-home-news__rail .lf-podcast {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .lf-page--home .lf-home-news__rail .lf-podcast__badge {
    width: 44px;
    height: 44px;
  }

  .lf-page--home .lf-home-news__rail .lf-podcast h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
  }

  .lf-page--home .lf-home-news__rail .lf-podcast a {
    margin-top: 6px;
    font-size: 0.74rem;
  }

  .lf-page--home .lf-home-news__rail .lf-video-card__image {
    aspect-ratio: 16 / 7.2;
  }

  .lf-page--home .lf-home-news__rail .lf-video-card__body {
    padding: 10px 10px 9px;
  }

  .lf-page--home .lf-home-news__rail .lf-video-card h3 {
    font-size: 1rem;
    line-height: 1.05;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-home-news > .lf-section-heading {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--lf-border-editorial-soft);
  }

  .lf-page--home .lf-story-grid {
    display: grid;
    gap: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--lf-border-editorial-soft);
  }

  .lf-page--home .lf-story-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 11px;
    padding: 13px 0;
    border-top: 1px solid var(--lf-border-editorial-hairline);
  }

  .lf-page--home .lf-story-card:first-child {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__image {
    aspect-ratio: 16 / 10.5;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body {
    padding-top: 11px;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body h2 {
    max-width: 14ch;
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 8.2vw, 2.05rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body p {
    display: block;
    max-width: 36ch;
    margin: 0 0 8px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__media {
    align-self: start;
    border-radius: 4px;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__image {
    width: 104px;
    height: 78px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-kicker--overlay {
    left: 6px;
    bottom: 6px;
    padding: 4px 6px;
    font-size: 0.52rem;
    letter-spacing: 0.07em;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body {
    padding: 0;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body h2 {
    margin: 0 0 5px;
    font-size: clamp(1.02rem, 5vw, 1.22rem);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body p {
    display: none;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-meta {
    gap: 7px;
    font-size: 0.68rem;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-media-caption {
    display: none;
  }

  .lf-page--home .lf-home-widgets,
  .lf-page--home .lf-home-news__rail {
    gap: 10px;
  }

  .lf-page--home .lf-home-widgets .lf-widget,
  .lf-page--home .lf-home-news__rail .lf-widget {
    padding: 14px;
    border-radius: 8px;
    box-shadow: none;
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter {
    border: 1px solid rgba(201, 162, 75, 0.36);
    background:
      linear-gradient(135deg, rgba(251, 247, 239, 0.94), rgba(255, 255, 255, 0.84));
  }

  .lf-page--home .lf-home-news__rail .lf-newsletter-form__link {
    display: none;
  }

  .lf-page--home .lf-podcast {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .lf-page--home .lf-podcast__badge {
    width: 54px;
    height: 54px;
  }

  .lf-page--home .lf-video-card__image {
    aspect-ratio: 16 / 8.4;
  }

  .lf-page--home .lf-footer-primary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 24px 0 20px;
  }

  .lf-page--home .lf-footer-brand,
  .lf-page--home .lf-footer-newsletter {
    grid-column: 1 / -1;
  }

  .lf-page--home .lf-footer-brand__lockup {
    margin-bottom: 10px;
  }

  .lf-page--home .lf-footer-brand p {
    max-width: 34ch;
    margin-bottom: 12px;
  }

  .lf-page--home .lf-footer-column h3,
  .lf-page--home .lf-footer-newsletter h3 {
    margin-bottom: 9px;
    font-size: 1.02rem;
  }

  .lf-page--home .lf-footer-column ul {
    gap: 5px;
  }

  .lf-page--home .lf-footer-column a,
  .lf-page--home .lf-footer-newsletter p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .lf-page--home .lf-footer-legal__inner {
    padding: 13px 0 16px;
  }
}

@media (min-width: 561px) and (max-width: 768px) {
  .lf-page--home .lf-card__image--hero {
    aspect-ratio: 16 / 10.6;
    max-height: 620px;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 16ch;
    font-size: clamp(2.2rem, 6.2vw, 3rem);
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 42ch;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-story-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__image {
    width: 92px;
    height: 72px;
  }

  .lf-page--home .lf-footer-primary__grid {
    gap: 16px 13px;
  }
}

/* Launch Candidate 1.0 mobile shell: compact footer, calmer article first screen, better tap rhythm. */
@media (max-width: 768px) {
  .lf-site-footer {
    margin-top: 32px;
    background-size: 88px;
  }

  .lf-footer-primary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
    padding: 23px 0 18px;
  }

  .lf-footer-primary__grid > * {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
  }

  .lf-footer-brand,
  .lf-footer-newsletter {
    grid-column: 1 / -1;
  }

  .lf-footer-brand__lockup {
    gap: 9px;
    margin-bottom: 9px;
  }

  .lf-footer-brand__symbol {
    width: 32px;
    height: 32px;
  }

  .lf-footer-brand__lockup img:last-child {
    width: min(142px, 45vw);
    max-height: 42px;
  }

  .lf-footer-brand p {
    max-width: 32ch;
    margin-bottom: 10px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .lf-footer-socials {
    gap: 7px;
  }

  .lf-footer-socials a {
    width: 30px;
    height: 30px;
  }

  .lf-footer-column h3,
  .lf-footer-newsletter h3 {
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .lf-footer-column ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .lf-footer-column a,
  .lf-footer-newsletter p {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .lf-footer-newsletter {
    padding: 13px;
    border: 1px solid rgba(201, 162, 75, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .lf-footer-newsletter__badge {
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 0.58rem;
  }

  .lf-footer-newsletter__proof {
    gap: 5px;
    margin: 9px 0;
  }

  .lf-footer-newsletter__proof span {
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .lf-footer-newsletter .lf-inline-form {
    gap: 7px;
  }

  .lf-footer-newsletter .lf-inline-form input,
  .lf-footer-newsletter .lf-inline-form button {
    min-height: 38px;
    padding-block: 8px;
    font-size: 0.76rem;
  }

  .lf-footer-legal__inner {
    display: grid;
    gap: 8px;
    padding: 11px 0 14px;
    font-size: 0.72rem;
  }

  .lf-footer-legal__links {
    gap: 8px 12px;
  }

  .lf-page--article .lf-breadcrumbs {
    padding-top: 10px;
  }

  .lf-page--article .lf-breadcrumbs ol {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .lf-page--article .lf-breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }

  .lf-page--article .lf-article-layout {
    gap: 14px;
  }

  .lf-page--article .lf-article-header {
    padding: 14px;
    border-radius: 10px;
  }

  .lf-page--article .lf-article-header h1 {
    font-size: clamp(1.86rem, 7.65vw, 2.34rem);
    line-height: 0.98;
  }

  .lf-page--article .lf-article-header__deck {
    margin-top: 10px;
    padding: 9px 0 9px 11px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .lf-page--article .lf-article-hero {
    margin-top: 12px;
  }

  .lf-page--article .lf-article-hero img {
    aspect-ratio: 16 / 10.4;
    max-height: 250px;
    object-fit: cover;
  }

  .lf-page--article .lf-article-hero figcaption {
    padding-top: 6px;
    font-size: 0.66rem;
    line-height: 1.34;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
  }

  .lf-page--article .lf-article-trust-ledger__item {
    gap: 4px;
    padding: 8px 5px;
    border: 0;
    border-right: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .lf-page--article .lf-article-trust-ledger__item:last-child {
    border-right: 0;
  }

  .lf-page--article .lf-article-trust-ledger__icon,
  .lf-page--article .lf-article-trust-ledger em {
    display: none;
  }

  .lf-page--article .lf-article-trust-ledger__label {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .lf-page--article .lf-article-trust-ledger strong {
    font-size: clamp(0.94rem, 4.8vw, 1.14rem);
  }

  .lf-page--article .lf-author-meta {
    gap: 9px;
    margin-top: 10px;
    padding: 9px;
  }

  .lf-page--article .lf-author-meta__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .lf-page--article .lf-meta-chip,
  .lf-page--article .lf-listen-button {
    min-height: 31px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .lf-page--article .lf-listen-button {
    grid-column: 1 / -1;
  }

  .lf-page--article .lf-mobile-trust-pack,
  .lf-page--article .lf-source-box,
  .lf-page--article .lf-read-also {
    border-radius: 10px;
  }

  .lf-page--article .lf-mobile-trust-pack {
    padding: 14px;
  }

  .lf-page--article .lf-mobile-stat-row {
    gap: 7px;
  }

  .lf-page--article .lf-mobile-stat-row article {
    padding: 9px;
  }

  .lf-page--article .lf-source-box {
    padding: 16px;
  }

  .lf-page--article .lf-source-box__header {
    margin: -16px -16px 14px;
    padding: 16px 56px 16px 16px;
  }

  .lf-page--article .lf-source-box__header h2 {
    max-width: 13ch;
    font-size: clamp(1.42rem, 7vw, 1.95rem);
  }

  .lf-page--article .lf-source-box__reader-note {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
  }

  .lf-page--article .lf-source-references--cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .lf-footer-primary__grid {
    gap: 14px 12px;
  }

  .lf-page--article .lf-article-header {
    padding: 12px;
  }

  .lf-page--article .lf-article-trust-ledger__label {
    font-size: 0.49rem;
  }

  .lf-page--article .lf-author-meta__info {
    grid-template-columns: 1fr;
  }
}

/* Real payload hardening: long headlines, slow media loads, and dense source widgets. */
.lf-hero-card__content h1,
.lf-story-card h2,
.lf-story-stack__headline,
.lf-atlas-item h2,
.lf-related-sidebar__item h3,
.lf-article-header h1 {
  overflow-wrap: break-word;
  hyphens: manual;
}

.lf-archive-grid .lf-card__media,
.lf-archive-grid--briefs .lf-card__media,
.lf-story-card .lf-card__media,
.lf-atlas-item__media-link {
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 162, 75, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(15, 61, 46, 0.12), rgba(251, 247, 239, 0.86));
}

.lf-archive-grid .lf-card__media::before,
.lf-archive-grid--briefs .lf-card__media::before,
.lf-story-card .lf-card__media::before,
.lf-atlas-item__media-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background: url("../images/brand/symbol-gold-on-transparent.svg") center / 72px no-repeat;
  pointer-events: none;
}

.lf-archive-grid .lf-card__media img,
.lf-archive-grid--briefs .lf-card__media img,
.lf-story-card .lf-card__media img,
.lf-atlas-item__media-link img {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lf-hero-card__content h1,
  .lf-story-card h2,
  .lf-story-stack__headline,
  .lf-atlas-item h2,
  .lf-related-sidebar__item h3,
  .lf-article-header h1 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 16ch;
    font-size: clamp(1.68rem, 6.85vw, 2.22rem);
    line-height: 0.98;
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-card .lf-card__body h2,
  .lf-archive-grid .lf-story-card h2,
  .lf-archive-grid--briefs .lf-story-card h2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-wrap: balance;
  }

  .lf-page--home .lf-story-stack__headline {
    -webkit-line-clamp: 3;
  }

  .lf-page--home .lf-story-card:first-child .lf-card__body h2,
  .lf-archive-grid .lf-story-card:first-child h2,
  .lf-archive-grid--briefs .lf-story-card:first-child h2 {
    -webkit-line-clamp: 4;
  }

  .lf-page--home .lf-story-card:nth-child(n+2) .lf-card__body h2,
  .lf-archive-grid .lf-story-card:nth-child(n+2) h2,
  .lf-archive-grid--briefs .lf-story-card:nth-child(n+2) h2 {
    -webkit-line-clamp: 3;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 88px;
    height: 72px;
  }

  .lf-page--article .lf-source-box__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .lf-page--article .lf-source-box__meta span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .lf-page--article .lf-source-references--cards li {
    padding: 10px;
  }

  .lf-page--article .lf-method-list {
    gap: 7px;
  }

  .lf-page--article .lf-method-list li {
    padding: 9px 0 9px 30px;
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-hero-card__content h1 {
    max-width: 15ch;
    font-size: clamp(1.58rem, 6.6vw, 2.04rem);
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 82px;
    height: 68px;
  }
}

/* Premium article reading pass: quieter tools, stronger authority, better mobile first screen. */
@media (min-width: 1181px) {
  .lf-page--article .lf-article-layout {
    grid-template-columns: 74px minmax(0, 1fr) minmax(300px, 0.34fr);
    gap: clamp(18px, 2.2vw, 32px);
  }

  .lf-page--article .lf-share-rail {
    gap: 10px;
  }

  .lf-page--article .lf-share-card {
    padding: 10px 8px;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 247, 239, 0.86));
    box-shadow: 0 10px 24px rgba(10, 58, 47, 0.07);
  }

  .lf-page--article .lf-share-card h2,
  .lf-page--article .lf-share-card__status,
  .lf-page--article .lf-share-card .lf-share-rail__icon span:not(.lf-svg-icon),
  .lf-page--article .lf-share-card .lf-side-card__tools button span:not(.lf-svg-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .lf-page--article .lf-share-card .lf-share-rail__icons,
  .lf-page--article .lf-share-card .lf-side-card__tools {
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 0;
  }

  .lf-page--article .lf-share-card .lf-side-card__tools {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 61, 46, 0.1);
  }

  .lf-page--article .lf-share-card .lf-share-rail__icon,
  .lf-page--article .lf-share-card .lf-side-card__tools button {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .lf-page--article .lf-share-card .lf-share-rail__icon .lf-svg-icon,
  .lf-page--article .lf-share-card .lf-side-card__tools button .lf-svg-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .lf-page--article .lf-side-card--summary {
    display: none;
  }
}

@media (min-width: 1360px) {
  .lf-page--article .lf-article-header {
    padding: clamp(26px, 3.1vw, 40px);
  }

  .lf-page--article .lf-article-header h1 {
    max-width: 20ch;
    font-size: clamp(2.65rem, 4vw, 4.8rem);
    line-height: 0.96;
  }
}

@media (max-width: 768px) {
  .lf-page--article .lf-article-header {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(10, 58, 47, 0.08);
  }

  .lf-page--article .lf-article-header h1 {
    max-width: none;
    font-size: clamp(1.92rem, 8.2vw, 2.48rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .lf-page--article .lf-article-header__deck {
    margin-top: 12px;
    padding: 10px 0 10px 12px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .lf-page--article .lf-article-trust-ledger {
    margin-top: 10px;
  }

  .lf-page--article .lf-article-trust-ledger__item {
    gap: 4px;
    padding: 8px;
  }

  .lf-page--article .lf-article-trust-ledger__label {
    font-size: 0.56rem;
  }

  .lf-page--article .lf-article-trust-ledger strong {
    font-size: 1.08rem;
  }

  .lf-page--article .lf-author-meta {
    margin-top: 12px;
    border-radius: 8px;
  }

  .lf-page--article .lf-author-meta__info {
    gap: 7px;
  }

  .lf-page--article .lf-meta-chip,
  .lf-page--article .lf-listen-button {
    min-height: 32px;
  }
}

/* Full-surface audit hardening: public links, discovery depth, and touch targets. */
.lf-source-references--cards span {
  color: var(--lf-evergreen);
  font-weight: 780;
}

.lf-source-references a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.lf-archive-grid--support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-archive-grid--support .lf-story-card {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
}

.lf-archive-grid--support .lf-card__media {
  min-height: 100%;
}

.lf-archive-grid--support .lf-card__body {
  padding: 16px;
}

.lf-section-heading--compact {
  margin-top: 28px;
  margin-bottom: 10px;
}

.lf-section-heading a,
.lf-search-intent-panel a,
.lf-reference-list a,
.lf-breadcrumbs a,
.lf-opinion-card h2 a,
.lf-opinion-card p a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

@media (max-width: 1024px) {
  .lf-archive-grid--support {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .lf-utility-link,
  .lf-language-switcher__link {
    min-height: 38px;
    padding: 6px 4px;
  }

  .lf-language-switcher {
    gap: 8px;
  }

  .lf-main-nav__quick-link,
  .lf-main-nav__link {
    min-height: 42px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .lf-page--home .lf-main-nav__quick-link {
    min-height: 42px;
  }

  .lf-nav-toggle,
  .lf-main-nav__cta {
    min-height: 44px;
  }

  .lf-footer-socials a,
  .lf-footer-column a,
  .lf-footer-legal__links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .lf-footer-socials a {
    min-width: 40px;
    justify-content: center;
  }

  .lf-footer-legal__links a {
    min-width: 44px;
    justify-content: center;
  }

  .lf-section-heading a,
  .lf-search-intent-panel a,
  .lf-reference-list a,
  .lf-breadcrumbs a,
  .lf-opinion-card h2 a,
  .lf-opinion-card p a,
  .lf-widget a,
  .lf-author-card a,
  .lf-newsletter-form__link {
    min-height: 38px;
  }

  .lf-source-pill,
  .lf-media-caption__source,
  .lf-source-references a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .lf-language-switcher__link {
    min-width: 40px;
    justify-content: center;
  }

  .lf-archive-grid--support {
    margin-top: 12px;
    padding-top: 14px;
  }

  .lf-archive-grid--support .lf-story-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-archive-grid--support .lf-card__body {
    padding: 15px;
  }
}

@media (max-width: 560px) {
  .lf-utility-bar__actions {
    align-items: center;
  }

  .lf-main-nav__quick-link {
    font-size: 0.96rem;
  }
}

/* Real-content launch refinement: calmer reading paths, fewer administrative surfaces. */
.lf-page--article .lf-breadcrumbs ol {
  max-width: min(100%, 760px);
}

.lf-page--article .lf-breadcrumbs li:last-child {
  display: none;
}

.lf-page--article .lf-article-hero figcaption {
  text-align: left;
}

.lf-page--article .lf-article-body {
  color: rgba(13, 13, 13, 0.94);
}

.lf-page--article .lf-article-section p {
  max-width: 68ch;
}

.lf-page--article .lf-source-box__reader-note {
  border-left: 3px solid rgba(201, 162, 75, 0.78);
}

.lf-page--archive .lf-discovery-status-strip {
  position: relative;
  width: min(100% - 32px, var(--lf-shell));
  margin: 14px auto 0;
  padding-left: 112px;
}

.lf-page--archive .lf-discovery-status-strip::before {
  content: "À parcourir";
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--lf-burnt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lf-page--archive .lf-discovery-status-strip article {
  display: grid;
  gap: 2px;
}

.lf-page--archive .lf-archive-grid .lf-story-card,
.lf-page--search .lf-archive-grid .lf-story-card {
  background: rgba(255, 255, 255, 0.52);
}

.lf-page--archive .lf-archive-grid .lf-story-card:hover,
.lf-page--search .lf-archive-grid .lf-story-card:hover {
  transform: translateY(-1px);
}

.lf-page--archive .lf-archive-grid .lf-card__body h2,
.lf-page--search .lf-archive-grid .lf-card__body h2 {
  text-wrap: balance;
}

@media (min-width: 1025px) {
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs),
  .lf-page--search .lf-archive-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 18px 20px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:first-child,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child {
    grid-row: span 2;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:first-child .lf-card__body h2,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child .lf-card__body h2 {
    max-width: 13ch;
    font-size: clamp(1.82rem, 2.45vw, 2.45rem);
    line-height: 0.97;
    letter-spacing: 0;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2),
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__image,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__image {
    height: 104px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__media,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__media {
    background: linear-gradient(180deg, #17382d, #0a211a);
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__media .lf-media-caption,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__media .lf-media-caption {
    opacity: 1;
    transform: none;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-media-caption__text,
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-media-caption__credit,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-media-caption__text,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-media-caption__credit {
    display: none;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__body,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__body {
    display: flex;
    flex-direction: column;
    padding: 13px 14px 12px 0;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__body h2,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__body h2 {
    margin: 0 0 6px;
    font-size: clamp(1rem, 1.14vw, 1.18rem);
    line-height: 1.04;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-card__body p,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 9px;
    font-size: 0.88rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card:nth-child(n+2) .lf-source-pills,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-source-pills {
    margin-top: auto;
    padding-top: 12px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .lf-page--archive .lf-archive-layout,
  .lf-page--search .lf-archive-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .lf-page--archive .lf-archive-sidebar,
  .lf-page--search .lf-archive-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .lf-page--article .lf-breadcrumbs {
    padding-top: 8px;
  }

  .lf-page--article .lf-breadcrumbs ol {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
  }

  .lf-page--article .lf-breadcrumbs li:last-child {
    display: none;
  }

  .lf-page--article .lf-breadcrumbs li:nth-last-child(2)::after {
    content: "";
  }

  .lf-page--article .lf-article-layout {
    padding-top: 8px;
  }

  .lf-page--article .lf-article-header {
    padding: 13px;
  }

  .lf-page--article .lf-article-header h1 {
    margin-top: 9px;
  }

  .lf-page--article .lf-article-hero figcaption {
    text-align: left;
  }

  .lf-page--article .lf-article-section p {
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .lf-page--archive .lf-discovery-status-strip {
    display: grid;
    gap: 0;
    padding: 0;
    border-block: 1px solid rgba(220, 207, 184, 0.78);
    background: rgba(255, 255, 255, 0.26);
  }

  .lf-page--archive .lf-discovery-status-strip::before {
    position: static;
    transform: none;
    padding: 9px 0 7px;
    border-bottom: 1px solid rgba(220, 207, 184, 0.66);
  }

  .lf-page--archive .lf-discovery-status-strip article {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.56);
  }

  .lf-page--archive .lf-discovery-status-strip article:last-child {
    border-bottom: 0;
  }

  .lf-page--archive .lf-discovery-status-strip strong {
    text-align: right;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support),
  .lf-page--search .lf-archive-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(220, 207, 184, 0.72);
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card,
  .lf-page--search .lf-archive-grid .lf-story-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 11px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.72);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:first-child,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child {
    display: block;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:first-child .lf-card__image,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child .lf-card__image {
    aspect-ratio: 16 / 10.2;
    border-radius: 7px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:nth-child(n+2) .lf-card__image,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__image {
    width: 96px;
    height: 74px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card .lf-card__body,
  .lf-page--search .lf-archive-grid .lf-story-card .lf-card__body {
    padding: 0;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:first-child .lf-card__body,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child .lf-card__body {
    padding-top: 12px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card h2,
  .lf-page--search .lf-archive-grid .lf-story-card h2 {
    margin: 0 0 6px;
    font-size: clamp(1.02rem, 4.9vw, 1.2rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:first-child h2,
  .lf-page--search .lf-archive-grid .lf-story-card:first-child h2 {
    max-width: 14ch;
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 0.98;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:nth-child(n+2) p,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) p,
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:nth-child(n+2) .lf-source-pills,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-source-pills,
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:nth-child(n+2) .lf-media-caption,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-media-caption {
    display: none;
  }
}

@media (max-width: 420px) {
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card,
  .lf-page--search .lf-archive-grid .lf-story-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card:nth-child(n+2) .lf-card__image,
  .lf-page--search .lf-archive-grid .lf-story-card:nth-child(n+2) .lf-card__image {
    width: 86px;
    height: 68px;
  }
}

/* Article experience milestone: tighter reading, less component noise, stronger trust. */
.lf-page--article .lf-article-header {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(10, 58, 47, 0.055);
}

.lf-page--article .lf-article-header h1 {
  max-width: 18ch;
  font-size: clamp(2.45rem, 4vw, 4.45rem);
  text-wrap: balance;
}

.lf-page--article .lf-article-header__deck {
  max-width: 51ch;
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
}

.lf-page--article .lf-article-trust-ledger {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
}

.lf-page--article .lf-article-trust-ledger__item {
  border: 0;
  border-right: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--article .lf-article-trust-ledger__item:last-child {
  border-right: 0;
}

.lf-page--article .lf-article-trust-ledger__icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.62);
}

.lf-page--article .lf-author-meta {
  border: 0;
  border-top: 1px solid rgba(220, 207, 184, 0.82);
  border-bottom: 1px solid rgba(220, 207, 184, 0.82);
  border-radius: 0;
  background: transparent;
}

.lf-page--article .lf-article-trust-strip {
  padding: 6px 8px;
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.lf-page--article .lf-article-trust-strip span {
  border: 0;
  background: transparent;
}

.lf-page--article .lf-article-body {
  font-size: 1rem;
}

.lf-page--article .lf-article-section + .lf-article-section {
  padding-top: 10px;
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-page--article .lf-article-section h2 {
  letter-spacing: 0;
}

.lf-page--article .lf-pull-quote {
  margin-inline: clamp(-18px, -2vw, 0px);
}

.lf-page--article .lf-data-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 239, 0.92));
}

.lf-page--article .lf-mini-stats {
  border-radius: 8px;
}

.lf-page--article .lf-source-box {
  border-radius: 12px;
  box-shadow: 0 20px 46px rgba(10, 58, 47, 0.09);
}

.lf-page--article .lf-source-box__reader-note {
  grid-template-columns: minmax(116px, 0.22fr) minmax(0, 1fr);
  align-items: start;
}

.lf-page--article .lf-method-list {
  padding-left: 0;
  list-style: none;
  counter-reset: method-step;
}

.lf-page--article .lf-method-list li {
  counter-increment: method-step;
  position: relative;
  padding: 13px 0 13px 42px;
  border-top: 1px solid rgba(220, 207, 184, 0.78);
}

.lf-page--article .lf-method-list li::before {
  content: counter(method-step, decimal-leading-zero);
  position: absolute;
  top: 13px;
  left: 0;
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.46);
  border-radius: 50%;
  color: var(--lf-evergreen);
  font-size: 0.68rem;
  font-weight: 900;
}

.lf-page--article .lf-read-also__grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 300px));
  justify-content: start;
}

.lf-page--article .lf-read-also .lf-card {
  max-width: 300px;
}

.lf-page--article .lf-read-also {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--article .lf-method-list li {
  counter-increment: none;
}

@media (min-width: 1025px) {
  .lf-page--article .lf-article-main {
    min-width: 0;
  }

  .lf-page--article .lf-article-sidebar {
    gap: 18px;
  }

  .lf-page--article .lf-related-sidebar__item {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .lf-page--article .lf-related-sidebar__media-link img {
    height: 78px;
    border-radius: 4px;
  }

  .lf-page--article .lf-related-sidebar__item h3 {
    margin-bottom: 4px;
    font-size: 1.08rem;
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .lf-page--article .lf-article-header {
    padding: 12px;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(10, 58, 47, 0.06);
  }

  .lf-page--article .lf-article-header::after {
    display: none;
  }

  .lf-page--article .lf-article-header h1 {
    font-size: clamp(1.8rem, 7.55vw, 2.26rem);
    line-height: 0.98;
  }

  .lf-page--article .lf-article-header__deck {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .lf-page--article .lf-author-meta {
    display: grid;
    gap: 8px;
    margin-top: 9px;
    padding: 9px 0;
  }

  .lf-page--article .lf-author-meta .lf-avatar {
    width: 42px;
    height: 42px;
  }

  .lf-page--article .lf-author-meta__identity {
    gap: 10px;
  }

  .lf-page--article .lf-author-meta__identity strong {
    font-size: 0.92rem;
  }

  .lf-page--article .lf-author-meta__identity > div > span:not(.lf-meta-chip) {
    font-size: 0.72rem;
  }

  .lf-page--article .lf-author-meta__info {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .lf-page--article .lf-author-meta__info::-webkit-scrollbar {
    display: none;
  }

  .lf-page--article .lf-meta-chip,
  .lf-page--article .lf-listen-button {
    flex: 0 0 auto;
    min-height: 30px;
    padding-inline: 8px;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .lf-page--article .lf-article-trust-strip {
    display: none;
  }

  .lf-page--article .lf-mobile-trust-pack {
    padding: 13px;
    border-left: 3px solid rgba(201, 162, 75, 0.72);
    box-shadow: none;
  }

  .lf-page--article .lf-mobile-trust-pack .lf-trust-list li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lf-page--article .lf-article-body {
    padding-top: 2px;
  }

  .lf-page--article .lf-article-section {
    margin-bottom: 26px;
  }

  .lf-page--article .lf-article-section h2 {
    max-width: 15ch;
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .lf-page--article .lf-pull-quote {
    margin: 26px 0;
    padding: 22px 0 22px 22px;
  }

  .lf-page--article .lf-pull-quote p {
    max-width: 16ch;
    margin-left: 20px;
    font-size: clamp(1.32rem, 7vw, 1.72rem);
  }

  .lf-page--article .lf-data-grid,
  .lf-page--article .lf-mini-stats {
    gap: 10px;
  }

  .lf-page--article .lf-data-card {
    padding: 14px;
  }

  .lf-page--article .lf-mini-stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 8px;
  }

  .lf-page--article .lf-mini-stats__item {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.88);
  }

  .lf-page--article .lf-mini-stats__item:last-child {
    border-bottom: 0;
  }

  .lf-page--article .lf-source-box {
    padding: 14px;
    border-radius: 8px;
  }

  .lf-page--article .lf-source-box__header {
    margin: -14px -14px 13px;
    padding: 16px 54px 16px 14px;
    border-radius: 8px 8px 0 0;
  }

  .lf-page--article .lf-source-box__header h2 {
    max-width: 12ch;
  }

  .lf-page--article .lf-source-box__reader-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--article .lf-method-list li {
    padding: 10px 0 10px 34px;
  }

  .lf-page--article .lf-method-list li::before {
    top: 10px;
  }

  .lf-page--article .lf-read-also {
    padding: 14px;
  }

  .lf-page--article .lf-read-also__grid,
  .lf-page--article .lf-read-also .lf-card {
    max-width: none;
  }
}

/* Launch journey polish: calmer controls, stronger funnel, less prototype chrome. */
.lf-mobile-reader-bar,
.lf-article-jump-nav,
.lf-article-trust-strip,
.lf-discovery-status-strip,
.lf-search-intent-panel {
  display: none !important;
}

.lf-main-nav__cta {
  min-height: 34px;
  padding: 6px 16px 5px;
  border-color: rgba(201, 162, 75, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(214, 179, 89, 0.92), rgba(184, 145, 58, 0.9));
  color: var(--lf-black);
  letter-spacing: 0.005em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 8px rgba(10, 58, 47, 0.14);
}

.lf-main-nav__cta::after {
  width: 12px;
  margin-left: 9px;
  opacity: 0.6;
}

.lf-main-nav__cta:hover,
.lf-main-nav__cta:focus-visible,
.lf-main-nav__cta.is-active {
  border-color: rgba(226, 191, 101, 0.78);
  background:
    linear-gradient(180deg, rgba(224, 190, 101, 0.96), rgba(194, 153, 62, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 12px rgba(10, 58, 47, 0.16);
}

.lf-page--archive-atlas .lf-archive-hero__actions {
  display: none;
}

.lf-page--archive-atlas .lf-archive-hero {
  padding: clamp(24px, 4vw, 34px);
}

.lf-page--archive-atlas .lf-archive-hero h1 {
  max-width: 11ch;
}

.lf-page--archive-atlas .lf-archive-layout,
.lf-search-page .lf-archive-layout {
  padding-top: clamp(18px, 3vw, 26px);
}

.lf-atlas-morning-cta {
  margin-top: clamp(12px, 2.2vw, 20px);
  padding: clamp(18px, 3vw, 26px);
}

.lf-atlas-morning-cta h2 {
  max-width: 18ch;
}

.lf-atlas-morning-cta .lf-stack-form {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--lf-radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.lf-atlas-morning-cta .lf-stack-form button {
  min-height: 46px;
}

.lf-page--article {
  padding-bottom: 0;
}

.lf-page--article .lf-share-card h2 {
  color: var(--lf-green-deep);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lf-page--article .lf-article-header {
  box-shadow: 0 16px 38px rgba(10, 58, 47, 0.07);
}

.lf-page--article .lf-author-meta {
  margin-top: 16px;
}

.lf-search-page .lf-archive-hero {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lf-main-nav__cta {
    min-height: 40px;
    margin-top: 5px;
    padding-inline: 17px;
    border-radius: 999px;
    font-size: 0.86rem;
  }

  .lf-page--archive-atlas .lf-archive-hero {
    margin-top: 16px;
    padding: 16px 18px 18px;
  }

  .lf-page--archive-atlas .lf-archive-hero h1 {
    margin: 8px 0 8px;
    font-size: clamp(2.35rem, 12vw, 3.05rem);
  }

  .lf-page--archive-atlas .lf-archive-hero p {
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .lf-atlas-morning-cta {
    gap: 16px;
    padding: 16px 18px;
  }

  .lf-atlas-morning-cta h2 {
    font-size: clamp(1.62rem, 7.8vw, 2rem);
  }

  .lf-atlas-morning-cta p {
    font-size: 0.92rem;
    line-height: 1.44;
  }

  .lf-atlas-morning-cta .lf-stack-form {
    padding: 10px;
  }

  .lf-page--article .lf-article-header {
    padding: 18px;
    border-radius: var(--lf-radius-md);
    box-shadow: none;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lf-page--article .lf-article-trust-ledger__item {
    padding: 11px 10px;
  }
}

@media (max-width: 420px) {
  .lf-atlas-morning-cta h2 {
    max-width: 20ch;
  }

  .lf-atlas-morning-cta .lf-stack-form input,
  .lf-atlas-morning-cta .lf-stack-form button {
    min-height: 44px;
  }
}

/* Launch Candidate 1.1: de-card the long reader journey and remove cheap placeholder chrome. */
.lf-footer-social-note {
  max-width: 38ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.lf-page--home .lf-section-heading--line {
  border-top-color: rgba(201, 162, 75, 0.36);
}

.lf-page--home .lf-signature-card,
.lf-page--home .lf-widget,
.lf-page--archive .lf-archive-hero,
.lf-search-page .lf-archive-hero {
  box-shadow: 0 12px 28px rgba(10, 58, 47, 0.055);
}

.lf-page--home .lf-signature-card--signal,
.lf-page--home .lf-signature-card--coverage,
.lf-page--home .lf-widget--dark {
  box-shadow: 0 18px 42px rgba(4, 28, 23, 0.12);
}

@media (min-width: 1025px) {
  .lf-page--home .lf-home-signals,
  .lf-page--home .lf-home-news,
  .lf-page--home .lf-home-briefs,
  .lf-page--home .lf-opinion-strip,
  .lf-page--home .lf-radar {
    margin-top: clamp(30px, 3.2vw, 46px);
  }

  .lf-page--article .lf-article-layout {
    align-items: start;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-home-signals,
  .lf-page--home .lf-home-news,
  .lf-page--home .lf-home-briefs,
  .lf-page--home .lf-opinion-strip,
  .lf-page--home .lf-radar {
    margin-top: 20px;
  }

  .lf-page--home .lf-section-heading {
    gap: 8px;
    margin-bottom: 10px;
  }

  .lf-page--home .lf-section-heading__label {
    min-width: 0;
    font-size: clamp(1.18rem, 6vw, 1.55rem);
    line-height: 1;
  }

  .lf-page--home .lf-section-heading a,
  .lf-page--home .lf-section-heading__meta a {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .lf-page--home .lf-signature-card,
  .lf-page--home .lf-widget {
    border-radius: 9px;
    box-shadow: none;
  }

  .lf-page--home .lf-signature-card--retenir,
  .lf-page--home .lf-signature-card--atlas,
  .lf-page--home .lf-opinion-card {
    border-inline: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-signature-card--retenir,
  .lf-page--home .lf-signature-card--atlas {
    padding-inline: 0;
  }

  .lf-page--home .lf-retenir-list__item {
    padding: 11px 0;
  }

  .lf-page--home .lf-atlas-item {
    padding-block: 13px;
    border-bottom: 1px solid rgba(220, 207, 184, 0.74);
  }

  .lf-page--home .lf-atlas-item:last-child {
    border-bottom: 0;
  }

  .lf-page--home .lf-atlas-item__image {
    border-radius: 5px;
  }

  .lf-page--home .lf-home-news__rail {
    gap: 9px;
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter {
    padding: 13px;
  }

  .lf-page--home .lf-widget--podcast {
    padding: 13px;
  }

  .lf-page--home .lf-widget--podcast .lf-podcast {
    display: block;
  }

  .lf-page--home .lf-widget--podcast .lf-podcast__badge {
    display: none;
  }

  .lf-page--home .lf-widget--podcast h3 {
    margin-bottom: 5px;
    font-size: 1.16rem;
  }

  .lf-page--home .lf-widget--podcast p {
    margin-bottom: 8px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .lf-page--home .lf-widget--video {
    display: none;
  }

  .lf-page--home .lf-opinion-strip {
    padding-block: 4px 0;
  }

  .lf-page--home .lf-opinion-strip__grid {
    gap: 0;
  }

  .lf-page--home .lf-opinion-card {
    padding: 13px 0;
    border-bottom: 1px solid rgba(220, 207, 184, 0.72);
  }

  .lf-page--home .lf-opinion-card:last-child {
    border-bottom: 0;
  }

  .lf-page--home .lf-radar {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-radar .lf-chip-cloud {
    gap: 7px;
  }

  .lf-page--home .lf-radar .lf-chip {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
  }

  .lf-footer-social-note {
    margin-top: 6px;
    font-size: 0.76rem;
  }

  .lf-footer-newsletter__proof {
    display: none;
  }
}

/* Live mobile polish pass: remove accidental clipped surfaces on real phones. */
@media (max-width: 768px) {
  .lf-main-nav__quick {
    padding-right: 32px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 54px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 54px), transparent 100%);
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article {
    flex: none;
    min-width: 0;
    padding: 14px 16px;
    scroll-snap-align: unset;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights strong,
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content,
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-sidebar {
    min-width: 0;
    overflow-wrap: break-word;
  }
}

.lf-page--archive-signal .lf-discovery-intel-card {
  min-width: 0;
}

.lf-page--archive-signal .lf-discovery-intel-card h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.lf-page--archive-signal .lf-discovery-intel-card:not(:first-child) h2 {
  font-size: clamp(1.48rem, 2.05vw, 1.9rem);
  line-height: 1.05;
}

/* Launch Milestone 2.0: make the first impression feel like a finished publisher. */
@media (min-width: 1025px) {
  .lf-page--home .lf-home-top {
    width: 100%;
    max-width: none;
    padding: clamp(20px, 2.4vw, 34px) 0 clamp(34px, 5vw, 72px);
    background:
      linear-gradient(180deg, rgba(5, 24, 20, 0.98) 0%, rgba(8, 47, 37, 0.98) 58%, var(--lf-paper) 58%),
      linear-gradient(90deg, rgba(201, 162, 75, 0.12), transparent 48%);
  }

  .lf-page--home .lf-home-top__grid {
    width: min(100% - 80px, 1360px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.55fr);
    gap: 0;
    align-items: stretch;
    border: 1px solid rgba(201, 162, 75, 0.28);
    background: rgba(251, 247, 239, 0.98);
    box-shadow: 0 34px 72px rgba(4, 21, 17, 0.22);
  }

  .lf-page--home .lf-hero-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lf-page--home .lf-hero-card::after {
    inset: 20px;
    border-color: rgba(201, 162, 75, 0.52);
    border-radius: 0;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: clamp(620px, 52vw, 760px);
  }

  .lf-page--home .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(3, 14, 12, 0.08) 0%, rgba(4, 21, 17, 0.5) 46%, rgba(4, 21, 17, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 21, 17, 0.72), rgba(4, 21, 17, 0.1) 58%);
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto clamp(34px, 4vw, 62px) clamp(34px, 4vw, 60px);
    max-width: min(72%, 720px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 12ch;
    font-size: clamp(4.2rem, 6.2vw, 6.85rem);
    line-height: 0.86;
    letter-spacing: 0;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 42ch;
    margin-top: 18px;
    font-size: clamp(1.08rem, 1.18vw, 1.24rem);
    line-height: 1.5;
  }

  .lf-page--home .lf-story-stack {
    align-self: stretch;
    display: grid;
    align-content: start;
    gap: 0;
    padding: clamp(22px, 2.4vw, 34px);
    border: 0;
    border-left: 1px solid rgba(201, 162, 75, 0.28);
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(255, 255, 255, 0.92)),
      linear-gradient(90deg, rgba(201, 162, 75, 0.08), transparent 42%);
  }

  .lf-page--home .lf-story-stack::before {
    content: "À suivre";
    display: block;
    margin-bottom: 16px;
    color: var(--lf-green-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .lf-page--home .lf-story-stack__item {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(220, 207, 184, 0.82);
    background: transparent;
  }

  .lf-page--home .lf-story-stack__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 112px;
    height: 92px;
    border-radius: 0;
    filter: saturate(0.92) contrast(1.04);
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 128px;
    height: 128px;
  }

  .lf-page--home .lf-story-stack__headline {
    max-width: 13ch;
    font-size: clamp(1.24rem, 1.45vw, 1.62rem);
    line-height: 0.98;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    font-size: clamp(1.58rem, 2vw, 2rem);
  }

  .lf-page--home .lf-home-widgets {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(201, 162, 75, 0.3);
    background: rgba(255, 255, 255, 0.76);
  }

  .lf-page--home .lf-home-widgets .lf-widget {
    padding: 16px 20px;
    border: 0;
    border-right: 1px solid rgba(220, 207, 184, 0.82);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-home-widgets .lf-widget:last-child {
    border-right: 0;
  }

  body.has-motion .lf-page--home .lf-hero-card__content > * {
    animation: lf-launch-rise 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  body.has-motion .lf-page--home .lf-hero-card__content > *:nth-child(2) {
    animation-delay: 90ms;
  }

  body.has-motion .lf-page--home .lf-hero-card__content > *:nth-child(3) {
    animation-delay: 170ms;
  }

  body.has-motion .lf-page--home .lf-hero-card__content > *:nth-child(4) {
    animation-delay: 240ms;
  }
}

@media (max-width: 768px) {
  .lf-utility-bar__inner {
    min-height: 30px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    padding: 4px 0;
    font-size: 0.72rem;
  }

  .lf-utility-bar__actions {
    justify-content: end;
    gap: 7px 10px;
  }

  .lf-utility-pill em,
  .lf-utility-link--search .lf-utility-link__mobile-label {
    display: none;
  }

  .lf-utility-link,
  .lf-language-switcher__link {
    min-height: 30px;
    padding-block: 2px;
  }

  .lf-brand-band__inner {
    min-height: 78px;
    padding: 8px 0;
  }

  .lf-wordmark {
    max-width: min(316px, 86vw);
  }

  .lf-wordmark img {
    max-height: 62px;
  }

  .lf-main-nav__inner {
    gap: 5px 8px;
    padding: 5px 0 8px;
  }

  .lf-main-nav__quick {
    padding-right: 38px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 68px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 68px), transparent 100%);
  }

  .lf-main-nav__quick-link {
    min-height: 34px;
    font-size: 0.92rem;
  }

  .lf-nav-toggle,
  .lf-main-nav__cta {
    min-height: 38px;
    margin-top: 3px;
  }

  .lf-page--home .lf-hero-card {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lf-page--home .lf-hero-card::after {
    inset: 14px;
    border-radius: 0;
  }

  .lf-page--home .lf-card__image--hero {
    aspect-ratio: 1 / 1.36;
  }

  .lf-page--home .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(4, 21, 17, 0.04) 0%, rgba(4, 21, 17, 0.42) 42%, rgba(4, 21, 17, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 21, 17, 0.62), rgba(4, 21, 17, 0.02) 70%);
  }

  .lf-page--home .lf-hero-card__content {
    inset-inline: 24px;
    bottom: 24px;
    max-width: calc(100% - 48px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 13.4ch;
    font-size: clamp(2.05rem, 9.1vw, 2.78rem);
    line-height: 0.92;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 31ch;
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .lf-home-mobile-ticker {
    width: 100%;
    padding-inline: 12px;
    background: var(--lf-green-deep);
  }

  .lf-home-mobile-ticker .lf-shell {
    width: 100%;
  }

  .lf-page--home .lf-story-stack {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .lf-main-nav__quick {
    gap: 13px;
    overflow: hidden;
    padding-right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .lf-main-nav__quick-link {
    font-size: 0.9rem;
  }

  .lf-main-nav__quick-link:nth-child(n+6) {
    display: none;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .lf-main-nav__quick {
    overflow: hidden;
    padding-right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .lf-main-nav__quick-link:nth-child(n+10) {
    display: none;
  }
}

@keyframes lf-launch-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Launch Milestone 2.1: fixes from the annotated mobile review. */
.lf-coverage-item__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lf-coverage-item__profile strong,
.lf-coverage-item__profile span {
  display: block;
}

.lf-coverage-item__profile strong {
  color: var(--lf-green-deep);
  font-weight: 900;
  line-height: 1.1;
}

.lf-coverage-item__profile span {
  margin-top: 4px;
  color: var(--lf-grey-text);
  font-size: 0.78rem;
  line-height: 1.28;
}

.lf-coverage-item__body {
  min-width: 0;
}

.lf-footer-column h4 {
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lf-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.lf-footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.lf-footer-socials .lf-svg-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 1025px) {
  .lf-footer-primary__grid {
    grid-template-columns: minmax(250px, 1.05fr) minmax(150px, 0.58fr) minmax(220px, 0.82fr) minmax(320px, 1.08fr);
  }

  .lf-page--home .lf-coverage-item {
    grid-template-columns: minmax(172px, 0.35fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-card__image--hero {
    aspect-ratio: 1 / 1.08;
  }

  .lf-page--home .lf-hero-card::after {
    inset: 12px;
    border-color: rgba(255, 255, 255, 0.28);
  }

  .lf-page--home .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(4, 21, 17, 0.02) 0%, rgba(4, 21, 17, 0.24) 48%, rgba(4, 21, 17, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 21, 17, 0.45), rgba(4, 21, 17, 0) 72%);
  }

  .lf-page--home .lf-hero-card__content {
    inset-inline: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-hero-card__content .lf-kicker,
  .lf-page--home .lf-hero-card__content p,
  .lf-page--home .lf-meta--hero {
    display: none;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 12.4ch;
    margin: 0;
    font-size: clamp(1.9rem, 8vw, 2.42rem);
    line-height: 0.99;
    letter-spacing: 0;
  }

  .lf-home-mobile-ticker {
    margin-top: 0;
    padding-inline: 0;
    border-top: 1px solid rgba(201, 162, 75, 0.42);
    background: var(--lf-green-deep);
  }

  .lf-home-mobile-ticker .lf-live-ticker {
    border-radius: 0;
    border-bottom: 1px solid rgba(201, 162, 75, 0.28);
  }

  .lf-page--home .lf-live-ticker__inner {
    padding-inline: 12px;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 92px;
    height: 74px;
    border-radius: 6px;
  }

  .lf-page--home .lf-story-stack__headline {
    font-size: clamp(1.18rem, 5.7vw, 1.58rem);
    line-height: 1.08;
  }

  .lf-page--home .lf-signature-card::before {
    display: none;
  }

  .lf-page--home .lf-signature-card--signal,
  .lf-page--home .lf-signature-card--retenir,
  .lf-page--home .lf-signature-card--atlas,
  .lf-page--home .lf-signature-card--coverage,
  .lf-page--home .lf-opinion-strip,
  .lf-page--home .lf-radar {
    padding: 20px 16px 20px 20px;
    border-left: 3px solid rgba(201, 162, 75, 0.72);
  }

  .lf-page--home .lf-signature-card--signal {
    border-left-color: var(--lf-gold);
  }

  .lf-page--home .lf-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }

  .lf-page--home .lf-section-heading__label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: clamp(1.34rem, 6.7vw, 1.86rem);
    line-height: 1.04;
  }

  .lf-page--home .lf-section-heading__icon,
  .lf-page--home .lf-section-heading__label img {
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    opacity: 0.9;
  }

  .lf-page--home .lf-section-heading a,
  .lf-page--home .lf-section-heading__meta a {
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(201, 162, 75, 0.34);
    border-radius: 999px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .lf-page--home .lf-section-heading__meta {
    width: 100%;
    justify-content: flex-start;
  }

  .lf-page--home .lf-module-summary {
    margin: 8px 0 16px;
    padding-left: 12px;
    border-left: 2px solid rgba(201, 162, 75, 0.58);
    font-size: 0.98rem;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 14px 0;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item h2 {
    align-self: end;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item p {
    grid-column: 2;
  }

  .lf-page--home .lf-retenir-list__item {
    grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .lf-page--home .lf-retenir-list__item span {
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: normal;
  }

  .lf-page--home .lf-retenir-list__item p {
    font-size: clamp(1.05rem, 5.4vw, 1.36rem);
    line-height: 1.24;
  }

  .lf-page--home .lf-atlas-item,
  .lf-page--home .lf-coverage-item {
    grid-template-columns: minmax(0, 1fr);
    padding: 15px 0;
  }

  .lf-page--home .lf-signature-card--coverage .lf-coverage-item::after {
    right: 0;
    top: 14px;
    font-size: 1.55rem;
    opacity: 0.18;
  }

  .lf-page--home .lf-coverage-item__profile .lf-avatar {
    width: 50px;
    height: 50px;
  }

  .lf-page--home .lf-coverage-item__profile span {
    max-width: 25ch;
  }

  .lf-page--home .lf-home-news__rail {
    gap: 16px;
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter {
    padding: 20px;
    border: 1px solid rgba(201, 162, 75, 0.34);
    background:
      radial-gradient(circle at 88% 0, rgba(201, 162, 75, 0.16), transparent 28%),
      linear-gradient(135deg, rgba(6, 42, 32, 0.98), rgba(15, 61, 46, 0.96));
    color: rgba(255, 255, 255, 0.9);
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter h2 {
    color: var(--lf-white);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter p,
  .lf-page--home .lf-home-news__rail .lf-widget--newsletter .lf-widget__note,
  .lf-page--home .lf-home-news__rail .lf-widget--newsletter .lf-newsletter-form__status {
    color: rgba(255, 255, 255, 0.72);
  }

  .lf-page--home .lf-home-news__rail .lf-footer-newsletter__proof {
    display: flex;
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter .lf-stack-form input {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.94);
    color: var(--lf-black);
  }

  .lf-page--home .lf-home-news__rail .lf-widget--newsletter .lf-stack-form button {
    border-color: rgba(13, 13, 13, 0.12);
    background: linear-gradient(180deg, #e0bb4d, var(--lf-gold) 58%, var(--lf-gold-muted));
    color: var(--lf-black);
  }

  .lf-footer-primary__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 24px 20px;
    padding-top: 26px;
  }

  .lf-footer-brand,
  .lf-footer-newsletter {
    grid-column: 1 / -1;
  }

  .lf-footer-brand__lockup img:last-child {
    width: min(230px, 70vw);
    max-height: 62px;
  }

  .lf-footer-brand p {
    max-width: 31ch;
  }

  .lf-footer-socials {
    margin-top: 12px;
  }

  .lf-footer-column h4 {
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .lf-footer-column ul {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lf-page--article .lf-author-meta {
    gap: 12px;
    padding: 12px 0;
  }

  .lf-page--article .lf-author-meta__info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .lf-page--article .lf-meta-chip,
  .lf-page--article .lf-listen-button {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 0.76rem;
    line-height: 1.25;
    white-space: normal;
  }

  .lf-page--article .lf-listen-button {
    justify-content: center;
  }

  .lf-page--article .lf-mobile-trust-pack {
    padding: 14px 14px 14px 16px;
    border-left: 3px solid rgba(201, 162, 75, 0.74);
  }

  .lf-page--article .lf-mobile-trust-pack .lf-trust-list li {
    min-width: 0;
    padding: 12px 0 12px 38px;
  }

  .lf-page--article .lf-mobile-trust-pack .lf-trust-list li:first-child {
    padding-top: 12px;
  }

  .lf-page--article .lf-mobile-trust-pack .lf-trust-list li::before {
    top: 12px;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--lf-paper);
  }

  .lf-page--article .lf-mobile-trust-pack .lf-trust-list li > span:first-child {
    display: block;
    min-width: 0;
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    line-height: 1.34;
    overflow-wrap: break-word;
  }
}

@media (max-width: 420px) {
  .lf-page--home .lf-hero-card__content h1 {
    font-size: clamp(1.76rem, 7.7vw, 2.2rem);
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 86px;
    height: 70px;
  }

  .lf-footer-primary__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }
}

/* Launch-critical override kept last so the newsletter hero stays readable after cache rotations. */
.lf-page--newsletter .lf-newsletter-product-hero h1 {
  color: var(--lf-white);
  letter-spacing: 0;
}

/* Launch editorial polish: remove decorative framing from the homepage lead package. */
@media (min-width: 901px) {
  .lf-page--home .lf-home-top {
    padding-top: clamp(18px, 2vw, 30px);
  }

  .lf-page--home .lf-home-top__grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.58fr);
    gap: 0;
    align-items: start;
    border-top: 1px solid rgba(201, 162, 75, 0.34);
    border-bottom: 1px solid rgba(201, 162, 75, 0.24);
    background: var(--lf-paper);
  }

  .lf-page--home .lf-hero-card {
    align-self: start;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: var(--lf-green-deep);
    box-shadow: none;
  }

  .lf-page--home .lf-hero-card::after {
    display: none;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: clamp(480px, 39vw, 540px);
    aspect-ratio: 16 / 10;
    filter: saturate(0.96) contrast(1.03) brightness(0.84);
  }

  .lf-page--home .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(4, 21, 17, 0.03) 0%, rgba(4, 21, 17, 0.28) 48%, rgba(4, 21, 17, 0.92) 100%),
      linear-gradient(90deg, rgba(4, 21, 17, 0.68), rgba(4, 21, 17, 0.1) 62%);
  }

  .lf-page--home .lf-hero-card__content {
    inset: clamp(74px, 8vw, 118px) clamp(28px, 3.6vw, 52px) auto;
    max-width: min(78%, 840px);
    padding-top: 0;
    border-top: 0;
    text-shadow: 0 2px 18px rgba(3, 14, 12, 0.48);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 16.8ch;
    margin-block: 12px 14px;
    font-size: clamp(2.7rem, 3.55vw, 4.15rem);
    line-height: 0.97;
    letter-spacing: 0;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 42ch;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.05vw, 1.14rem);
    line-height: 1.55;
  }

  .lf-page--home .lf-story-stack {
    align-self: stretch;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: clamp(480px, 39vw, 540px);
    overflow: hidden;
    padding: clamp(22px, 2.2vw, 32px);
    border: 0;
    border-left: 1px solid rgba(201, 162, 75, 0.28);
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(255, 255, 255, 0.94));
  }

  .lf-page--home .lf-story-stack::before {
    content: "À suivre";
    display: block;
    margin-bottom: 14px;
    color: var(--lf-green-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .lf-page--home .lf-story-stack__item {
    padding: 17px 0;
    border: 0;
    border-top: 1px solid rgba(220, 207, 184, 0.82);
    background: transparent;
    box-shadow: none;
  }

  .lf-page--home .lf-story-stack__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-story-stack__item:nth-of-type(n+3) {
    display: none;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .lf-page--home .lf-story-stack__thumb,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 104px;
    height: 88px;
    border-radius: 0;
    filter: saturate(0.94) contrast(1.04);
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    max-width: none;
    margin: 5px 0 6px;
    font-size: clamp(1.04rem, 1.12vw, 1.26rem);
    line-height: 1.04;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    -webkit-line-clamp: 5;
    font-size: clamp(1.1rem, 1.22vw, 1.38rem);
  }

  .lf-page--home .lf-home-widgets {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-hero-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lf-page--home .lf-hero-card::after {
    display: none;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: clamp(388px, 105vw, 470px);
    aspect-ratio: 1 / 1.08;
    filter: saturate(0.96) contrast(1.04) brightness(0.86);
  }

  .lf-page--home .lf-hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(4, 21, 17, 0.03) 0%, rgba(4, 21, 17, 0.28) 48%, rgba(4, 21, 17, 0.94) 100%),
      linear-gradient(90deg, rgba(4, 21, 17, 0.48), rgba(4, 21, 17, 0) 72%);
  }

  .lf-page--home .lf-hero-card__content {
    inset-inline: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 13.5ch;
    margin: 0;
    font-size: clamp(2rem, 8.25vw, 2.46rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-stack {
    margin-top: 0;
    padding: 10px 12px 14px;
    background: var(--lf-paper);
  }

  .lf-page--home .lf-story-stack__item {
    padding: 14px 0;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 86px;
    height: 72px;
    border-radius: 0;
  }

  .lf-page--home .lf-story-stack__headline {
    margin: 3px 0 5px;
    font-size: clamp(1.12rem, 5.2vw, 1.42rem);
    line-height: 1.1;
    letter-spacing: 0;
  }
}

/* Launch editorial polish: flatten utility-route heroes that felt overly promotional. */
.lf-search-page .lf-archive-hero,
.lf-page--archive .lf-archive-hero,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero {
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.36);
  border-bottom: 1px solid rgba(220, 207, 184, 0.76);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 239, 0.98));
  color: var(--lf-black);
  box-shadow: none;
}

.lf-page--archive-signal .lf-archive-hero::before,
.lf-page--archive-coverage .lf-archive-hero::before,
.lf-page--archive-radar .lf-archive-hero::before,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero::before {
  display: none;
}

.lf-search-page .lf-archive-hero .lf-kicker,
.lf-page--archive .lf-archive-hero .lf-kicker {
  color: var(--lf-white);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero__eyebrow {
  color: var(--lf-green-deep);
}

.lf-search-page .lf-archive-hero h1,
.lf-page--archive .lf-archive-hero h1,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero h1 {
  max-width: 13.5ch;
  color: var(--lf-black);
  letter-spacing: 0;
}

.lf-search-page .lf-archive-hero p,
.lf-page--archive .lf-archive-hero p,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero p {
  color: var(--lf-muted);
}

.lf-page--archive .lf-archive-hero .lf-gold-button {
  background: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-page--archive .lf-archive-hero .lf-ghost-button {
  border-color: rgba(15, 61, 46, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--lf-green-deep);
}

.lf-search-page .lf-search-form {
  border-color: rgba(15, 61, 46, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.lf-search-page .lf-search-form input {
  border-color: rgba(15, 61, 46, 0.14);
  background: var(--lf-white);
  color: var(--lf-black);
}

.lf-search-page .lf-search-form input::placeholder {
  color: rgba(22, 24, 24, 0.58);
}

.lf-search-page .lf-search-form button {
  background: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-search-page .lf-search-suggestions span,
.lf-search-page .lf-search-format-strip > span {
  color: var(--lf-grey-text);
}

.lf-search-page .lf-search-suggestions button,
.lf-search-page .lf-search-format-strip a {
  border-color: rgba(15, 61, 46, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lf-green-deep);
}

.lf-search-page .lf-search-suggestions button:hover,
.lf-search-page .lf-search-suggestions button:focus-visible,
.lf-search-page .lf-search-format-strip a:hover,
.lf-search-page .lf-search-format-strip a:focus-visible {
  border-color: rgba(201, 162, 75, 0.68);
  background: var(--lf-green-deep);
  color: var(--lf-white);
}

@media (min-width: 1025px) {
  .lf-search-page .lf-archive-hero,
  .lf-page--archive .lf-archive-hero {
    padding-block: clamp(30px, 4vw, 54px);
  }

  .lf-search-page .lf-archive-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.46fr);
  }
}

@media (max-width: 768px) {
  .lf-search-page .lf-archive-hero,
  .lf-page--archive .lf-archive-hero,
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero {
    margin-top: 16px;
    padding: 22px 0 24px;
  }

  .lf-search-page .lf-archive-hero h1,
  .lf-page--archive .lf-archive-hero h1,
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-hero h1 {
    max-width: 12.5ch;
    margin-block: 9px 10px;
    font-size: clamp(2.2rem, 10.4vw, 2.95rem);
    line-height: 0.95;
    letter-spacing: 0;
  }

  .lf-search-page .lf-archive-hero h1 {
    max-width: 11.5ch;
  }

  .lf-search-page .lf-search-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .lf-search-page .lf-search-form input,
  .lf-search-page .lf-search-form button {
    border-radius: 8px;
  }

  .lf-search-page .lf-archive-hero {
    margin-top: 10px;
    padding: 16px 0 18px;
  }

  .lf-search-page .lf-archive-hero h1 {
    max-width: 10.5ch;
    margin-block: 7px 8px;
    font-size: clamp(1.94rem, 9vw, 2.44rem);
    line-height: 0.98;
  }

  .lf-search-page .lf-archive-hero p {
    max-width: 31ch;
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .lf-search-page .lf-search-form {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 10px;
    margin-top: 8px;
  }

  .lf-search-page .lf-search-form input,
  .lf-search-page .lf-search-form button {
    min-height: 52px;
    width: 100%;
    padding-inline: 12px;
  }

  .lf-search-page .lf-search-suggestions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin-top: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .lf-search-page .lf-search-suggestions::-webkit-scrollbar {
    display: none;
  }

  .lf-search-page .lf-search-suggestions span {
    flex: 0 0 auto;
    align-self: center;
    width: auto;
    min-width: auto;
  }

  .lf-search-page .lf-search-suggestions button {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .lf-search-page .lf-search-format-strip {
    display: none;
  }
}

/* Launch editorial polish: remove campaign-style chrome from utility CTAs and briefing signup surfaces. */
.lf-page--archive .lf-archive-hero__actions {
  align-items: center;
  gap: 12px 20px;
  margin-top: 20px;
}

.lf-page--archive .lf-archive-hero .lf-gold-button,
.lf-page--archive .lf-archive-hero .lf-ghost-button {
  min-height: 38px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid rgba(201, 162, 75, 0.72);
  border-radius: 0;
  background: transparent;
  color: var(--lf-green-deep);
  box-shadow: none;
}

.lf-page--archive .lf-archive-hero .lf-gold-button:hover,
.lf-page--archive .lf-archive-hero .lf-gold-button:focus-visible,
.lf-page--archive .lf-archive-hero .lf-ghost-button:hover,
.lf-page--archive .lf-archive-hero .lf-ghost-button:focus-visible {
  border-color: var(--lf-green-deep);
  background: transparent;
  color: var(--lf-black);
  transform: none;
}

.lf-atlas-morning-cta {
  border-inline: 0;
  border-color: rgba(201, 162, 75, 0.36);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 247, 239, 0.98));
  color: var(--lf-black);
  box-shadow: none;
}

.lf-atlas-morning-cta .lf-kicker {
  color: var(--lf-green-deep);
}

.lf-atlas-morning-cta h2 {
  color: var(--lf-black);
  letter-spacing: 0;
}

.lf-atlas-morning-cta p,
.lf-atlas-morning-cta .lf-widget__note,
.lf-atlas-morning-cta .lf-newsletter-form__status {
  color: var(--lf-muted);
}

.lf-page--archive-atlas .lf-atlas-morning-cta__signup,
.lf-atlas-morning-cta .lf-stack-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lf-atlas-morning-cta .lf-stack-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.lf-atlas-morning-cta .lf-stack-form input {
  min-height: 48px;
  border-color: rgba(15, 61, 46, 0.16);
  border-radius: 8px;
  background: var(--lf-white);
  color: var(--lf-black);
}

.lf-atlas-morning-cta .lf-stack-form input::placeholder {
  color: rgba(22, 24, 24, 0.54);
}

.lf-atlas-morning-cta .lf-stack-form button {
  min-height: 48px;
  border-radius: 8px;
  box-shadow: none;
}

.lf-atlas-morning-cta .lf-atlas-funnel-proof span {
  min-height: 62px;
  border-color: rgba(201, 162, 75, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--lf-muted);
}

.lf-atlas-morning-cta .lf-atlas-funnel-proof strong {
  color: var(--lf-burnt);
}

.lf-newsletter-product-hero {
  background: linear-gradient(135deg, rgba(10, 58, 47, 0.98), rgba(14, 74, 60, 0.96));
}

.lf-newsletter-product-hero__inner {
  min-height: 0;
}

.lf-newsletter-product-hero .lf-hero-form input,
.lf-newsletter-product-hero .lf-hero-form button {
  border-radius: 8px;
  box-shadow: none;
}

.lf-newsletter-preview-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(247, 242, 232, 0.94));
  box-shadow: none;
}

/* Launch trust-page polish: quick facts should read like an editorial masthead strip, not dashboard cards. */
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights {
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 75, 0.34);
  border-bottom: 1px solid rgba(220, 207, 184, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(251, 247, 239, 0.78));
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child {
  min-height: 86px;
  padding: 17px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article + article {
  border-left: 1px solid rgba(220, 207, 184, 0.74);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights span,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child span {
  margin-bottom: 7px;
  color: var(--lf-burnt);
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights strong,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child strong {
  color: var(--lf-green-deep);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

@media (max-width: 768px) {
  .lf-page--archive .lf-archive-hero__actions {
    gap: 8px 16px;
  }

  .lf-page--archive .lf-archive-hero .lf-gold-button,
  .lf-page--archive .lf-archive-hero .lf-ghost-button {
    min-height: 36px;
    width: fit-content;
  }

  .lf-atlas-morning-cta .lf-stack-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-atlas-morning-cta .lf-stack-form button {
    width: 100%;
  }

  .lf-newsletter-product-hero h1 {
    font-size: clamp(2.3rem, 10.2vw, 3.28rem);
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights {
    gap: 0;
    margin-top: 14px;
    padding-block: 2px;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article,
  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child {
    min-height: 0;
    padding: 13px 0;
  }

  .lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-highlights article + article {
    border-top: 1px solid rgba(220, 207, 184, 0.68);
    border-left: 0;
  }
}

/* Launch mobile polish: keep search as a real visible tap target in the compact utility bar. */
@media (max-width: 768px) {
  .lf-utility-link--search {
    justify-content: center;
    width: 34px;
    min-width: 34px;
    padding-inline: 0;
  }

  .lf-utility-link--search .lf-svg-icon {
    display: block;
    width: 1rem;
    height: 1rem;
  }

  .lf-utility-link--search .lf-utility-link__mobile-label {
    display: none;
  }
}

/* Deploy marker: refresh WordPress launch assets 2026-05-28. */

/* Launch-critical Atlas Morning Brief contrast guard. */
.lf-page--newsletter .lf-newsletter-product-hero h1 {
  color: var(--lf-white) !important;
  text-shadow: none !important;
}

.lf-page--newsletter .lf-newsletter-product-hero p,
.lf-page--newsletter .lf-newsletter-product-hero .lf-widget__note,
.lf-page--newsletter .lf-newsletter-product-hero .lf-newsletter-form__status {
  color: rgba(255, 255, 255, 0.86) !important;
}

.lf-page--newsletter .lf-newsletter-product-hero .lf-non-news-hero__eyebrow {
  color: var(--lf-gold) !important;
}

.lf-page--newsletter .lf-newsletter-product-hero .lf-hero-form input {
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--lf-white) !important;
}

.lf-page--newsletter .lf-newsletter-product-hero .lf-hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.72) !important;
}

.lf-page--newsletter .lf-newsletter-product-hero .lf-hero-form button {
  background: var(--lf-gold) !important;
  color: var(--lf-evergreen) !important;
}

/* Deploy marker: avoid placeholder opinion article links 2026-05-28. */

/* Launch media honesty: generated/fallback visuals should not read as unlabelled news photography. */
.lf-media-surface--ai-generated,
.lf-media-surface--brand-fallback {
  position: relative;
}

.lf-hero-card__media-badge,
.lf-article-hero__media-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(214, 179, 89, 0.46);
  border-radius: 999px;
  background: rgba(4, 33, 27, 0.78);
  color: var(--lf-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.lf-hero-card__media-badge {
  top: 16px;
  left: 16px;
}

.lf-article-hero__media-badge {
  top: 14px;
  left: 14px;
}

.lf-media-surface--ai-generated .lf-card__image--hero,
.lf-media-surface--brand-fallback .lf-card__image--hero {
  filter: saturate(0.9) contrast(0.96);
}

@media (max-width: 768px) {
  .lf-hero-card__media-badge,
  .lf-article-hero__media-badge {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.6rem;
  }
}

/* Launch homepage polish: turn utility widgets into quiet editorial repères. */
.lf-page--home .lf-home-widgets {
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 75, 0.34);
  border-bottom: 1px solid rgba(220, 207, 184, 0.78);
  background: rgba(255, 255, 255, 0.46);
}

.lf-page--home .lf-home-widgets .lf-widget {
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--home .lf-home-widgets .lf-widget:hover {
  transform: none;
  box-shadow: none;
}

.lf-page--home .lf-home-widgets .lf-widget + .lf-widget {
  border-top: 1px solid rgba(220, 207, 184, 0.72);
}

.lf-page--home .lf-home-widgets .lf-widget__header {
  margin-bottom: 10px;
}

.lf-page--home .lf-home-widgets .lf-widget__header h2 {
  color: var(--lf-green-deep);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.lf-page--home .lf-weather {
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.lf-page--home .lf-sun-icon {
  width: 26px;
  height: 26px;
  border-width: 1px;
}

.lf-page--home .lf-sun-icon::before,
.lf-page--home .lf-sun-icon::after {
  display: none;
}

.lf-page--home .lf-weather__temp {
  font-size: 1.9rem;
}

.lf-page--home .lf-weather__forecast {
  gap: 0;
  border-top: 1px solid rgba(220, 207, 184, 0.68);
}

.lf-page--home .lf-weather__forecast div {
  padding-top: 7px;
  border-top: 0;
}

.lf-page--home .lf-market-list,
.lf-page--home .lf-trending-list {
  gap: 0;
}

.lf-page--home .lf-market-list__item,
.lf-page--home .lf-trending-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(220, 207, 184, 0.66);
}

.lf-page--home .lf-market-list__item:first-child,
.lf-page--home .lf-trending-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.lf-page--home .lf-trending-list li::before {
  min-width: 1.2rem;
  color: var(--lf-burnt);
  font-family: var(--lf-font-body);
  font-size: 0.86rem;
  font-weight: 800;
}

.lf-chip-cloud:not(:has(.lf-chip)) {
  display: none;
}

@media (min-width: 769px) {
  .lf-page--home .lf-home-widgets {
    padding-inline: 16px;
  }
}

@media (min-width: 1025px) {
  .lf-page--home .lf-home-top__grid {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .lf-page--home .lf-hero-card {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
  }

  .lf-page--home .lf-hero-card .lf-card__image-link,
  .lf-page--home .lf-hero-card .lf-card__image--hero {
    height: 100%;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    aspect-ratio: auto;
  }

  .lf-page--home .lf-story-stack {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    border-bottom: 0;
  }

  .lf-page--home .lf-home-widgets {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr);
    align-self: stretch;
    padding-inline: 0;
    border-top: 1px solid rgba(201, 162, 75, 0.3);
    border-bottom: 0;
    border-left: 1px solid rgba(201, 162, 75, 0.28);
  }

  .lf-page--home .lf-home-widgets .lf-widget {
    padding: 14px 24px;
    border-right: 0;
  }
}

/* Launch polish: make story teasers read like editorial links, not cramped promo cards. */
/* Launch polish: refine homepage rail teaser rhythm. */
.lf-page--home .lf-story-stack__headline {
  text-wrap: pretty;
}

@media (min-width: 901px) {
  .lf-page--home .lf-story-stack {
    padding: clamp(22px, 2.2vw, 30px);
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__link {
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 88px;
    height: 74px;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 100%;
    height: clamp(84px, 6.4vw, 104px);
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    -webkit-line-clamp: 3;
    font-size: clamp(0.98rem, 0.98vw, 1.12rem);
    line-height: 1.12;
  }

  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    -webkit-line-clamp: 4;
    font-size: clamp(1.04rem, 1.04vw, 1.18rem);
    line-height: 1.13;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-story-stack {
    padding: 12px 14px 16px;
  }

  .lf-page--home .lf-story-stack__link {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
  }

  .lf-page--home .lf-story-stack__thumb {
    width: 98px;
    height: 80px;
  }

  .lf-page--home .lf-story-stack__headline {
    -webkit-line-clamp: 4;
    font-size: clamp(1rem, 4.8vw, 1.22rem);
    line-height: 1.08;
  }
}

/* Launch polish: sober article lead, less campaign-style framing. */
.lf-page--article .lf-article-header {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 239, 0.7));
  box-shadow: none;
}

.lf-page--article .lf-article-header h1 {
  text-wrap: balance;
}

@media (max-width: 768px) {
  .lf-page--article .lf-article-header {
    margin-inline: -12px;
    padding: 22px 18px 18px;
  }

  .lf-page--article .lf-article-header h1 {
    font-size: clamp(2rem, 9.6vw, 2.58rem);
    line-height: 0.99;
  }
}

/* Launch polish: failed story rail thumbnails collapse into text-only editorial links. */
.lf-page--home .lf-story-stack__link.has-media-fallback,
.lf-page--home .lf-story-stack__item.has-media-fallback .lf-story-stack__link {
  grid-template-columns: minmax(0, 1fr);
}

.lf-page--home .lf-story-stack__link.has-media-fallback .lf-story-stack__thumb,
.lf-page--home .lf-story-stack__item.has-media-fallback .lf-story-stack__thumb {
  display: none;
}

.lf-page--home .lf-story-stack__item.has-media-fallback .lf-story-stack__body {
  padding-inline-start: 12px;
  border-left: 2px solid rgba(201, 162, 75, 0.42);
}

/* Launch safety: newsletter preview controls must not look like active capture CTAs. */
.lf-newsletter-form[data-newsletter-collection="disabled"] button,
.lf-page--newsletter .lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button {
  border-color: rgba(201, 162, 75, 0.28);
  background: rgba(255, 255, 255, 0.72) !important;
  color: rgba(13, 13, 13, 0.72) !important;
  box-shadow: none !important;
}

.lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible,
.lf-page--newsletter .lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button:hover,
.lf-page--newsletter .lf-newsletter-product-hero .lf-newsletter-form[data-newsletter-collection="disabled"] button:focus-visible {
  border-color: rgba(201, 162, 75, 0.28);
  background: rgba(255, 255, 255, 0.72) !important;
  color: rgba(13, 13, 13, 0.72) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Launch trust hardening: weak fallback media becomes text-led instead of visual-led. */
.lf-story-card--text-led,
.lf-card--text-led {
  border-left: 3px solid rgba(197, 154, 90, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(249, 243, 231, 0.52)),
    radial-gradient(circle at 100% 0, rgba(197, 154, 90, 0.14), transparent 28%);
}

.lf-story-card--text-led .lf-card__body,
.lf-card--text-led .lf-card__body {
  padding-top: 16px;
}

.lf-hero-card--text-led {
  min-height: clamp(440px, 48vw, 620px);
  background:
    linear-gradient(135deg, rgba(10, 58, 47, 0.98), rgba(19, 74, 58, 0.88)),
    radial-gradient(circle at 84% 14%, rgba(197, 154, 90, 0.2), transparent 28%);
}

.lf-hero-card--text-led .lf-hero-card__overlay {
  background: linear-gradient(180deg, rgba(4, 28, 22, 0.1), rgba(4, 28, 22, 0.74));
}

.lf-story-stack__item--text-led .lf-story-stack__link,
.lf-atlas-item--text-led,
.lf-related-sidebar__item--text-led,
.lf-video-card--text-led {
  border-left: 3px solid rgba(197, 154, 90, 0.62);
  background: rgba(255, 255, 255, 0.58);
}

.lf-story-stack__item--text-led .lf-story-stack__link {
  grid-template-columns: minmax(0, 1fr);
  padding-left: 13px;
}

.lf-atlas-item--text-led,
.lf-related-sidebar__item--text-led {
  grid-template-columns: minmax(0, 1fr);
  padding-left: 13px;
}

.lf-video-card--text-led {
  display: block;
  padding: 16px;
}

@media (min-width: 1025px) {
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card--text-led:nth-child(n+2),
  .lf-page--search .lf-archive-grid .lf-story-card--text-led:nth-child(n+2),
  .lf-page--home .lf-story-card--text-led:nth-child(n+2) {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support):not(.lf-archive-grid--briefs) .lf-story-card--text-led:nth-child(n+2) .lf-card__body,
  .lf-page--search .lf-archive-grid .lf-story-card--text-led:nth-child(n+2) .lf-card__body,
  .lf-page--home .lf-story-card--text-led:nth-child(n+2) .lf-card__body {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card--text-led,
  .lf-page--search .lf-archive-grid .lf-story-card--text-led,
  .lf-page--home .lf-story-card--text-led {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 11px;
  }

  .lf-page--archive .lf-archive-grid:not(.lf-archive-grid--support) .lf-story-card--text-led:first-child .lf-card__body,
  .lf-page--search .lf-archive-grid .lf-story-card--text-led:first-child .lf-card__body {
    padding-top: 0;
  }
}

/* Launch audit 2026-07-10: quieter proof, tighter mobile rhythm, and disciplined display scale. */
.lf-page--article .lf-share-rail__icon .lf-svg-icon {
  display: none;
}

.lf-page--article .lf-share-card .lf-share-rail__icon span:not(.lf-svg-icon) {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content,
.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-sidebar {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-content {
  padding: 8px 0 32px;
}

.lf-page--non-news:not(.lf-page--newsletter):not(.lf-page--ui-kit) .lf-non-news-sidebar {
  padding: 0;
}

.lf-atlas-morning-cta .lf-newsletter-form--coming-soon {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.lf-atlas-morning-cta .lf-newsletter-form--coming-soon .lf-widget__note {
  max-width: 36ch;
}

@media (min-width: 1025px) {
  .lf-page--archive .lf-archive-hero {
    padding-block: 54px 58px;
  }

  .lf-page--archive .lf-archive-hero h1 {
    max-width: 18ch;
    font-size: clamp(3.6rem, 5vw, 4.55rem);
    line-height: 0.96;
  }

  .lf-search-page .lf-archive-hero h1 {
    max-width: 14ch;
    font-size: clamp(3.45rem, 4.7vw, 4.25rem);
    line-height: 0.97;
  }

  .lf-page--newsletter .lf-newsletter-product-hero__inner {
    min-height: clamp(560px, 60vh, 640px);
    padding-block: 44px;
  }

  .lf-page--newsletter .lf-newsletter-product-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(4rem, 5.2vw, 4.8rem);
    line-height: 0.94;
  }
}

@media (max-width: 768px) {
  .lf-utility-bar__date {
    display: none;
  }

  .lf-utility-bar__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-utility-bar__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .lf-utility-link--search {
    width: 36px;
    min-width: 36px;
    min-height: 32px;
    margin-left: auto;
  }

  .lf-language-switcher__link {
    min-height: 32px;
  }

  .lf-page .lf-brand-band__inner {
    min-height: 68px;
    padding-block: 6px;
  }

  .lf-page .lf-wordmark {
    max-width: min(282px, 82vw);
  }

  .lf-page .lf-wordmark img {
    max-height: 54px;
  }

  .lf-page .lf-main-nav__inner {
    padding-block: 4px 6px;
  }

  .lf-page .lf-main-nav__quick-link {
    min-height: 40px;
  }

  .lf-page .lf-nav-toggle,
  .lf-page .lf-main-nav__cta {
    min-height: 42px;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item p,
  .lf-page--home .lf-retenir-list__item p,
  .lf-page--home .lf-atlas-item p,
  .lf-page--home .lf-story-card .lf-card__body p,
  .lf-page--home .lf-module-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .lf-page--home .lf-signature-card--signal .lf-signal-item p,
  .lf-page--home .lf-atlas-item p,
  .lf-page--home .lf-story-card .lf-card__body p {
    -webkit-line-clamp: 4;
  }

  .lf-page--home .lf-retenir-list__item p {
    -webkit-line-clamp: 5;
  }

  .lf-page--home .lf-module-summary {
    -webkit-line-clamp: 3;
  }

  .lf-page--home .lf-home-widgets .lf-widget:first-child {
    display: none;
  }

  .lf-page--home .lf-radar .lf-chip:nth-child(n + 9) {
    display: none;
  }

  .lf-page--home .lf-section-heading a,
  .lf-page--home .lf-section-heading__meta a,
  .lf-page--archive .lf-archive-hero .lf-gold-button,
  .lf-page--archive .lf-archive-hero .lf-ghost-button,
  .lf-page--archive-radar .lf-chip,
  .lf-search-page .lf-search-suggestions button {
    min-height: 44px;
  }

  .lf-search-page .lf-search-suggestions {
    flex-wrap: wrap;
    overflow: visible;
  }

  .lf-search-page .lf-search-suggestions button:nth-of-type(n + 4) {
    display: none;
  }

  .lf-page--article .lf-article-header {
    border-radius: 0;
    box-shadow: none;
  }

  .lf-page--article .lf-article-trust-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .lf-page--article .lf-article-trust-ledger__item,
  .lf-page--article .lf-article-trust-ledger__item:nth-child(2n) {
    padding: 10px 8px;
    border: 0;
    border-bottom: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .lf-page--article .lf-article-trust-ledger__item:nth-child(odd) {
    border-right: 1px solid rgba(15, 61, 46, 0.1);
  }

  .lf-page--article .lf-article-trust-ledger__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .lf-page--article .lf-author-meta {
    gap: 10px;
    margin-top: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.12);
    border-right: 0;
    border-bottom: 1px solid rgba(15, 61, 46, 0.12);
    border-left: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page--article .lf-author-meta__info {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .lf-page--article .lf-meta-chip {
    width: 100%;
    min-height: 32px;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.74rem;
  }

  .lf-page--article .lf-listen-button {
    width: 100%;
    min-height: 44px;
    margin-top: 5px;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 6px;
  }
}

@media (max-width: 560px) {
  .lf-page .lf-utility-bar {
    display: none;
  }
}

/* Launch milestone 9.2: useful signature controls, reading orientation, and compact mobile utility. */
[hidden] {
  display: none !important;
}

.lf-skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid var(--lf-gold);
  border-radius: 6px;
  background: var(--lf-green-deep);
  color: var(--lf-white);
  font-size: 0.82rem;
  font-weight: 900;
  transform: translateY(-140%);
}

.lf-skip-link:focus {
  transform: translateY(0);
}

.lf-discovery-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 11px 0;
  border-top: 1px solid rgba(15, 61, 46, 0.14);
  border-bottom: 1px solid rgba(15, 61, 46, 0.14);
}

.lf-discovery-controls__label,
.lf-discovery-controls__status {
  color: var(--lf-grey-text);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-discovery-controls__status {
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.lf-discovery-controls__choices {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lf-discovery-controls__choices button {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(15, 61, 46, 0.17);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--lf-green-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.lf-discovery-controls__choices button:hover,
.lf-discovery-controls__choices button:focus-visible {
  border-color: rgba(201, 162, 75, 0.72);
}

.lf-discovery-controls__choices button[aria-pressed="true"] {
  border-color: var(--lf-green-deep);
  background: var(--lf-green-deep);
  color: var(--lf-white);
}

.lf-discovery-intel-grid.is-focused,
.lf-discovery-angle-list.is-focused {
  grid-template-columns: minmax(0, 1fr);
}

.lf-discovery-intel-grid.is-focused .lf-discovery-intel-card,
.lf-discovery-angle-list.is-focused .lf-discovery-angle-card {
  width: 100%;
  max-width: 820px;
}

.lf-radar-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: end;
}

.lf-radar-filter label {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lf-radar-filter__field {
  position: relative;
  max-width: 720px;
}

.lf-radar-filter__field > .lf-svg-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--lf-green-deep);
  transform: translateY(-50%);
  pointer-events: none;
}

.lf-radar-filter__field input {
  width: 100%;
  min-height: 52px;
  padding: 10px 52px 10px 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: var(--lf-white);
  color: var(--lf-black);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 720;
}

.lf-radar-filter__field button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--lf-green-deep);
  cursor: pointer;
}

.lf-radar-filter__field button:hover,
.lf-radar-filter__field button:focus-visible {
  background: rgba(15, 61, 46, 0.08);
}

.lf-radar-filter__field button .lf-svg-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.lf-radar-filter__status {
  align-self: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.lf-page--archive-radar .lf-discovery-radar-panel .lf-chip-cloud {
  margin-top: 18px;
}

.lf-radar-empty-state {
  margin-top: 14px;
}

.lf-article-toc {
  position: sticky;
  z-index: 20;
  top: 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 18px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 10px 12px;
  border-top: 1px solid rgba(15, 61, 46, 0.14);
  border-bottom: 1px solid rgba(15, 61, 46, 0.14);
  background: rgba(251, 249, 244, 0.96);
  backdrop-filter: blur(8px);
}

.lf-article-toc__label {
  color: var(--lf-green-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lf-article-toc ol {
  min-width: 0;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

.lf-article-toc ol::-webkit-scrollbar {
  display: none;
}

.lf-article-toc li {
  flex: 0 0 auto;
}

.lf-article-toc a {
  min-height: 40px;
  max-width: 27ch;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-bottom: 2px solid transparent;
  color: var(--lf-grey-text);
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lf-article-toc a > span {
  color: var(--lf-gold-muted);
  font-size: 0.64rem;
  font-weight: 900;
}

.lf-article-toc a:hover,
.lf-article-toc a:focus-visible,
.lf-article-toc a[aria-current="location"] {
  border-bottom-color: var(--lf-gold);
  color: var(--lf-green-deep);
}

.lf-article-section[data-lf-article-section] {
  scroll-margin-top: 92px;
}

.lf-footer-column--collapsible {
  min-width: 0;
}

.lf-footer-column--collapsible > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  list-style: none;
}

.lf-footer-column--collapsible > summary::-webkit-details-marker {
  display: none;
}

.lf-footer-column--collapsible > summary .lf-svg-icon {
  display: none;
}

@media (min-width: 1025px) {
  .lf-search-page .lf-archive-hero h1 {
    max-width: 15ch;
    font-size: clamp(3.35rem, 4.25vw, 3.85rem);
    line-height: 0.99;
  }
}

@media (max-width: 768px) {
  .lf-discovery-controls {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-block: 14px 20px;
  }

  .lf-discovery-controls__choices {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .lf-discovery-controls__choices::-webkit-scrollbar {
    display: none;
  }

  .lf-discovery-controls__choices button {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .lf-discovery-controls__status {
    justify-self: start;
  }

  .lf-radar-filter {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-radar-filter__status {
    justify-self: start;
  }

  .lf-article-toc {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    margin: 14px 0 20px;
    padding: 10px 0;
    background: transparent;
    backdrop-filter: none;
  }

  .lf-article-toc a {
    min-height: 44px;
    max-width: 78vw;
    padding-inline: 8px;
  }

  .lf-article-section[data-lf-article-section] {
    scroll-margin-top: 20px;
  }

  .lf-footer-column--collapsible {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lf-footer-column--collapsible > summary {
    min-height: 48px;
    margin: 0;
    cursor: pointer;
  }

  .lf-footer-column--collapsible > summary .lf-svg-icon {
    width: 1rem;
    height: 1rem;
    display: inline-grid;
    transition: transform 160ms ease;
  }

  .lf-footer-column--collapsible[open] > summary .lf-svg-icon {
    transform: rotate(90deg);
  }

  .lf-footer-column--collapsible > ul {
    margin: 2px 0 14px;
  }

  .lf-footer-column--collapsible h4 {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lf-footer-column--collapsible > summary .lf-svg-icon {
    transition: none;
  }
}

/* Authoritative editorial layout layer: homepage rhythm, responsive grids, and route introductions. */
:root {
  --lf-layout-section-gap: 48px;
  --lf-layout-section-gap-mobile: 32px;
  --lf-layout-rule: rgba(15, 61, 46, 0.14);
  --lf-layout-rule-warm: rgba(201, 162, 75, 0.34);
}

.lf-page--home .lf-home-top,
.lf-page--home .lf-home-signals,
.lf-page--home .lf-home-news,
.lf-page--home .lf-home-briefs,
.lf-page--home .lf-opinion-strip,
.lf-page--home .lf-radar {
  margin-top: 0;
}

.lf-page--home .lf-home-signals,
.lf-page--home .lf-home-news,
.lf-page--home .lf-home-briefs,
.lf-page--home .lf-opinion-strip,
.lf-page--home .lf-radar {
  padding-top: var(--lf-layout-section-gap);
}

.lf-page--home .lf-signature-grid,
.lf-page--home .lf-briefs-grid {
  align-items: start;
}

.lf-page--home .lf-signature-card,
.lf-page--home .lf-home-widgets,
.lf-page--home .lf-story-grid,
.lf-page--home .lf-home-news__rail {
  min-width: 0;
}

.lf-page--home .lf-signature-card--signal,
.lf-page--home .lf-signature-card--retenir,
.lf-page--home .lf-signature-card--atlas,
.lf-page--home .lf-signature-card--coverage {
  height: auto;
  min-height: 0;
}

.lf-page--home .lf-signature-card--signal-count-1 .lf-signal-grid {
  grid-template-columns: minmax(0, 1fr);
}

.lf-page--home .lf-signature-card--signal-count-2 .lf-signal-grid,
.lf-page--home .lf-signature-card--signal-count-4 .lf-signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-page--home .lf-signature-card--signal-count-3 .lf-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lf-page--home .lf-signal-item {
  min-height: 0;
}

.lf-page--home .lf-briefs-grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.lf-page--home .lf-briefs-grid--count-1 > .lf-signature-card {
  width: 100%;
}

.lf-page--archive .lf-archive-hero,
.lf-search-page .lf-archive-hero {
  margin-top: 24px;
  padding-block: 28px 30px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 239, 0.98));
  box-shadow: none;
}

.lf-page--archive .lf-archive-hero .lf-kicker,
.lf-search-page .lf-archive-hero .lf-kicker {
  color: var(--lf-green-deep);
}

.lf-page--archive .lf-archive-hero h1 {
  max-width: 15ch;
  margin-block: 8px 0;
  color: var(--lf-black);
  font-size: 3.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.lf-page--archive .lf-archive-hero p {
  max-width: 58ch;
  margin: 0;
  color: var(--lf-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.lf-page--archive .lf-archive-hero__actions {
  margin-top: 16px;
}

.lf-page--archive .lf-archive-layout {
  padding-top: 30px;
}

.lf-page--archive-atlas .lf-atlas-morning-cta {
  margin-top: 36px;
}

@media (min-width: 1025px) {
  .lf-page--home .lf-home-top {
    width: 100%;
    max-width: none;
    padding: 24px 0 0;
    background:
      linear-gradient(180deg, rgba(5, 24, 20, 0.98), rgba(8, 47, 37, 0.98) 72%, var(--lf-paper) 72%);
  }

  .lf-page--home .lf-home-top__grid {
    width: min(100% - 64px, var(--lf-shell));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(340px, 0.72fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--lf-layout-rule-warm);
    background: var(--lf-paper);
    box-shadow: 0 24px 54px rgba(4, 21, 17, 0.18);
  }

  .lf-page--home .lf-home-top__grid--hero-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-hero-card {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    height: 100%;
    min-height: 540px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lf-page--home .lf-hero-card .lf-card__image-link,
  .lf-page--home .lf-hero-card .lf-card__image--hero {
    height: 100%;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: 540px;
    max-height: 600px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto 42px 38px;
    max-width: 760px;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 15ch;
    margin-block: 10px 12px;
    font-size: 3.65rem;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 44ch;
    margin-top: 0;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .lf-page--home .lf-story-stack {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    height: 100%;
    max-height: none;
    display: grid;
    align-content: stretch;
    gap: 0;
    overflow: visible;
    padding: 22px 26px;
    border: 0;
    border-left: 1px solid var(--lf-layout-rule-warm);
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(255, 255, 255, 0.94));
  }

  .lf-page--home .lf-story-stack--count-1 {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .lf-page--home .lf-story-stack--count-2 {
    grid-template-rows: auto repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-story-stack--count-3 {
    grid-template-rows: auto repeat(3, minmax(0, 1fr));
  }

  .lf-page--home .lf-story-stack--count-4 {
    grid-template-rows: auto repeat(4, minmax(0, 1fr));
  }

  .lf-page--home .lf-story-stack::before {
    margin-bottom: 10px;
  }

  .lf-page--home .lf-story-stack__item,
  .lf-page--home .lf-story-stack__item:nth-of-type(n + 3) {
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(220, 207, 184, 0.82);
  }

  .lf-page--home .lf-story-stack__item:first-child {
    padding-top: 8px;
    border-top: 1px solid rgba(220, 207, 184, 0.82);
  }

  .lf-page--home .lf-story-stack__link,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__link {
    width: 100%;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
  }

  .lf-page--home .lf-story-stack__thumb,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 86px;
    height: 68px;
    border-radius: 0;
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    -webkit-line-clamp: 4;
    max-width: none;
    margin: 4px 0 5px;
    font-size: 1rem;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .lf-page--home .lf-home-widgets {
    width: min(100% - 64px, var(--lf-shell));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    padding-inline: 0;
    border: 1px solid rgba(220, 207, 184, 0.82);
    border-top: 0;
    background: rgba(255, 255, 255, 0.74);
  }

  .lf-page--home .lf-home-widgets .lf-widget,
  .lf-page--home .lf-home-widgets .lf-widget + .lf-widget {
    padding: 15px 20px;
    border: 0;
    border-left: 1px solid rgba(220, 207, 184, 0.76);
    border-radius: 0;
  }

  .lf-page--home .lf-home-widgets .lf-widget:first-child {
    border-left: 0;
  }

  .lf-page--home .lf-signature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .lf-page--home .lf-signature-card--signal-count-4 .lf-signal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lf-page--home .lf-retenir-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
  }

  .lf-page--home .lf-retenir-list--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-retenir-list--count-2,
  .lf-page--home .lf-retenir-list--count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-retenir-list--count-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lf-page--home .lf-retenir-list--count-5 > .lf-retenir-list__item:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .lf-page--home .lf-retenir-list--count-5 > .lf-retenir-list__item:nth-child(n + 4) {
    grid-column: span 3;
  }

  .lf-page--home .lf-retenir-list__item:nth-child(2),
  .lf-page--home .lf-retenir-list__item:nth-child(3) {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-retenir-list--count-4 > .lf-retenir-list__item:nth-child(3) {
    padding-top: 13px;
    border-top: 1px solid rgba(220, 207, 184, 0.7);
  }

  .lf-page--home .lf-home-news__grid {
    grid-template-columns: minmax(0, 1fr) 284px;
    gap: 28px;
  }

  .lf-page--home .lf-story-grid {
    align-items: stretch;
    gap: 14px 18px;
  }

  .lf-page--home .lf-story-grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-story-grid--count-2,
  .lf-page--home .lf-story-grid--count-3,
  .lf-page--home .lf-story-grid--count-4 {
    grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.92fr);
  }

  .lf-page--home .lf-story-grid--count-1 > .lf-story-card:first-child,
  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:first-child {
    grid-row: auto;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:nth-child(2) {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:nth-child(2) .lf-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10.2;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:nth-child(2) .lf-card__body {
    padding-top: 12px;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:nth-child(2) .lf-card__body h2 {
    margin: 0 0 8px;
    font-size: 1.85rem;
    line-height: 1;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:nth-child(2) .lf-card__body p {
    display: block;
  }

  .lf-page--home .lf-story-grid--count-2 > .lf-story-card:first-child .lf-card__body h2 {
    max-width: 16ch;
    font-size: 2.05rem;
    line-height: 1;
  }

  .lf-page--home .lf-story-grid--count-3 > .lf-story-card:first-child {
    grid-row: 1 / span 2;
  }

  .lf-page--home .lf-story-grid--count-4 > .lf-story-card:first-child {
    grid-row: 1 / span 3;
  }

  .lf-page--home .lf-story-grid--count-5,
  .lf-page--home .lf-story-grid--count-6 {
    grid-template-columns: minmax(300px, 1.08fr) repeat(2, minmax(230px, 0.92fr));
  }

  .lf-page--home .lf-story-grid--count-5 > .lf-story-card:first-child {
    grid-row: 1 / span 2;
  }

  .lf-page--home .lf-story-grid--count-6 > .lf-story-card:first-child {
    grid-row: 1 / span 3;
  }

  .lf-page--home .lf-story-grid--count-6 > .lf-story-card:nth-child(6) {
    grid-column: 2 / -1;
  }

  .lf-page--home .lf-story-grid > .lf-story-card:first-child {
    height: 100%;
    min-height: 0;
  }

  .lf-page--home .lf-story-grid > .lf-story-card:nth-child(n + 2) {
    min-height: 0;
    padding-top: 10px;
  }

  .lf-page--home .lf-briefs-grid {
    gap: 24px;
  }

  .lf-page--archive .lf-archive-hero {
    display: grid;
    grid-template-columns: minmax(290px, 0.78fr) minmax(380px, 1.22fr);
    grid-template-rows: auto auto auto;
    column-gap: 52px;
    align-items: end;
  }

  .lf-page--archive .lf-archive-hero > .lf-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  .lf-page--archive .lf-archive-hero > h1 {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .lf-page--archive .lf-archive-hero > p {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
  }

  .lf-page--archive .lf-archive-hero > .lf-archive-hero__actions {
    grid-column: 2;
    grid-row: 3;
  }

  .lf-page--archive .lf-archive-layout {
    grid-template-columns: minmax(0, 1fr) 288px;
    gap: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lf-page--home .lf-home-top {
    width: 100%;
    max-width: none;
    padding: 20px 0 0;
    background: linear-gradient(180deg, var(--lf-green-deep) 0, var(--lf-green-deep) 42%, var(--lf-paper) 42%);
  }

  .lf-page--home .lf-home-top__grid {
    width: min(100% - 40px, var(--lf-shell));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--lf-layout-rule-warm);
    background: var(--lf-paper);
    box-shadow: 0 18px 40px rgba(4, 21, 17, 0.14);
  }

  .lf-page--home .lf-home-top__grid--hero-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-hero-card {
    width: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 0;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: 500px;
    max-height: 560px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto 36px 32px;
    max-width: 680px;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 15ch;
    margin-block: 9px 11px;
    font-size: 3rem;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .lf-page--home .lf-story-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-height: none;
    overflow: visible;
    padding: 18px 22px;
    border: 0;
    border-top: 1px solid var(--lf-layout-rule-warm);
  }

  .lf-page--home .lf-story-stack::before {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .lf-page--home .lf-story-stack__item,
  .lf-page--home .lf-story-stack__item:nth-of-type(n + 3) {
    display: block;
    padding: 13px 16px;
    border-top: 1px solid rgba(220, 207, 184, 0.76);
  }

  .lf-page--home .lf-story-stack__item:nth-of-type(odd) {
    border-right: 1px solid rgba(220, 207, 184, 0.76);
  }

  .lf-page--home .lf-story-stack__link,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
  }

  .lf-page--home .lf-story-stack__thumb,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 96px;
    height: 76px;
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    font-size: 1.05rem;
    line-height: 1.12;
  }

  .lf-page--home .lf-home-widgets {
    width: min(100% - 40px, var(--lf-shell));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-inline: 0;
    border: 1px solid rgba(220, 207, 184, 0.82);
    border-top: 0;
  }

  .lf-page--home .lf-home-widgets .lf-widget,
  .lf-page--home .lf-home-widgets .lf-widget + .lf-widget {
    padding: 14px 16px;
    border: 0;
    border-left: 1px solid rgba(220, 207, 184, 0.76);
  }

  .lf-page--home .lf-home-widgets .lf-widget:first-child {
    border-left: 0;
  }

  .lf-page--home .lf-signature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .lf-page--home .lf-retenir-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .lf-page--home .lf-retenir-list--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-retenir-list--count-3 > .lf-retenir-list__item:last-child,
  .lf-page--home .lf-retenir-list--count-5 > .lf-retenir-list__item:last-child {
    grid-column: 1 / -1;
  }

  .lf-page--home .lf-retenir-list__item:nth-child(2) {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-signature-card--signal-count-3 .lf-signal-grid,
  .lf-page--home .lf-signature-card--signal-count-4 .lf-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-home-news__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-story-grid > .lf-story-card:first-child {
    grid-row: auto;
  }

  .lf-page--home .lf-home-news__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lf-page--archive .lf-archive-hero h1 {
    font-size: 2.8rem;
  }

  .lf-page--archive .lf-archive-layout {
    padding-top: 26px;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-home-top {
    order: 1;
    width: 100%;
    max-width: none;
    display: block;
    padding: 14px 0 0;
    background: transparent;
  }

  .lf-page--home .lf-home-top__grid {
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-top: 1px solid var(--lf-layout-rule-warm);
    border-bottom: 1px solid rgba(220, 207, 184, 0.82);
  }

  .lf-page--home .lf-hero-card {
    width: 100%;
    margin: 0;
  }

  .lf-page--home .lf-hero-card .lf-card__image--hero {
    min-height: 420px;
    max-height: 500px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto 18px 18px;
    max-width: calc(100% - 36px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 14ch;
    margin-block: 8px 10px;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .lf-page--home .lf-hero-card__content p {
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .lf-page--home .lf-story-stack {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 12px 14px 14px;
    border: 0;
    background: var(--lf-paper);
  }

  .lf-page--home .lf-story-stack::before {
    margin-bottom: 4px;
  }

  .lf-page--home .lf-story-stack__item,
  .lf-page--home .lf-story-stack__item:nth-of-type(n + 3) {
    display: block;
    padding: 13px 0;
  }

  .lf-page--home .lf-story-stack__link,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
  }

  .lf-page--home .lf-story-stack__thumb,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__thumb {
    width: 96px;
    height: 76px;
    aspect-ratio: auto;
  }

  .lf-page--home .lf-story-stack__headline,
  .lf-page--home .lf-story-stack__item:first-child .lf-story-stack__headline {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .lf-page--home .lf-home-signals,
  .lf-page--home .lf-home-news,
  .lf-page--home .lf-home-briefs,
  .lf-page--home .lf-opinion-strip,
  .lf-page--home .lf-radar {
    padding-top: var(--lf-layout-section-gap-mobile);
  }

  .lf-page--home .lf-signature-card--signal-count-2 .lf-signal-grid,
  .lf-page--home .lf-signature-card--signal-count-3 .lf-signal-grid,
  .lf-page--home .lf-signature-card--signal-count-4 .lf-signal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-retenir-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-retenir-list__item:nth-child(2) {
    padding-top: 11px;
    border-top: 1px solid rgba(220, 207, 184, 0.7);
  }

  .lf-page--home .lf-story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-story-grid > .lf-story-card:first-child,
  .lf-page--home .lf-story-grid--count-3 > .lf-story-card:first-child,
  .lf-page--home .lf-story-grid--count-4 > .lf-story-card:first-child,
  .lf-page--home .lf-story-grid--count-5 > .lf-story-card:first-child,
  .lf-page--home .lf-story-grid--count-6 > .lf-story-card:first-child {
    grid-row: auto;
  }

  .lf-page--home .lf-story-grid--count-6 > .lf-story-card:nth-child(6) {
    grid-column: auto;
  }

  .lf-page--home .lf-home-widgets {
    order: 8;
    width: min(100% - 24px, var(--lf-shell));
    margin: var(--lf-layout-section-gap-mobile) auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-inline: 0;
    border-top: 1px solid var(--lf-layout-rule-warm);
    border-bottom: 1px solid rgba(220, 207, 184, 0.78);
  }

  .lf-page--home .lf-home-widgets .lf-widget,
  .lf-page--home .lf-home-widgets .lf-widget + .lf-widget {
    padding: 14px 0;
    border: 0;
    border-top: 1px solid rgba(220, 207, 184, 0.72);
  }

  .lf-page--home .lf-home-widgets .lf-widget:first-child {
    border-top: 0;
  }

  .lf-page--home .lf-briefs-grid--count-1,
  .lf-page--home .lf-briefs-grid--count-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--archive .lf-archive-hero,
  .lf-search-page .lf-archive-hero {
    margin-top: 12px;
    padding-block: 20px 22px;
  }

  .lf-page--archive .lf-archive-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .lf-page--archive .lf-archive-hero h1 {
    max-width: 13ch;
    margin-block: 7px 9px;
    font-size: 2.28rem;
    line-height: 0.98;
  }

  .lf-page--archive .lf-archive-hero p {
    max-width: 34ch;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .lf-page--archive .lf-archive-hero__actions {
    margin-top: 13px;
  }

  .lf-page--archive .lf-archive-layout {
    padding-top: 22px;
  }

  .lf-page--archive .lf-discovery-controls__choices {
    flex-wrap: wrap;
    overflow: visible;
    padding-right: 0;
  }

  .lf-page--archive-coverage .lf-discovery-angle-card {
    grid-template-columns: 48px minmax(0, 1fr);
    overflow: visible;
  }

  .lf-page--archive-coverage .lf-discovery-angle-card .lf-avatar {
    min-width: 48px;
  }

  .lf-page--archive-atlas .lf-atlas-morning-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 28px;
    padding: 20px 0;
  }
}

@media (min-width: 1600px) {
  .lf-page--home .lf-home-top__grid,
  .lf-page--home .lf-home-widgets,
  .lf-page--home > .lf-shell,
  .lf-page--archive .lf-archive-page > .lf-shell {
    width: min(100% - 96px, 1420px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    font-size: 3.9rem;
  }
}

/* Launch completion: remove repeated conversion chrome and recover mobile reading space. */
.lf-page--archive .lf-archive-hero > .lf-kicker,
.lf-search-page .lf-archive-hero > .lf-kicker {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  align-self: start;
  padding: 6px 10px;
  border-radius: 2px;
  color: var(--lf-white);
}

.lf-widget--brief-link {
  border-top: 2px solid rgba(201, 162, 75, 0.58);
  background: rgba(255, 255, 255, 0.66);
}

.lf-widget__text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: var(--lf-green-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.lf-widget__text-link .lf-svg-icon {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 160ms ease;
}

.lf-widget__text-link:hover,
.lf-widget__text-link:focus-visible {
  color: var(--lf-burnt);
}

.lf-widget__text-link:hover .lf-svg-icon,
.lf-widget__text-link:focus-visible .lf-svg-icon {
  transform: translateX(3px);
}

@media (min-width: 1025px) {
  .lf-footer-primary__grid--without-newsletter {
    grid-template-columns: minmax(280px, 1.24fr) minmax(180px, 0.72fr) minmax(230px, 0.82fr);
    gap: clamp(28px, 5vw, 72px);
  }
}

@media (max-width: 768px) {
  .lf-page .lf-brand-band__inner {
    min-height: 60px;
    padding-block: 4px;
  }

  .lf-page .lf-wordmark {
    max-width: min(250px, 78vw);
  }

  .lf-page .lf-wordmark img {
    max-height: 46px;
  }

  .lf-page .lf-main-nav__inner {
    padding-block: 2px 4px;
  }

  .lf-page .lf-main-nav__quick-link {
    min-height: 36px;
  }

  .lf-page .lf-nav-toggle,
  .lf-page .lf-main-nav__cta {
    min-height: 40px;
  }

  .lf-page--archive .lf-archive-sidebar,
  .lf-page--search .lf-archive-sidebar,
  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-sidebar {
    display: none;
  }

  .lf-page--archive .lf-archive-layout,
  .lf-page--search .lf-archive-layout {
    gap: 0;
    padding-bottom: 8px;
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding-block: 0;
    border-top: 1px solid rgba(201, 162, 75, 0.34);
    border-bottom: 1px solid rgba(220, 207, 184, 0.72);
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights article,
  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child {
    min-height: 86px;
    padding: 12px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights article + article {
    border-top: 0;
    border-left: 1px solid rgba(220, 207, 184, 0.68);
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights span,
  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child span {
    margin-bottom: 6px;
    font-size: 0.56rem;
    line-height: 1.2;
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights strong,
  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-highlights article:first-child strong {
    font-size: 0.82rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-layout {
    gap: 0;
    margin-top: 18px;
  }

  .lf-page.lf-page--non-news:not(.lf-page--ui-kit) .lf-non-news-content {
    padding: 20px 18px;
  }

  .lf-footer-primary__grid--without-newsletter {
    row-gap: 18px;
  }
}

/* Article-first homepage: one news hierarchy, one watchlist, no duplicate formats. */
.lf-page--home .lf-home-news--article-led,
.lf-page--home .lf-watch-signals,
.lf-page--home .lf-editorial-desk,
.lf-page--home .lf-priority-sections,
.lf-page--home .lf-home-newsletter {
  margin-top: 0;
  padding-top: 52px;
}

.lf-page--home .lf-page-main {
  padding-bottom: 32px;
}

.lf-page--home .lf-home-news--article-led > .lf-section-heading,
.lf-page--home .lf-watch-signals > .lf-section-heading,
.lf-page--home .lf-editorial-desk > .lf-section-heading,
.lf-page--home .lf-priority-sections > .lf-section-heading {
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 75, 0.48);
}

.lf-page--home .lf-home-article-grid {
  display: grid;
  min-width: 0;
  gap: 28px 22px;
}

.lf-page--home .lf-home-article-grid > .lf-story-card,
.lf-page--home .lf-home-article-grid > .lf-story-card:first-child,
.lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) {
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lf-page--home .lf-home-article-grid > .lf-story-card:hover {
  transform: none;
  box-shadow: none;
}

.lf-page--home .lf-home-article-grid .lf-card__media,
.lf-page--home .lf-home-article-grid .lf-card__media-link,
.lf-page--home .lf-home-article-grid .lf-card__image {
  border-radius: 0;
}

.lf-page--home .lf-home-article-grid .lf-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lf-page--home .lf-home-article-grid .lf-card__body {
  padding: 14px 0 0;
}

.lf-page--home .lf-home-article-grid .lf-card__body h2 {
  margin: 0 0 9px;
  color: var(--lf-black);
  font-size: 1.24rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: pretty;
}

.lf-page--home .lf-home-article-grid .lf-card__body p {
  margin: 0 0 12px;
  color: var(--lf-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lf-page--home .lf-home-article-grid .lf-meta {
  margin-top: 8px;
  font-size: 0.72rem;
}

.lf-page--home .lf-story-stack__item.has-media-fallback .lf-story-stack__link,
.lf-page--home .lf-story-stack__item--text-led .lf-story-stack__link {
  grid-template-columns: minmax(0, 1fr) !important;
}

.lf-page--home .lf-watch-signals__intro,
.lf-page--home .lf-editorial-desk__intro {
  max-width: 64ch;
  margin: -8px 0 24px;
  color: var(--lf-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.lf-page--home .lf-watch-signals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(15, 61, 46, 0.16);
  border-bottom: 1px solid rgba(15, 61, 46, 0.16);
}

.lf-page--home .lf-watch-signal {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-content: start;
  padding: 24px 22px;
  border-left: 1px solid rgba(15, 61, 46, 0.14);
}

.lf-page--home .lf-watch-signal:first-child {
  padding-left: 0;
  border-left: 0;
}

.lf-page--home .lf-watch-signal__index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, 0.54);
  color: var(--lf-green-deep);
}

.lf-page--home .lf-watch-signal__index .lf-svg-icon {
  width: 18px;
  height: 18px;
}

.lf-page--home .lf-watch-signal h2 {
  margin: 1px 0 9px;
  color: var(--lf-black);
  font-size: 1.08rem;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: pretty;
}

.lf-page--home .lf-watch-signal p {
  margin: 0;
  color: var(--lf-muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.lf-page--home .lf-watch-signal .lf-source-pills {
  margin-top: 13px;
}

.lf-page--home .lf-watch-signal .lf-source-pill {
  max-width: 100%;
}

.lf-page--home .lf-editorial-desk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 0 30px;
}

.lf-page--home .lf-desk-story {
  min-width: 0;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(15, 61, 46, 0.14);
}

.lf-page--home .lf-desk-story--lead {
  grid-row: 1 / span 4;
  display: block;
  padding: 0 30px 0 0;
  border-top: 0;
  border-right: 1px solid rgba(15, 61, 46, 0.14);
}

.lf-page--home .lf-desk-story__media {
  display: block;
  overflow: hidden;
}

.lf-page--home .lf-desk-story__media img {
  width: 122px;
  height: 92px;
  display: block;
  object-fit: cover;
}

.lf-page--home .lf-desk-story--lead .lf-desk-story__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.lf-page--home .lf-desk-story__body h2 {
  margin: 5px 0 8px;
  color: var(--lf-black);
  font-size: 1.08rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.lf-page--home .lf-desk-story--lead .lf-desk-story__body {
  padding-top: 15px;
}

.lf-page--home .lf-desk-story--lead .lf-desk-story__body h2 {
  max-width: 22ch;
  font-size: 2rem;
  line-height: 1.04;
}

.lf-page--home .lf-desk-story__body p {
  max-width: 62ch;
  margin: 0 0 13px;
  color: var(--lf-muted);
  line-height: 1.5;
}

.lf-page--home .lf-priority-sections__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(15, 61, 46, 0.16);
  border-bottom: 1px solid rgba(15, 61, 46, 0.16);
}

.lf-page--home .lf-priority-section {
  min-width: 0;
  min-height: 180px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  padding: 24px;
  border-left: 1px solid rgba(15, 61, 46, 0.14);
  color: var(--lf-black);
  transition: color 160ms ease, background-color 160ms ease;
}

.lf-page--home .lf-priority-section:first-child {
  padding-left: 0;
  border-left: 0;
}

.lf-page--home .lf-priority-section > span {
  color: var(--lf-burnt);
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.lf-page--home .lf-priority-section strong {
  margin-top: 10px;
  color: var(--lf-green-deep);
  font-family: var(--lf-font-heading);
  font-size: 1.42rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.lf-page--home .lf-priority-section p {
  margin: 13px 0 18px;
  color: var(--lf-muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.lf-page--home .lf-priority-section .lf-svg-icon {
  width: 18px;
  height: 18px;
  color: var(--lf-burnt);
  transition: transform 160ms ease;
}

.lf-page--home .lf-priority-section:hover,
.lf-page--home .lf-priority-section:focus-visible {
  background: rgba(15, 61, 46, 0.04);
  color: var(--lf-burnt);
}

.lf-page--home .lf-priority-section:hover .lf-svg-icon,
.lf-page--home .lf-priority-section:focus-visible .lf-svg-icon {
  transform: translateX(4px);
}

.lf-page--home .lf-home-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 44px;
  align-items: end;
  margin-top: 52px;
  margin-bottom: 8px;
  padding: 34px 38px;
  border-top: 2px solid var(--lf-gold);
  background: var(--lf-green-deep);
  color: var(--lf-white);
}

.lf-page--home .lf-home-newsletter .lf-kicker {
  color: var(--lf-gold);
}

.lf-page--home .lf-home-newsletter h2 {
  margin: 9px 0 10px;
  color: var(--lf-white);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.lf-page--home .lf-home-newsletter__copy p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.lf-page--home .lf-home-newsletter .lf-newsletter-form,
.lf-page--home .lf-home-newsletter .lf-newsletter-form__body {
  margin: 0;
}

@media (min-width: 1025px) {
  .lf-page--home .lf-home-article-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card {
    grid-column: span 3;
    grid-row: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child {
    grid-column: span 8;
    grid-row: 1 / span 3;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    align-content: center;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(2) {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4).lf-story-card--text-led {
    display: block;
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__image {
    width: 104px;
    height: 82px;
    aspect-ratio: auto;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body {
    padding: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body h2,
  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(2) .lf-card__body h2 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 9px;
    font-size: 0.84rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 5) {
    display: block;
    grid-column: span 3;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 5) .lf-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 5) .lf-card__body {
    padding: 14px 0 0;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-1 > .lf-story-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-2 > .lf-story-card:first-child {
    grid-row: auto;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-3 > .lf-story-card:first-child {
    grid-row: 1 / span 2;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-3 > .lf-story-card:first-child .lf-card__image {
    aspect-ratio: 16 / 7.6;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-3 > .lf-story-card:nth-child(n + 2) .lf-card__body p {
    -webkit-line-clamp: 4;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child .lf-card__image {
    aspect-ratio: 16 / 8.7;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child .lf-card__body h2 {
    max-width: 22ch;
    font-size: 2rem;
    line-height: 1.04;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(2) .lf-card__body h2 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: 18ch;
    font-size: 3.35rem;
    line-height: 0.99;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lf-page--home .lf-home-article-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child {
    grid-column: span 8;
    grid-row: 1 / span 3;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    align-content: center;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(2) {
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4).lf-story-card--text-led {
    display: block;
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__image {
    width: 80px;
    height: 66px;
    aspect-ratio: auto;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body {
    padding: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body h2 {
    margin-bottom: 7px;
    font-size: 1rem;
    line-height: 1.12;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2):nth-child(-n + 4) .lf-card__body p {
    display: none;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 5) {
    grid-column: span 3;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-1 > .lf-story-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-2 > .lf-story-card:first-child {
    grid-row: auto;
  }

  .lf-page--home .lf-home-article-grid.lf-story-grid--count-3 > .lf-story-card:first-child {
    grid-row: 1 / span 2;
  }

  .lf-page--home .lf-watch-signals__grid,
  .lf-page--home .lf-priority-sections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-watch-signal:nth-child(3),
  .lf-page--home .lf-priority-section:nth-child(3) {
    border-left: 0;
  }

  .lf-page--home .lf-watch-signal:nth-child(n + 3),
  .lf-page--home .lf-priority-section:nth-child(n + 3) {
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-editorial-desk__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  }

  .lf-page--home .lf-home-newsletter {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .lf-page--home .lf-page-main {
    padding-bottom: 0;
  }

  .lf-page--home .lf-home-news--article-led,
  .lf-page--home .lf-watch-signals,
  .lf-page--home .lf-editorial-desk,
  .lf-page--home .lf-priority-sections,
  .lf-page--home .lf-home-newsletter {
    padding-top: 30px;
  }

  .lf-page--home .lf-home-news--article-led > .lf-section-heading {
    order: 4;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto 16px;
    padding-top: 12px;
  }

  .lf-page--home .lf-home-article-grid {
    order: 5;
    width: min(100% - 24px, var(--lf-shell));
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card,
  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child,
  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) {
    grid-row: auto;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 15px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card.lf-story-card--text-led {
    display: block;
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card.lf-story-card--text-led .lf-card__body h2 {
    max-width: none;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-card__image {
    width: 112px;
    height: 88px;
    aspect-ratio: auto;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-card__body {
    padding: 0;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-card__body h2 {
    margin-bottom: 7px;
    font-size: 1.04rem;
    line-height: 1.12;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-card__body p,
  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-media-caption {
    display: none;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child .lf-card__body h2 {
    max-width: 24ch;
    font-size: 1.62rem;
    line-height: 1.04;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:first-child .lf-card__body p {
    font-size: 0.9rem;
  }

  .lf-page--home .lf-watch-signals {
    order: 6;
  }

  .lf-page--home .lf-editorial-desk {
    order: 7;
  }

  .lf-page--home .lf-priority-sections {
    order: 8;
  }

  .lf-page--home .lf-home-newsletter {
    order: 9;
  }

  .lf-page--home .lf-watch-signals > .lf-section-heading,
  .lf-page--home .lf-editorial-desk > .lf-section-heading,
  .lf-page--home .lf-priority-sections > .lf-section-heading {
    margin-bottom: 16px;
    padding-top: 12px;
  }

  .lf-page--home .lf-watch-signals__intro,
  .lf-page--home .lf-editorial-desk__intro {
    margin: -4px 0 18px;
    font-size: 0.9rem;
  }

  .lf-page--home .lf-watch-signals__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lf-page--home .lf-watch-signal,
  .lf-page--home .lf-watch-signal:first-child {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 17px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
    border-left: 0;
  }

  .lf-page--home .lf-watch-signal:first-child {
    border-top: 0;
  }

  .lf-page--home .lf-watch-signal__index {
    width: 32px;
    height: 32px;
  }

  .lf-page--home .lf-watch-signal h2 {
    font-size: 1.06rem;
  }

  .lf-page--home .lf-editorial-desk__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .lf-page--home .lf-desk-story,
  .lf-page--home .lf-desk-story--lead {
    grid-row: auto;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(15, 61, 46, 0.14);
    border-right: 0;
  }

  .lf-page--home .lf-desk-story--lead {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .lf-page--home .lf-desk-story__media img {
    width: 104px;
    height: 80px;
  }

  .lf-page--home .lf-desk-story--lead .lf-desk-story__body h2 {
    font-size: 1.62rem;
  }

  .lf-page--home .lf-priority-sections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-page--home .lf-priority-section,
  .lf-page--home .lf-priority-section:first-child {
    min-height: 170px;
    padding: 18px 14px;
  }

  .lf-page--home .lf-priority-section:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .lf-page--home .lf-priority-section:nth-child(n + 3) {
    border-top: 1px solid rgba(15, 61, 46, 0.14);
  }

  .lf-page--home .lf-priority-section strong {
    font-size: 1.15rem;
    line-height: 1.08;
  }

  .lf-page--home .lf-priority-section p {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .lf-page--home .lf-home-newsletter {
    width: min(100% - 24px, var(--lf-shell));
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin: 30px auto 0;
    padding: 24px 18px;
  }

  .lf-page--home .lf-home-newsletter h2 {
    font-size: 1.7rem;
  }

  .lf-page--home .lf-hero-card__content {
    inset: auto 18px 18px;
    max-width: calc(100% - 36px);
  }

  .lf-page--home .lf-hero-card__content h1 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.01;
  }
}

@media (max-width: 374px) {
  .lf-page--home .lf-hero-card__content h1 {
    font-size: 1.72rem;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card,
  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .lf-page--home .lf-home-article-grid > .lf-story-card:nth-child(n + 2) .lf-card__image {
    width: 96px;
    height: 76px;
  }
}
