@font-face {
  font-family: "FA Sans";
  src: url("../font/GT-America-Standard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FA Sans";
  src: url("../font/GT-America-Standard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "FA Sans";
  src: url("../font/GT-America-Standard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "FA Serif";
  src: url("../font/CanelaDeck-Regular-Web.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FA Article Serif";
  src: url("../font/Canela-Regular-Web.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #111;
  --muted: #767676;
  --line: #eaeaea;
  --paper: #fff;
  --soft: #f7f7f7;
  --red: #ec3535;
  --red-dark: #c52222;
  --gold: #a8762a;
  --blue: #244e7a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "FA Serif", Georgia, serif;
  line-height: 1.48;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "FA Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

.main-nav,
.mobile-menu-panel,
.utility,
.issue-link,
.latest-label,
.strip-track a,
.kicker,
.eyebrow,
.meta,
.breadcrumb,
.article-meta,
.year-tabs,
.site-footer nav,
button {
  font-family: "FA Serif", Georgia, serif;
}

.article-content,
.article-content *,
.raw-html-content,
.raw-html-content * {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--paper);
}

.utility,
.brand-row,
.nav-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.utility-inner,
.brand-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.utility-inner {
  min-height: 35px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.utility nav,
.brand-actions,
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-inner {
  min-height: 70px;
}

.brand,
.footer-brand {
  font-family: "FA Serif", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.issue-link {
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.search-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  right: -7px;
  bottom: -4px;
  background: currentColor;
  transform: rotate(45deg);
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: white;
  display: none;
  place-items: center;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  display: none;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu-inner {
  padding: 16px 0 24px;
}

.mobile-menu-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.42rem;
  transition: color 180ms ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: var(--hover-color, var(--red));
}

.mobile-menu-panel a::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--hover-color, var(--red));
}

.mobile-menu-utility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.mobile-menu-utility a {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  font-size: 1rem;
}

.mobile-menu-utility a::after {
  display: none;
}

.main-nav {
  min-height: 43px;
  justify-content: center;
  overflow-x: visible;
}

.nav-item {
  min-height: 43px;
  display: flex;
  align-items: stretch;
  position: static;
}

.nav-item > a {
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.84);
  position: relative;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 0;
  height: 3px;
  background: var(--hover-color, var(--red));
  opacity: 0;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  opacity: 1;
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--hover-color, var(--red));
}

.nav-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #020202;
  border-top: 3px solid var(--hover-color, var(--red));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
}

.nav-item:hover .nav-mega,
.nav-item:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  padding-top: 28px;
  padding-bottom: 30px;
}

.nav-mega-title {
  border-left: 5px solid var(--hover-color, var(--red));
  padding-left: 16px;
}

.nav-mega-title span {
  display: block;
  font-family: "FA Serif", Georgia, serif;
  color: white;
  font-size: 2.2rem;
  line-height: 1;
}

.nav-mega-title a {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.nav-mega-grid article a {
  display: grid;
  gap: 10px;
}

.nav-mega-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #1a1a1a;
}

/* Lists artwork is authored at 1.45:1; keep this override scoped to its menu only. */
.site-header .nav-item-lists .nav-mega-grid img {
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
}

.nav-mega-grid strong {
  color: white;
  font-size: 0.98rem;
  line-height: 1.22;
}

.nav-mega-grid small {
  color: rgba(255, 255, 255, 0.55);
}

.latest-strip {
  border-bottom: 1px solid var(--line);
}

.strip-layout {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 18px;
  align-items: center;
  min-height: 148px;
}

.strip-window {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 25%);
  gap: 20px;
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.latest-label {
  align-self: start;
  justify-self: start;
  background: var(--red);
  color: var(--paper);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.strip-track article {
  min-height: 78px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.strip-track article:last-child {
  border-right: 0;
}

.strip-track time {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 7px;
}

.strip-track a {
  font-weight: 700;
  line-height: 1.38;
}

.round-arrow {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #b7b7b7;
  color: white;
  font-size: 2.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.round-arrow:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.home-front,
.archive-body,
.page-content,
.list-table-section,
.related,
.form-page {
  padding: 48px 0 72px;
}

.section-line,
.section-head,
.channel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-line h1,
.channel-title h2 {
  font-size: 1.62rem;
  font-weight: 500;
}

.section-line a,
.section-head a,
.channel-title a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.68fr) minmax(292px, 0.74fr);
  gap: 28px;
  align-items: start;
}

.lead-card img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.kicker,
.eyebrow {
  display: inline-flex;
  margin-top: 14px;
  color: var(--kicker-color, var(--section-color, var(--red)));
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-card h2 {
  margin-top: 8px;
  font-size: 2.35rem;
}

.lead-card p,
.mini-card p,
.archive-feature p,
.card-grid p,
.section-head p {
  margin-top: 10px;
  color: #444;
}

.meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.secondary-stack {
  display: grid;
  gap: 24px;
}

.mini-card {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.mini-card h3 {
  margin-top: 8px;
  font-size: 1.22rem;
}

.popular-box {
  border-top: 2px solid var(--ink);
}

.tabs-static {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
}

.tabs-static span {
  min-height: 48px;
  display: grid;
  place-items: center;
}

.popular-box a,
.side-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px dashed #c9c9c9;
  font-weight: 700;
  line-height: 1.28;
}

.band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.home-channel {
  padding: 62px 0 70px;
  border-top: 2px solid var(--section-color, var(--ink));
}

.home-channel:nth-of-type(even) {
  background: #fafafa;
}

.home-channel-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.channel-name {
  color: var(--section-color, var(--red));
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.channel-name span {
  font-weight: 400;
}

.home-channel-head p {
  max-width: 720px;
  color: var(--muted);
}

.story-card a,
.compact-story a {
  display: grid;
  height: 100%;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.story-card h2,
.story-card h3,
.compact-story h3,
.magazine-rail h3,
.ledger-list h3 {
  letter-spacing: 0;
}

.story-card h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.story-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.story-card p {
  margin-top: 10px;
  color: #444;
}

.channel-feature img {
  aspect-ratio: 16 / 9;
}

.channel-editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.channel-stack,
.right-feature-stack,
.magazine-column {
  display: grid;
  gap: 24px;
}

.story-card-vertical {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.story-card-vertical img {
  aspect-ratio: 16 / 8.8;
}

.compact-story-grid {
  display: grid;
  gap: 22px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.compact-story-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.compact-story img {
  width: 128px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.compact-story a {
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.compact-story h3 {
  font-size: 1rem;
  line-height: 1.28;
}

.compact-story small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.channel-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.channel-magazine-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 28px;
  align-items: start;
}

.magazine-main img {
  aspect-ratio: 16 / 8.7;
}

.magazine-rail {
  display: grid;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.magazine-rail article {
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
  margin-bottom: 18px;
}

.magazine-rail article:last-child {
  margin-bottom: 0;
}

.magazine-rail a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 14px;
}

.magazine-rail span,
.magazine-rail small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.magazine-rail h3 {
  grid-column: 1;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.36rem;
  line-height: 1.08;
}

.magazine-rail img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 96px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.channel-ledger-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: start;
}

.ledger-list {
  border-top: 2px solid var(--ink);
}

.ledger-list article a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-list time,
.ledger-list small {
  color: var(--muted);
  font-size: 0.82rem;
}

.ledger-list h3 {
  font-size: 1.14rem;
  line-height: 1.24;
}

.channel-module {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: stretch;
}

.home-channel-wide-ledger .channel-module {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
}

.home-channel-image-rail .channel-module {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
}

.channel-primary {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.channel-primary a {
  display: grid;
  height: 100%;
  align-content: start;
}

.channel-primary img {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.home-channel-wide-ledger .channel-primary img {
  aspect-ratio: 16 / 10.4;
}

.home-channel-image-rail .channel-primary img {
  aspect-ratio: 4 / 3;
}

.channel-primary h2 {
  max-width: 920px;
  margin-top: 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.channel-primary p {
  max-width: 820px;
  margin-top: 12px;
  color: #444;
  font-size: 1.02rem;
}

.channel-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-channel-wide-ledger .channel-secondary-grid {
  border-top: 2px solid var(--ink);
  grid-template-columns: 1fr;
  gap: 0;
}

.channel-secondary-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.home-channel-wide-ledger .channel-secondary-card {
  padding: 0;
}

.channel-secondary-card a {
  display: grid;
  gap: 12px;
}

.home-channel-wide-ledger .channel-secondary-card a {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
}

.channel-secondary-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.home-channel-wide-ledger .channel-secondary-card img {
  aspect-ratio: 1 / 1;
}

.channel-secondary-card .kicker {
  margin-top: 0;
}

.channel-secondary-card h3 {
  margin-top: 7px;
  font-size: 1.5rem;
  line-height: 1.05;
}

.home-channel-wide-ledger .channel-secondary-card h3 {
  font-size: 1.34rem;
}

.channel-secondary-card p {
  margin-top: 8px;
  color: #555;
  font-size: 0.94rem;
}

.home-channel-wide-ledger .channel-secondary-card p {
  display: none;
}

.channel-river {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.channel-river article a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.channel-river img {
  width: 112px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.channel-river span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 5px;
}

.channel-river h3 {
  font-size: 1.04rem;
  line-height: 1.16;
}

.home-channel-balanced,
.home-channel-ledger,
.home-channel-showcase {
  background: #fff;
}

.home-channel:nth-of-type(even) {
  background: #f8f8f8;
}

.home-channel-head {
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 1fr);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.channel-name {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight: 400;
}

.home-channel-head p {
  font-size: 1.02rem;
  line-height: 1.45;
}

.channel-module {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  gap: 30px;
  align-items: start;
}

.home-channel-ledger .channel-module {
  grid-template-columns: minmax(0, 0.92fr) minmax(370px, 0.72fr);
}

.home-channel-showcase .channel-module {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
}

.channel-lead {
  min-width: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.channel-lead a {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  border-top: 4px solid var(--section-color, var(--red));
  background: #fff;
}

.home-channel-ledger .channel-lead a,
.home-channel-showcase .channel-lead a {
  grid-template-columns: 1fr;
}

.channel-lead-media {
  min-width: 0;
  background: var(--soft);
}

.channel-lead-media img,
.channel-lead img {
  width: 100%;
  aspect-ratio: 16 / 9.25;
  height: auto;
  min-height: 292px;
  max-height: 430px;
  object-fit: cover;
  background: var(--soft);
}

.home-channel-ledger .channel-lead-media img,
.home-channel-ledger .channel-lead img {
  aspect-ratio: 16 / 10.2;
  max-height: 360px;
}

.home-channel-showcase .channel-lead-media img,
.home-channel-showcase .channel-lead img {
  aspect-ratio: 16 / 10;
  max-height: 420px;
}

.channel-lead-copy {
  display: grid;
  align-content: start;
  padding: 24px 26px 26px;
  min-height: 218px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-channel-ledger .channel-lead-copy,
.home-channel-showcase .channel-lead-copy {
  min-height: 230px;
  align-content: start;
  border-left: 1px solid var(--line);
}

.channel-lead-copy .kicker {
  margin-top: 0;
}

.channel-lead-copy h2 {
  max-width: 700px;
  margin-top: 10px;
  font-size: clamp(1.75rem, 2.25vw, 2.65rem);
  line-height: 1.04;
}

.channel-lead-copy p {
  max-width: 640px;
  margin-top: 12px;
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

.channel-side {
  display: grid;
  gap: 0;
  align-content: start;
  border-top: 1px solid var(--line);
}

.home-channel-showcase .channel-side {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-top: 0;
}

.channel-side article {
  border-bottom: 1px solid var(--line);
}

.home-channel-showcase .channel-side article {
  border: 1px solid var(--line);
  background: #fff;
}

.channel-side a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  align-items: start;
}

.home-channel-showcase .channel-side a {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.channel-side img {
  width: 112px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.home-channel-showcase .channel-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.home-channel-showcase .channel-side div {
  padding: 16px;
}

.channel-side .kicker {
  margin-top: 0;
  font-size: 0.72rem;
}

.channel-side h3 {
  margin-top: 6px;
  font-size: 1.22rem;
  line-height: 1.12;
}

.channel-side p {
  display: none;
  margin-top: 7px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.38;
}

.channel-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.channel-brief-grid article a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.channel-brief-grid img {
  width: 112px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.channel-brief-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.channel-brief-grid h3 {
  font-size: 1rem;
  line-height: 1.15;
}

.home-channel-ledger .channel-brief-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-channel-ledger .channel-brief-grid article a {
  grid-template-columns: 86px minmax(0, 1fr);
}

.home-channel-ledger .channel-brief-grid img {
  width: 86px;
  aspect-ratio: 1 / 1;
}

.band.soft {
  background: var(--soft);
}

.home-lists {
  padding: 72px 0 82px;
  background: #080808;
  color: white;
  border-top: 1px solid #181818;
}

.home-lists-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-lists-head .eyebrow {
  margin-top: 0;
  color: #cdb675;
}

.home-lists-head h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 0.98;
}

.home-lists-head a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.home-lists-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.45fr) minmax(260px, 0.45fr);
  gap: 20px;
  align-items: stretch;
}

.home-list-feature {
  grid-row: span 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
}

.home-list-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #101010;
}

.home-list-feature a,
.home-list-card a {
  display: grid;
  min-height: 100%;
  color: white;
}

.home-list-feature img,
.home-list-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #161616;
}

.home-list-feature img {
  aspect-ratio: 16 / 9;
}

.home-list-card img {
  aspect-ratio: 16 / 10;
}

.home-list-feature div,
.home-list-card div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-list-feature div {
  padding: 28px;
}

.home-list-card div {
  padding: 18px;
}

.home-list-feature span,
.home-list-card span {
  color: #cdb675;
  font-size: 0.82rem;
}

.home-list-feature h3 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.96;
}

.home-list-card h3 {
  font-size: 1.55rem;
  line-height: 1.02;
}

.home-list-feature p,
.home-list-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.band.dark,
.dark-hero {
  background: var(--black);
  color: var(--paper);
}

.band.dark .section-head p,
.band.dark article p,
.dark-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head h2 {
  max-width: 780px;
  margin-top: 8px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
}

.list-grid,
.report-grid,
.event-grid,
.card-grid,
.list-directory-grid {
  display: grid;
  gap: 16px;
}

.list-grid {
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.72fr));
}

.list-feature,
.list-card,
.report-grid article,
.event-grid article,
.card-grid article,
.list-directory-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
}

.list-feature {
  background: var(--black);
  color: white;
}

.list-feature a,
.list-card a,
.report-grid article a,
.event-grid article a,
.card-grid article a,
.list-directory-grid article a {
  min-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.list-grid img {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.list-feature img {
  opacity: 0.92;
}

.list-feature h3 {
  margin-top: 22px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
}

.list-card h3,
.report-grid h3,
.event-grid h3,
.card-grid h2,
.card-grid h3,
.list-directory-grid h3 {
  margin-top: 12px;
  font-size: 1.45rem;
}

.channel-grid,
.archive-grid,
.events-layout,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 324px;
  gap: 40px;
  align-items: start;
}

.channel-title {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.news-river article a {
  display: grid;
  grid-template-columns: 130px 1fr 110px;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.news-river span,
.news-river time {
  color: var(--muted);
}

.pulse-panel,
.side-list {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--paper);
}

.side-list {
  position: sticky;
  top: 168px;
}

.pulse-panel h2,
.side-list h2 {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-size: 1.25rem;
}

.pulse-panel div {
  display: grid;
  grid-template-columns: 1fr 80px 34px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.pulse-panel i {
  width: var(--value);
  height: 8px;
  background: var(--red);
}

.pulse-panel p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.archive-header {
  padding: 56px 0 42px;
  border-bottom: 1px solid var(--line);
}

.channel-archive-header {
  background: var(--black);
  color: white;
  border-bottom: 4px solid var(--section-color, var(--red));
}

.channel-archive-header .breadcrumb,
.channel-archive-header p:not(.breadcrumb) {
  color: rgba(255, 255, 255, 0.7);
}

.channel-archive-header .subnav a {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.archive-header h1 {
  margin-top: 14px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(4rem, 9vw, 7.2rem);
  font-weight: 400;
}

.archive-header p:not(.breadcrumb) {
  max-width: 740px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.86rem;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.subnav a,
.tag-row a {
  border: 1px solid var(--line);
  padding: 8px 11px;
  font-weight: 700;
  font-size: 0.86rem;
}

.archive-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.archive-feature {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.archive-feature img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.archive-feature h2 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.archive-side-rail {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.archive-side-rail h2 {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-size: 1.18rem;
}

.archive-side-rail article a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.archive-side-rail img {
  width: 112px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.archive-side-rail h3 {
  font-size: 1.02rem;
  line-height: 1.24;
}

.archive-side-rail time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.card-grid img,
.report-grid img {
  width: calc(100% + 44px);
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  margin: -22px -22px 18px;
  max-width: none;
  background: var(--soft);
}

.archive-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-card-grid article a {
  min-height: 420px;
}

.archive-card-grid h2 {
  font-size: 1.34rem;
  line-height: 1.16;
}

.article-page {
  padding: 52px 0 82px;
}

.article-grid {
  display: grid;
  grid-template-columns: 56px minmax(0, 860px) minmax(260px, 1fr);
  gap: 38px;
  align-items: start;
}

.share-rail {
  position: sticky;
  top: 178px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.share-rail a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.article-header {
  border-top: 4px solid var(--section-color, var(--red));
  padding-top: 22px;
}

.article-category {
  display: inline-block;
  margin-top: 26px;
  color: var(--section-color, var(--red));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.article-main h1 {
  max-width: 900px;
  margin-top: 16px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.45rem, 4.25vw, 4.25rem);
  font-weight: 400;
  line-height: 1.03;
}

.article-dek {
  max-width: 820px;
  margin-top: 20px;
  color: #444;
  font-size: 1.26rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.article-actions button,
.public-form button {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 16px;
}

.article-hero {
  margin-top: 28px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.article-hero figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 8px;
}

.article-content {
  max-width: 760px;
  margin-top: 34px;
  font-size: 1.12rem;
  line-height: 1.78;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content table {
  margin: 0 0 20px;
}

.article-content h2,
.article-content h3 {
  margin: 34px 0 14px;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 22px 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content td,
.article-content th {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.related {
  border-top: 1px solid var(--line);
}

.related > .wrap > h2 {
  margin-bottom: 22px;
}

.year-group {
  margin-bottom: 64px;
}

.lists-hero {
  padding: 72px 0 44px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lists-hero h1 {
  max-width: 900px;
  margin-top: 12px;
  font-size: clamp(3.1rem, 7vw, 6.1rem);
  line-height: 0.95;
}

.lists-hero p:not(.breadcrumb) {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.12rem;
}

.lists-directory-body {
  padding: 34px 0 78px;
}

.year-tabs-shell {
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.year-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 34px;
  overflow-x: auto;
  padding: 0 0 14px;
  -webkit-overflow-scrolling: touch;
}

.year-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  padding: 0 2px;
  font-size: 1.12rem;
  font-weight: 400;
  cursor: pointer;
}

.year-tabs button.is-active {
  color: var(--red);
  border-color: var(--red);
}

.year-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.year-group-head span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.year-group-head h2 {
  font-size: 3rem;
  line-height: 0.95;
}

.list-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.list-directory-grid article {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.list-directory-grid article:hover {
  border-color: #bcbcbc;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.list-directory-grid article a {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.list-directory-grid img {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9.2;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.list-directory-card-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.list-directory-card-body span {
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.list-directory-grid h3 {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1;
}

.list-directory-grid p {
  color: #444;
}

.list-directory-feature {
  grid-column: span 2;
}

.list-directory-feature img {
  aspect-ratio: 16 / 8.4;
}

.list-directory-feature h3 {
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
}

.list-hero {
  background: var(--black);
  color: white;
  padding: 62px 0;
}

.list-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
}

.list-hero h1 {
  margin-top: 14px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.list-hero p:not(.breadcrumb) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.list-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.ranking-table {
  margin-top: 28px;
  border-top: 2px solid var(--ink);
}

.ranking-table article {
  display: grid;
  grid-template-columns: 76px 1fr 140px;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-table strong {
  color: var(--red);
  font-family: "FA Serif", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.ranking-table h2 {
  font-size: 1.4rem;
}

.ranking-table p,
.ranking-table small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.form-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
}

.form-grid h1 {
  font-family: "FA Serif", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-top: 14px;
}

.form-grid > div > p {
  margin-top: 14px;
  color: var(--muted);
}

.raw-html-content {
  min-height: 360px;
}

.raw-html-content > *:first-child {
  margin-top: 0;
}

.public-form {
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.public-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.public-form input,
.public-form textarea {
  border: 1px solid var(--line);
  padding: 11px;
  width: 100%;
}

.public-form button {
  background: var(--black);
  color: white;
  font-weight: 700;
}

.narrow {
  max-width: 820px;
}

.page-hero {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.flash-wrap {
  padding-top: 20px;
}

.flash {
  border: 1px solid var(--line);
  padding: 12px 14px;
}

.flash.success {
  border-color: #9ac7a2;
}

.flash.error {
  border-color: var(--red);
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid #242424;
}

.footer-grid {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  color: white;
}

.site-footer p {
  max-width: 520px;
  margin-top: 12px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav a:hover {
  color: var(--hover-color, white);
}

article h1,
article h2,
article h3,
.strip-track a,
.popular-box a,
.side-list a,
.nav-mega-grid strong {
  transition: color 160ms ease;
}

article a:hover h1,
article a:hover h2,
article a:hover h3,
article a:active h1,
article a:active h2,
article a:active h3,
.strip-track a:hover,
.strip-track a:active,
.popular-box a:hover,
.popular-box a:active,
.side-list a:hover,
.side-list a:active,
.nav-mega-grid a:hover strong {
  color: var(--red);
}

.home-front {
  padding: 54px 0 76px;
}

.home-front .section-line {
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.home-front .section-line h1 {
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 400;
  line-height: 0.98;
}

.front-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(285px, 0.56fr) minmax(300px, 0.6fr);
  gap: 30px;
  align-items: stretch;
}

.lead-card,
.mini-card {
  min-width: 0;
}

.lead-card a,
.mini-card a {
  display: grid;
  height: 100%;
  align-content: start;
}

.lead-card a {
  grid-template-rows: auto auto auto 1fr auto;
}

.lead-card img {
  aspect-ratio: 16 / 9;
  border: 0;
}

.lead-card h2 {
  font-size: clamp(2.05rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.lead-card p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.secondary-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100%;
  gap: 24px;
}

.mini-card {
  padding-bottom: 0;
}

.mini-card img {
  aspect-ratio: 16 / 9.6;
  border: 0;
}

.mini-card h3 {
  font-size: clamp(1.32rem, 1.55vw, 1.72rem);
  line-height: 1.08;
}

.mini-card p {
  line-height: 1.44;
}

.popular-box {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 2px solid var(--ink);
}

.popular-box a {
  padding: 18px 0;
  font-size: 1.08rem;
}

.tabs-static {
  font-size: 1.22rem;
}

.channel-module {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 30px;
  align-items: stretch;
}

.home-channel-ledger .channel-module,
.home-channel-showcase .channel-module {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
}

.channel-lead a {
  height: 100%;
}

.channel-lead-media img,
.channel-lead img {
  aspect-ratio: 16 / 8.8;
  min-height: 0;
  max-height: none;
}

.home-channel-ledger .channel-lead-media img,
.home-channel-ledger .channel-lead img,
.home-channel-showcase .channel-lead-media img,
.home-channel-showcase .channel-lead img {
  aspect-ratio: 16 / 8.8;
  max-height: none;
}

.channel-lead-copy,
.home-channel-ledger .channel-lead-copy,
.home-channel-showcase .channel-lead-copy {
  min-height: 0;
  padding: 24px 28px 28px;
}

.channel-lead-copy h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 2.55vw, 3.05rem);
  line-height: 1.02;
}

.channel-lead-copy p {
  max-width: 720px;
}

.channel-side,
.home-channel-showcase .channel-side {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-content: stretch;
  border-top: 0;
}

.channel-side article,
.home-channel-showcase .channel-side article {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.channel-side article:last-child,
.home-channel-showcase .channel-side article:last-child {
  border-bottom: 1px solid var(--line);
}

.channel-side a,
.home-channel-showcase .channel-side a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  height: 100%;
  padding: 16px 0;
  align-items: stretch;
}

.channel-side img,
.home-channel-showcase .channel-side img {
  width: 132px;
  height: 100%;
  min-height: 112px;
  aspect-ratio: auto;
  object-fit: cover;
}

.channel-side div,
.home-channel-showcase .channel-side div {
  display: grid;
  align-content: start;
  padding: 0;
}

.channel-side h3 {
  font-size: clamp(1.08rem, 1.22vw, 1.32rem);
}

.home-channel-showcase .channel-side {
  grid-template-columns: 1fr;
}

.channel-brief-grid,
.home-channel-ledger .channel-brief-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.channel-brief-grid article a,
.home-channel-ledger .channel-brief-grid article a {
  grid-template-columns: 104px minmax(0, 1fr);
}

.channel-brief-grid img,
.home-channel-ledger .channel-brief-grid img {
  width: 104px;
  aspect-ratio: 16 / 10;
}

.home-lists-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.54fr) minmax(260px, 0.54fr);
  gap: 22px;
  align-items: stretch;
}

.home-list-feature {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-list-feature a,
.home-list-card a {
  min-height: 100%;
}

.home-list-feature img {
  aspect-ratio: 16 / 9.4;
}

.home-list-feature div {
  min-height: 0;
  padding: 30px 32px 34px;
}

.home-list-feature h3 {
  font-size: clamp(2.35rem, 3.75vw, 4.05rem);
}

.home-list-card a {
  grid-template-rows: auto 1fr;
}

.home-list-card h3 {
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
}

.home-list-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.home-list-card:nth-child(4) a {
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
}

.home-list-card:nth-child(4) img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.home-list-card:nth-child(4) div {
  align-content: center;
}

.article-main h1 {
  font-size: clamp(2.05rem, 3.2vw, 3.45rem);
  line-height: 1.04;
}

.related .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.related .card-grid article a {
  min-height: 0;
  padding: 16px;
}

.related .card-grid img {
  width: calc(100% + 32px);
  margin: -16px -16px 14px;
  aspect-ratio: 16 / 10.5;
}

.related .card-grid h3 {
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.12;
}

.list-directory-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.62fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(304px, auto);
  gap: 24px;
  align-items: stretch;
}

.list-directory-feature {
  grid-column: 1;
  grid-row: span 2;
}

.list-directory-grid article:nth-child(2),
.list-directory-grid article:nth-child(3) {
  grid-column: 2;
}

.list-directory-grid article:nth-child(n + 4) {
  grid-column: auto;
}

.list-directory-grid article a {
  min-height: 100%;
}

.list-directory-feature img {
  aspect-ratio: 16 / 9;
}

.list-directory-grid article:nth-child(2) img,
.list-directory-grid article:nth-child(3) img {
  aspect-ratio: 16 / 8.7;
}

.list-directory-card-body span {
  color: var(--gold);
}

.list-directory-feature .list-directory-card-body {
  padding: 30px 34px 34px;
}

.list-directory-feature h3 {
  font-size: clamp(2.65rem, 4vw, 4.45rem);
}

.mobile-menu-toggle {
  margin-left: auto;
}

@media (max-width: 1060px) {
  .front-grid,
  .list-grid,
  .report-grid,
  .channel-module,
  .home-lists-layout,
  .channel-editorial-grid,
  .channel-split-grid,
  .channel-magazine-grid,
  .channel-ledger-grid,
  .archive-lead-grid,
  .archive-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .popular-box,
  .list-feature {
    grid-column: 1 / -1;
  }

  .article-grid,
  .archive-grid,
  .channel-grid,
  .events-layout,
  .form-grid,
  .home-channel-head {
    grid-template-columns: 1fr;
  }

  .channel-lead a,
  .home-channel-balanced .channel-lead a,
  .home-channel-ledger .channel-lead a,
  .home-channel-showcase .channel-lead a {
    grid-template-columns: 1fr;
  }

  .home-channel-showcase .channel-module,
  .home-channel-ledger .channel-module {
    grid-template-columns: 1fr;
  }

  .home-lists-layout {
    grid-template-columns: 1fr 1fr;
  }

  .home-list-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .nav-mega {
    display: none;
  }

  .share-rail,
  .side-list {
    position: static;
  }

  .share-rail {
    display: none;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .utility,
  .issue-link,
  .search-icon,
  .nav-row {
    display: none;
  }

  .brand-inner {
    min-height: 66px;
    justify-content: space-between;
  }

  .brand {
    font-size: 2rem;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .mobile-menu-open .mobile-menu-panel {
    display: block;
  }

  .strip-layout {
    grid-template-columns: 38px 1fr 38px;
    min-height: 148px;
    gap: 8px;
  }

  .strip-window {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .strip-track {
    grid-auto-columns: 100%;
  }

  .strip-track article {
    border-right: 0;
    min-height: auto;
  }

  .latest-label {
    justify-self: start;
  }

  .front-grid,
  .list-grid,
  .card-grid,
  .list-directory-grid,
  .report-grid,
  .event-grid,
  .channel-module,
  .channel-side,
  .channel-brief-grid,
  .home-lists-layout,
  .channel-editorial-grid,
  .channel-split-grid,
  .channel-magazine-grid,
  .channel-ledger-grid,
  .compact-story-grid-four,
  .compact-story-grid-two,
  .archive-lead-grid,
  .archive-card-grid {
    grid-template-columns: 1fr;
  }

  .home-channel-ledger .channel-module,
  .home-channel-showcase .channel-module,
  .home-channel-showcase .channel-side {
    grid-template-columns: 1fr;
  }

  .channel-lead a,
  .channel-side a,
  .home-channel-ledger .channel-side a,
  .home-channel-showcase .channel-side a,
  .channel-brief-grid article a,
  .home-channel-ledger .channel-brief-grid article a {
    grid-template-columns: 1fr;
  }

  .channel-side img,
  .home-channel-showcase .channel-side img,
  .channel-brief-grid img,
  .home-channel-ledger .channel-brief-grid img {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .popular-box,
  .list-feature {
    grid-column: auto;
  }

  .lead-card img,
  .archive-feature img,
  .story-card img,
  .channel-lead-media img,
  .channel-lead img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .lead-card h2,
  .archive-feature h2 {
    font-size: 1.9rem;
  }

  .section-head,
  .section-line,
  .channel-title {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .section-head h2,
  .archive-header h1,
  .lists-hero h1,
  .list-hero h1,
  .form-grid h1 {
    font-size: 2.45rem;
  }

  .news-river article a,
  .ranking-table article,
  .list-hero-grid {
    grid-template-columns: 1fr;
  }

  .compact-story a,
  .magazine-rail a,
  .archive-side-rail article a,
  .ledger-list article a {
    grid-template-columns: 1fr;
  }

  .compact-story img,
  .magazine-rail img,
  .archive-side-rail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    grid-column: auto;
    grid-row: auto;
  }

  .magazine-rail {
    border-left: 0;
    padding-left: 0;
  }

  .year-tabs {
    gap: 24px;
  }

  .year-group-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .list-directory-feature {
    grid-column: auto;
  }

  .list-directory-feature h3,
  .list-directory-grid h3 {
    font-size: 2.1rem;
  }

  .article-main h1 {
    font-size: 2.28rem;
  }

  .home-channel {
    padding: 46px 0 54px;
  }

  .channel-lead-copy {
    padding: 22px;
    border-left: 1px solid var(--line);
  }

  .channel-lead-copy h2 {
    font-size: 1.85rem;
  }

  .channel-side,
  .home-channel-showcase .channel-side {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    border-top: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .channel-side article,
  .home-channel-showcase .channel-side article {
    flex: 0 0 76%;
    border: 1px solid var(--line);
    background: #fff;
    scroll-snap-align: start;
  }

  .channel-side a,
  .home-channel-showcase .channel-side a {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .channel-side div,
  .home-channel-showcase .channel-side div {
    padding: 14px;
  }

  .channel-side h3 {
    font-size: 1.22rem;
  }

  .channel-brief-grid {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .channel-brief-grid article {
    border-bottom: 1px solid var(--line);
  }

  .channel-brief-grid article:nth-child(n+3) {
    display: none;
  }

  .channel-brief-grid article a,
  .home-channel-ledger .channel-brief-grid article a {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .channel-brief-grid img,
  .home-channel-ledger .channel-brief-grid img {
    width: 86px;
    aspect-ratio: 1 / 1;
  }

  .channel-brief-grid h3 {
    font-size: 1rem;
  }

  .home-lists-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-list-feature h3,
  .home-lists-head h2 {
    font-size: 2.35rem;
  }

  .home-list-card a {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: stretch;
  }

  .home-list-card img {
    width: 118px;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .home-list-card div {
    padding: 14px;
  }

  .home-list-card h3 {
    font-size: 1.28rem;
  }

  .home-list-card p {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

}

@media (max-width: 1060px) {
  .related .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-list-card:nth-child(4) {
    grid-column: auto;
  }

  .home-list-card:nth-child(4) a {
    grid-template-columns: 1fr;
  }

  .home-list-card:nth-child(4) img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .related .card-grid {
    grid-template-columns: 1fr;
  }

  .article-main h1 {
    font-size: 2rem;
  }

  .list-directory-feature {
    grid-row: auto;
  }

  .mobile-menu-toggle {
    margin-left: auto;
    margin-right: -16px;
  }
}

@keyframes iaRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.home-front,
.market-cap-home,
.home-lists,
.home-channel {
  animation: iaRise 520ms ease both;
}

article img,
.market-cap-frame {
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

article a:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.02);
}

.front-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-front .section-line {
  align-items: end;
  border-bottom: 2px solid var(--ink);
}

.front-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.48fr) minmax(310px, 0.48fr);
  align-items: start;
}

.lead-card a,
.mini-card a {
  display: block;
  height: auto;
}

.lead-card img {
  aspect-ratio: 16 / 8.9;
}

.lead-card h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.8vw, 4.35rem);
  line-height: 0.98;
}

.secondary-stack {
  grid-template-rows: none;
  height: auto;
}

.mini-card {
  padding-bottom: 20px;
}

.popular-box {
  min-height: 0;
}

.market-cap-home {
  padding: 70px 0 76px;
  border-top: 1px solid var(--line);
  background: #f7f7f7;
}

.market-cap-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.market-cap-head .eyebrow {
  margin-top: 0;
  color: var(--gold);
}

.market-cap-head h2 {
  margin-top: 8px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.market-cap-head p {
  max-width: 720px;
  margin-top: 12px;
  color: #444;
  font-size: 1.08rem;
}

.market-cap-head a {
  color: var(--muted);
  font-weight: 700;
}

.market-cap-frame {
  overflow: hidden;
  border: 1px solid #cfcfcf;
  background: #050505;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.market-cap-frame:hover {
  transform: translateY(-2px);
}

.market-cap-frame iframe {
  display: block;
  width: 100%;
  height: min(68vh, 720px);
  min-height: 520px;
  border: 0;
  background: #050505;
}

.home-lists {
  padding: 76px 0 84px;
}

.home-lists-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  grid-template-rows: repeat(3, minmax(162px, 1fr));
  align-items: stretch;
}

.home-list-feature {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.home-list-card,
.home-list-card:nth-child(4) {
  grid-column: 2;
}

.home-list-card a,
.home-list-card:nth-child(4) a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 100%;
}

.home-list-card img,
.home-list-card:nth-child(4) img {
  width: 150px;
  height: 100%;
  aspect-ratio: auto;
}

.home-list-card div,
.home-list-card:nth-child(4) div {
  padding: 20px;
  align-content: center;
}

.home-list-card h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.home-list-feature div {
  padding: 34px 38px;
}

.home-list-feature h3 {
  font-size: clamp(2.8rem, 5.2vw, 5.35rem);
}

.home-channel {
  padding: 72px 0 78px;
}

.home-channel-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--section-color, var(--ink));
}

.channel-pattern-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(178px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.pattern-rail {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pattern-feature {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-bottom: 1px solid var(--line);
}

.pattern-quad {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-content: stretch;
}

.home-channel-pattern-right .pattern-rail {
  grid-column: 2;
}

.home-channel-pattern-right .channel-pattern-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.home-channel-pattern-right .pattern-feature,
.home-channel-pattern-right .pattern-quad {
  grid-column: 1;
}

.pattern-rail article,
.pattern-feature,
.pattern-quad article,
.spotlight-feature,
.spotlight-rail article,
.spotlight-strip article {
  min-width: 0;
}

.pattern-rail article a,
.pattern-feature a,
.pattern-quad article a,
.spotlight-feature a,
.spotlight-rail article a,
.spotlight-strip article a {
  display: grid;
  height: 100%;
  color: inherit;
}

.pattern-rail article a {
  align-content: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.pattern-rail img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.pattern-rail h3 {
  margin-top: 8px;
  font-size: clamp(1.32rem, 1.65vw, 1.86rem);
  line-height: 1.05;
}

.pattern-feature a {
  align-content: start;
}

.pattern-feature img {
  width: 100%;
  aspect-ratio: 16 / 7.3;
  object-fit: cover;
}

.pattern-feature h2 {
  max-width: 880px;
  margin-top: 10px;
  font-size: clamp(2.25rem, 3.45vw, 4.05rem);
  line-height: 0.98;
}

.pattern-feature p {
  max-width: 740px;
  margin-top: 10px;
  color: #444;
}

.pattern-quad article a {
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.pattern-quad img {
  width: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pattern-quad .kicker {
  margin-top: 0;
}

.pattern-quad h3 {
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.16;
}

.channel-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 34px;
  align-items: stretch;
}

.spotlight-feature {
  border-bottom: 1px solid var(--line);
}

.spotlight-feature img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.spotlight-feature h2 {
  max-width: 820px;
  margin-top: 10px;
  font-size: clamp(2.35rem, 3.9vw, 4.55rem);
  line-height: 0.97;
}

.spotlight-feature p {
  max-width: 760px;
  margin-top: 12px;
  color: #444;
  font-size: 1.05rem;
}

.spotlight-rail {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.spotlight-rail article {
  border-bottom: 1px solid var(--line);
}

.spotlight-rail article a {
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.spotlight-rail img {
  grid-column: 2;
  grid-row: 1;
  width: 122px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spotlight-rail .kicker {
  margin-top: 0;
}

.spotlight-rail h3 {
  margin-top: 6px;
  font-size: clamp(1.22rem, 1.55vw, 1.7rem);
  line-height: 1.08;
}

.spotlight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.spotlight-strip article a {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.spotlight-strip img {
  width: 112px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.spotlight-strip h3 {
  font-size: 1.02rem;
  line-height: 1.16;
}

.lists-directory-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.lists-directory-layout .year-tabs-shell {
  position: sticky;
  top: 168px;
  margin: 0;
  padding-top: 8px;
  border-bottom: 0;
}

.lists-directory-layout .year-tabs-shell > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.lists-directory-layout .year-tabs {
  display: grid;
  gap: 12px;
  overflow: visible;
  padding: 0;
}

.lists-directory-layout .year-tabs button {
  justify-self: start;
  min-height: 34px;
  font-size: 1.3rem;
}

.year-panel-stack {
  min-width: 0;
}

.year-group-head {
  margin-bottom: 28px;
}

.list-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(246px, auto);
  gap: 24px;
}

.list-directory-feature {
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.list-directory-grid article:nth-child(2),
.list-directory-grid article:nth-child(3) {
  grid-column: 3;
}

.list-directory-grid article:nth-child(n + 4) {
  grid-column: auto;
  grid-row: auto;
}

.list-directory-grid img {
  aspect-ratio: 16 / 9.4;
}

.list-directory-feature img {
  aspect-ratio: 16 / 8.7;
}

.list-directory-card-body {
  padding: 22px;
}

.list-directory-feature .list-directory-card-body {
  padding: 28px 32px;
}

.list-directory-feature h3 {
  font-size: clamp(2.8rem, 4.3vw, 4.8rem);
}

@media (prefers-reduced-motion: reduce) {
  .home-front,
  .market-cap-home,
  .home-lists,
  .home-channel,
  article img,
  .market-cap-frame {
    animation: none;
    transition: none;
  }

  article a:hover img,
  .market-cap-frame:hover {
    transform: none;
  }
}

@media (max-width: 1060px) {
  .front-grid,
  .channel-pattern-grid,
  .channel-spotlight-grid,
  .lists-directory-layout {
    grid-template-columns: 1fr;
  }

  .pattern-rail,
  .pattern-feature,
  .pattern-quad,
  .home-channel-pattern-right .pattern-rail,
  .home-channel-pattern-right .pattern-feature,
  .home-channel-pattern-right .pattern-quad {
    grid-column: auto;
    grid-row: auto;
  }

  .pattern-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .pattern-quad,
  .spotlight-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-lists-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .home-list-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .home-list-card,
  .home-list-card:nth-child(4) {
    grid-column: auto;
  }

  .lists-directory-layout .year-tabs-shell {
    position: static;
  }

  .lists-directory-layout .year-tabs {
    display: flex;
    gap: 24px;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .market-cap-head,
  .home-lists-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .market-cap-frame iframe {
    min-height: 480px;
    height: 62vh;
  }

  .pattern-rail,
  .pattern-quad,
  .spotlight-strip,
  .list-directory-grid,
  .home-lists-layout {
    grid-template-columns: 1fr;
  }

  .pattern-quad article a,
  .spotlight-strip article a,
  .home-list-card a,
  .home-list-card:nth-child(4) a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-list-card img,
  .home-list-card:nth-child(4) img {
    width: 96px;
  }

  .spotlight-rail article a {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .spotlight-rail img {
    width: 96px;
  }

  .list-directory-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .list-directory-grid article:nth-child(2),
  .list-directory-grid article:nth-child(3),
  .list-directory-grid article:nth-child(n + 4) {
    grid-column: auto;
  }

  .lead-card h2,
  .pattern-feature h2,
  .spotlight-feature h2,
  .home-list-feature h3,
  .list-directory-feature h3 {
    font-size: 2.35rem;
  }
}

/* Focused polish: lighter motion and Forbes-style editorial modules. */
.home-front,
.market-cap-home,
.home-lists,
.home-channel {
  animation: none;
}

article img,
.market-cap-frame {
  transition: transform 160ms ease;
}

article a:hover img {
  transform: scale(1.012);
  filter: none;
}

.home-front .front-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 36px;
  align-items: start;
}

.front-main-column {
  min-width: 0;
}

.home-front .lead-card img {
  aspect-ratio: 16 / 8.9;
}

.home-front .lead-card h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 3.45vw, 4rem);
  line-height: 0.98;
}

.home-front .secondary-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  height: auto;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.home-front .mini-card {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-front .mini-card img {
  aspect-ratio: 16 / 9.2;
}

.home-front .mini-card h3 {
  font-size: clamp(1.16rem, 1.35vw, 1.48rem);
  line-height: 1.08;
}

.home-front .popular-box {
  min-height: 0;
  border-top: 2px solid var(--ink);
}

.home-front .popular-box article {
  border-bottom: 1px dashed #cfcfcf;
}

.home-front .popular-box article a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 0;
  font-weight: 400;
}

.home-front .popular-box img {
  width: 104px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-front .popular-box .kicker {
  margin-top: 0;
}

.home-front .popular-box h3 {
  margin-top: 5px;
  font-size: 1.08rem;
  line-height: 1.14;
}

.market-cap-home .wrap {
  width: 100%;
  max-width: none;
}

.market-cap-home {
  padding: 74px 0 0;
}

.market-cap-head {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.market-cap-frame {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.market-cap-frame:hover {
  transform: none;
}

.market-cap-frame iframe {
  height: min(82vh, 860px);
  min-height: 680px;
}

.home-lists-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(340px, 0.78fr);
  grid-template-rows: none;
  gap: 34px;
  align-items: start;
}

.home-list-left {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.home-list-feature {
  grid-column: auto;
  grid-row: auto;
  border: 0;
  background: transparent;
}

.home-list-feature a {
  display: block;
  min-height: 0;
}

.home-list-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

.home-list-feature div {
  padding: 22px 0 0;
}

.home-list-feature h3 {
  max-width: 920px;
  font-size: clamp(2.2rem, 3.25vw, 3.55rem);
}

.home-list-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-list-mini a {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: white;
}

.home-list-mini img {
  width: 164px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

.home-list-mini h3 {
  font-size: clamp(1.05rem, 1.28vw, 1.28rem);
  line-height: 1.14;
}

.home-list-right {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: space-between;
  min-width: 0;
}

.home-list-side {
  border: 0;
  background: transparent;
}

.home-list-side a {
  display: grid;
  min-height: 0;
  color: white;
}

.home-list-side img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

.home-list-side h3 {
  margin-top: 13px;
  font-size: clamp(1.28rem, 1.58vw, 1.65rem);
  line-height: 1.08;
}

.home-list-side p {
  display: none;
}

.archive-feature h2 {
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.archive-side-rail article a {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
}

.archive-side-rail img {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.archive-side-rail .kicker,
.archive-side-rail h3,
.archive-side-rail time {
  grid-column: 2;
}

.archive-side-rail .kicker {
  margin-top: 0;
}

.archive-side-rail h3 {
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.archive-side-rail time {
  margin-top: 7px;
}

@media (max-width: 1060px) {
  .home-front .front-grid,
  .home-lists-layout {
    grid-template-columns: 1fr;
  }

  .home-list-left {
    padding-right: 0;
    border-right: 0;
  }

  .home-list-right {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-cap-frame iframe {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .home-front .secondary-stack,
  .home-list-mini-grid,
  .home-list-right {
    grid-template-columns: 1fr;
  }

  .home-front .popular-box article a,
  .home-list-mini a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-front .popular-box img,
  .home-list-mini img {
    grid-column: 1;
    grid-row: 1;
    width: 96px;
  }

  .home-front .popular-box article a > div {
    grid-column: 2;
  }

  .market-cap-frame iframe {
    min-height: 560px;
    height: 70vh;
  }

  .archive-side-rail article a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .archive-side-rail img {
    width: 96px;
  }
}

/* Navigation, market intelligence and mobile home polish. */
.brand-actions {
  margin-left: auto;
  gap: 0;
}

.issue-link {
  border-color: #ec3535;
  background: #ec3535;
  color: #fff;
  padding: 11px 18px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.02rem;
  line-height: 1;
}

.issue-link:hover,
.issue-link:focus-visible {
  border-color: #e23542;
  background: #e23542;
  color: #fff;
}

.search-icon {
  display: none !important;
}

.market-cap-home .wrap {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
}

.market-cap-home {
  padding: 76px 0 84px;
  border-top: 10px solid var(--black);
  border-bottom: 1px solid #d8d8d8;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0) 34%),
    #f6f6f4;
}

.market-cap-head {
  width: auto;
  max-width: none;
  margin-inline: 0;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.market-cap-head h2 {
  margin-top: 0;
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  line-height: 0.94;
}

.market-cap-frame {
  width: 100%;
  margin-left: 0;
  border: 1px solid #c7c7c7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.market-cap-frame iframe {
  height: min(58vh, 620px);
  min-height: 500px;
}

.home-lists-head h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4.6vw, 5rem);
  line-height: 0.95;
}

.home-lists-head p {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .brand-actions {
    display: none;
  }

  .brand-inner {
    min-height: 72px;
  }

  .brand {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    margin-left: auto;
    margin-right: 0;
  }

  .home-front {
    padding: 38px 0 48px;
  }

  .home-front .section-line {
    align-items: start;
    margin-bottom: 22px;
    padding-bottom: 14px;
  }

  .home-front .section-line h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 0.95;
  }

  .home-front .section-line a {
    font-size: 0.9rem;
  }

  .home-front .front-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-front .lead-card img {
    aspect-ratio: 16 / 10;
  }

  .home-front .lead-card h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 0.98;
  }

  .home-front .lead-card p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .home-front .secondary-stack {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
    padding-top: 0;
  }

  .home-front .mini-card {
    border-bottom: 1px solid var(--line);
  }

  .home-front .mini-card a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
  }

  .home-front .mini-card img {
    grid-row: 1 / span 3;
    width: 112px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .home-front .mini-card h3 {
    margin-top: 4px;
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .home-front .mini-card p {
    display: none;
  }

  .home-front .popular-box {
    display: block;
    margin-top: 4px;
    border-top: 2px solid var(--ink);
  }

  .home-front .popular-box article:nth-of-type(n + 5) {
    display: none;
  }

  .home-front .popular-box article a {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 14px;
    padding: 14px 0;
  }

  .home-front .popular-box img {
    width: 92px;
    aspect-ratio: 4 / 3;
  }

  .home-front .popular-box h3 {
    font-size: 1rem;
    line-height: 1.12;
  }

  .market-cap-home {
    padding: 48px 0 56px;
    border-top-width: 8px;
  }

  .market-cap-home .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .market-cap-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .market-cap-head h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .market-cap-head p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .market-cap-frame {
    width: 100%;
    margin-left: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .market-cap-frame iframe {
    height: 430px;
    min-height: 430px;
  }

  .home-lists {
    padding: 50px 0 56px;
  }

  .home-lists-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
  }

  .home-lists-head h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .home-lists-head p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .home-lists-layout,
  .home-list-left,
  .home-list-right {
    grid-template-columns: 1fr;
  }

  .home-list-left {
    gap: 20px;
    padding-right: 0;
    border-right: 0;
  }

  .home-list-feature div {
    padding-top: 16px;
  }

  .home-list-feature h3 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1;
  }

  .home-list-mini-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 14px;
  }

  .home-list-mini {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-list-mini a,
  .home-list-side a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 0;
  }

  .home-list-mini img,
  .home-list-side img {
    width: 112px;
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }

  .home-list-mini h3,
  .home-list-side h3 {
    margin-top: 0;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .home-list-right {
    gap: 0;
    align-content: start;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-list-side {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-channel {
    padding: 48px 0 54px;
  }

  .home-channel-head {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .channel-name {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 0.95;
  }

  .home-channel-head p {
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .channel-pattern-grid,
  .channel-spotlight-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
    align-items: start;
  }

  .pattern-feature {
    order: -1;
  }

  .pattern-rail {
    order: 2;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .pattern-quad {
    order: 3;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .pattern-feature img,
  .spotlight-feature img {
    aspect-ratio: 16 / 10;
  }

  .pattern-feature h2,
  .spotlight-feature h2 {
    font-size: clamp(1.88rem, 8.2vw, 2.35rem);
    line-height: 1;
  }

  .pattern-feature p,
  .spotlight-feature p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .pattern-rail article a,
  .pattern-quad article a,
  .spotlight-rail article a,
  .spotlight-strip article a {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .pattern-rail img,
  .pattern-quad img,
  .spotlight-rail img,
  .spotlight-strip img {
    grid-column: 1;
    grid-row: 1 / span 4;
    width: 104px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .pattern-rail .kicker,
  .pattern-rail h3,
  .pattern-rail .meta,
  .pattern-quad div,
  .spotlight-rail div,
  .spotlight-strip h3 {
    grid-column: 2;
  }

  .pattern-rail h3,
  .pattern-quad h3,
  .spotlight-rail h3,
  .spotlight-strip h3 {
    margin-top: 4px;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .spotlight-rail {
    grid-template-rows: none;
  }

  .spotlight-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
    padding-top: 0;
  }
}

/* Category rail and narrow-home layout correction. */
.archive-side-rail article a {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.archive-side-rail img {
  grid-column: 1;
  grid-row: 1;
  width: 150px;
}

.archive-side-rail .kicker {
  grid-column: 1;
  grid-row: 2;
  margin-top: 8px;
}

.archive-side-rail h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.archive-side-rail time {
  grid-column: 2;
  grid-row: 2;
  margin-top: 12px;
}

@media (max-width: 1060px) {
  body {
    overflow-x: hidden;
  }

  .utility,
  .nav-row,
  .brand-actions {
    display: none;
  }

  .brand-inner {
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
  }

  .mobile-menu-open .mobile-menu-panel {
    display: block;
  }

  .latest-strip,
  .strip-window,
  .strip-track {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-front .front-grid,
  .channel-pattern-grid,
  .home-channel-pattern-right .channel-pattern-grid,
  .channel-spotlight-grid,
  .home-lists-layout {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 28px;
    align-items: start;
  }

  .home-front .secondary-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-front .popular-box article a {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
  }

  .home-front .popular-box img {
    grid-column: 1;
    grid-row: 1;
    width: 132px;
  }

  .home-front .popular-box article a > div {
    grid-column: 2;
  }

  .pattern-feature,
  .spotlight-feature,
  .home-channel-pattern-right .pattern-feature {
    order: -1;
    grid-column: auto;
    grid-row: auto;
  }

  .pattern-rail,
  .pattern-quad,
  .spotlight-rail,
  .spotlight-strip,
  .home-channel-pattern-right .pattern-rail,
  .home-channel-pattern-right .pattern-quad {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
  }

  .pattern-rail,
  .pattern-quad,
  .spotlight-rail,
  .spotlight-strip {
    border-top: 1px solid var(--line);
  }

  .pattern-rail article a,
  .pattern-quad article a,
  .spotlight-rail article a,
  .spotlight-strip article a {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .pattern-rail img,
  .pattern-quad img,
  .spotlight-rail img,
  .spotlight-strip img {
    grid-column: 1;
    grid-row: 1 / span 4;
    width: 168px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .pattern-rail .kicker,
  .pattern-rail h3,
  .pattern-rail .meta,
  .pattern-quad div,
  .spotlight-rail div,
  .spotlight-strip h3 {
    grid-column: 2;
  }

  .pattern-rail h3,
  .pattern-quad h3,
  .spotlight-rail h3,
  .spotlight-strip h3 {
    margin-top: 4px;
    font-size: clamp(1.1rem, 2.35vw, 1.45rem);
    line-height: 1.12;
  }

  .pattern-feature h2,
  .spotlight-feature h2 {
    font-size: clamp(2.1rem, 5vw, 3rem);
    line-height: 1;
  }

  .pattern-feature p,
  .spotlight-feature p {
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media (max-width: 760px) {
  .archive-side-rail article a {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .archive-side-rail img {
    width: 112px;
  }

  .archive-side-rail .kicker {
    font-size: 0.82rem;
  }

  .archive-side-rail h3 {
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .home-front .popular-box article a {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
  }

  .home-front .popular-box img {
    grid-column: 1;
    grid-row: 1;
    width: 96px;
  }

  .home-front .popular-box article a > div {
    grid-column: 2;
  }

  .home-front .popular-box h3 {
    width: auto;
    font-size: 1rem;
    line-height: 1.14;
  }

  .home-front .secondary-stack {
    grid-template-columns: 1fr;
  }

  .pattern-rail article a,
  .pattern-quad article a,
  .spotlight-rail article a,
  .spotlight-strip article a {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .pattern-rail img,
  .pattern-quad img,
  .spotlight-rail img,
  .spotlight-strip img {
    width: 104px;
    aspect-ratio: 4 / 3;
  }

  .pattern-rail h3,
  .pattern-quad h3,
  .spotlight-rail h3,
  .spotlight-strip h3 {
    font-size: 1.02rem;
    line-height: 1.14;
  }

  .pattern-rail .meta {
    display: none;
  }

  .pattern-feature h2,
  .spotlight-feature h2 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1;
  }

  .channel-name {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
}

/* FigureAsia Now: fixed 1+2 / 6+1 editorial grid. */
@media (min-width: 1061px) {
  .home-front .front-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(330px, 1fr);
    grid-template-areas:
      "lead popular"
      "secondary secondary";
    gap: 30px 36px;
    align-items: stretch;
  }

  .home-front .lead-card {
    grid-area: lead;
    min-width: 0;
  }

  .home-front .lead-card a {
    height: 100%;
  }

  .home-front .lead-card img {
    aspect-ratio: 16 / 8.9;
  }

  .home-front .lead-card h2 {
    max-width: 820px;
    font-size: clamp(2.25rem, 3.45vw, 4rem);
    line-height: 0.98;
  }

  .home-front .popular-box {
    grid-area: popular;
    display: grid;
    grid-template-rows: auto repeat(6, minmax(0, 1fr));
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }

  .home-front .popular-box article {
    min-height: 0;
    border-bottom: 1px dashed #cfcfcf;
  }

  .home-front .popular-box article:last-child {
    border-bottom: 0;
  }

  .home-front .popular-box article a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 16px;
    height: 100%;
    min-height: 0;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0;
    font-weight: 400;
  }

  .home-front .popular-box img {
    width: 104px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .home-front .popular-box h3 {
    margin-top: 5px;
    font-size: clamp(0.98rem, 0.95vw, 1.1rem);
    line-height: 1.12;
  }

  .home-front .secondary-stack {
    grid-area: secondary;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    height: auto;
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .home-front .mini-card img {
    aspect-ratio: 16 / 9.2;
  }
}

@media (max-width: 1060px) {
  .home-front .front-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "secondary"
      "popular";
    gap: 26px;
    align-items: start;
  }

  .home-front .lead-card {
    grid-area: lead;
  }

  .home-front .popular-box {
    grid-area: popular;
  }

  .home-front .secondary-stack {
    grid-area: secondary;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .home-front .front-grid {
    gap: 22px;
  }

  .home-front .secondary-stack {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }
}

/* Final homepage proportion pass: taller lead media, quieter headlines, faster motion. */
article a img,
.archive-feature img,
.list-directory-feature img,
.home-list-feature img,
.home-list-mini img,
.home-list-side img,
.article-hero img,
.list-hero img,
.page-hero {
  display: block;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 95ms cubic-bezier(0.2, 0, 0.2, 1);
}

.article-hero img,
.list-hero img,
.page-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.article-content img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

article a:hover img,
article a:focus-visible img {
  transform: translateZ(0) scale(1.018);
  filter: none;
}

.home-front .section-line h1 {
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 0.98;
}

.market-cap-head h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  line-height: 0.98;
}

.home-lists-head h2 {
  font-size: clamp(2rem, 3.3vw, 3.65rem);
  line-height: 0.98;
}

.channel-name {
  font-size: clamp(2rem, 3.15vw, 3.25rem);
  line-height: 0.98;
}

@media (min-width: 1061px) {
  .home-front .lead-card img {
    aspect-ratio: 16 / 10.2;
  }

  .home-front .lead-card h2 {
    max-width: 780px;
    font-size: clamp(2rem, 2.9vw, 3.35rem);
    line-height: 1;
  }

  .pattern-feature img {
    aspect-ratio: 16 / 9.4;
  }

  .pattern-feature h2 {
    max-width: 820px;
    font-size: clamp(1.9rem, 2.55vw, 3.05rem);
    line-height: 1.01;
  }

  .spotlight-feature img {
    aspect-ratio: 16 / 10;
  }

  .spotlight-feature h2 {
    max-width: 780px;
    font-size: clamp(1.95rem, 2.7vw, 3.15rem);
    line-height: 1.01;
  }

  .home-list-feature img {
    aspect-ratio: 16 / 9.6;
    object-fit: cover;
  }

  .home-list-feature h3 {
    max-width: 820px;
    font-size: clamp(1.85rem, 2.65vw, 3.1rem);
    line-height: 1;
  }
}

@media (max-width: 1060px) {
  .home-front .section-line h1,
  .market-cap-head h2,
  .home-lists-head h2,
  .channel-name {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 0.98;
  }

  .home-front .lead-card img,
  .pattern-feature img,
  .spotlight-feature img,
  .home-list-feature img {
    aspect-ratio: 16 / 10.4;
    object-fit: cover;
  }

  .home-front .lead-card h2,
  .pattern-feature h2,
  .spotlight-feature h2,
  .home-list-feature h3 {
    font-size: clamp(1.72rem, 7vw, 2.2rem);
    line-height: 1.02;
  }
}

@media (max-width: 760px) {
  .home-front .section-line h1,
  .market-cap-head h2,
  .home-lists-head h2,
  .channel-name {
    font-size: clamp(1.72rem, 7.5vw, 2.3rem);
  }

  .home-front .lead-card h2,
  .pattern-feature h2,
  .spotlight-feature h2,
  .home-list-feature h3 {
    font-size: clamp(1.55rem, 6.4vw, 1.95rem);
  }

  .home-front .lead-card img,
  .pattern-feature img,
  .spotlight-feature img,
  .home-list-feature img {
    aspect-ratio: 16 / 10.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  article a img,
  .market-cap-frame {
    transition: none;
  }

  article a:hover img,
  article a:focus-visible img {
    transform: none;
  }
}

/* Channel heading overlap fix: let long names reserve their real width. */
.home-channel-head {
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 82px);
  align-items: baseline;
}

.channel-name {
  white-space: nowrap;
}

.home-channel-head p {
  min-width: 0;
}

@media (max-width: 1060px) {
  .home-channel-head {
    display: block;
  }

  .channel-name {
    white-space: normal;
  }
}

/* Public header, nomination CTA, events and Forbes-style footer refresh. */
.brand-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  min-height: 92px;
  align-items: center;
}

.local-time {
  justify-self: start;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  white-space: nowrap;
}

.brand {
  grid-column: 2;
  justify-self: center;
  font-size: clamp(3.1rem, 5vw, 4.85rem);
}

.brand-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 0;
}

.issue-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.08rem;
  line-height: 1;
}

.nav-row .wrap {
  width: min(1320px, calc(100% - 48px));
}

.main-nav {
  gap: 10px;
}

.nav-item > a {
  padding: 0 9px;
  white-space: nowrap;
}

.nav-cta {
  align-items: center;
}

.nav-cta > a {
  min-height: 34px;
  margin-left: 6px;
  background: var(--red);
  color: #fff;
  padding: 0 15px;
}

.nav-cta > a::after {
  display: none;
}

.nav-cta:hover > a,
.nav-cta:focus-within > a {
  background: #e23542;
  color: #fff;
}

.mobile-cta span {
  color: #fff;
}

.mobile-menu-panel .mobile-cta {
  background: var(--red);
  padding-inline: 14px;
}

.home-events-section {
  padding: 76px 0 86px;
  background: var(--black);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-events-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.home-events-head .eyebrow {
  color: #cdb675;
}

.home-events-head h2 {
  max-width: 780px;
  margin-top: 8px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
}

.home-events-head a,
.home-events-grid article a strong {
  color: #fff;
  font-size: 0.92rem;
}

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-events-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #101010;
}

.home-events-grid article a {
  min-height: 320px;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
}

.home-events-grid article span {
  color: #cdb675;
  font-size: 0.88rem;
}

.home-events-grid article h3 {
  font-size: clamp(1.65rem, 2.1vw, 2.45rem);
  line-height: 1;
}

.home-events-grid article p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.48;
}

.home-events-grid article a strong {
  margin-top: auto;
  color: var(--red);
}

.event-detail-page {
  background: #f6f5f2;
}

.event-detail-hero {
  background: var(--black);
  color: #fff;
  border-bottom: 6px solid var(--red);
}

.event-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.72fr);
  gap: 46px;
  align-items: end;
  padding-top: 58px;
  padding-bottom: 58px;
}

.event-detail-copy > span,
.nomination-hero span,
.footer-newsletter > span {
  color: #cdb675;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.event-detail-copy h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 0.92;
}

.event-detail-copy > p:not(.breadcrumb) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.22rem;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.event-detail-meta time {
  color: rgba(255, 255, 255, 0.66);
}

.event-detail-meta a,
.event-detail-side a,
.nomination-grid strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  background: var(--red);
  color: #fff;
  padding: 9px 15px;
}

.event-detail-hero figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
}

.event-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
}

.event-detail-body {
  padding: 54px 0 76px;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 54px;
  align-items: start;
}

.event-detail-side {
  position: sticky;
  top: 164px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-top: 3px solid var(--red);
  background: #fff;
}

.event-detail-side span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.event-detail-side a {
  min-height: 38px;
  background: #111;
  justify-content: center;
}

.event-detail-side a:first-of-type {
  background: var(--red);
}

.event-detail-content {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
}

.event-related {
  padding: 60px 0 78px;
  background: var(--black);
  color: #fff;
}

.events-directory-hero {
  min-height: min(780px, calc(100vh - 90px));
  padding: clamp(86px, 12vw, 190px) 0 clamp(58px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(255, 255, 255, 0.08) 100%),
    var(--events-hero-image, linear-gradient(135deg, #050505, #2a2a2a));
  background-size: cover;
  background-position: center;
  color: #fff;
  border-bottom: 0;
  display: flex;
  align-items: end;
}

.events-directory-hero span {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-directory-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7.25rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
}

.events-directory-hero p:not(.breadcrumb) {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.06rem, 1.7vw, 1.55rem);
  line-height: 1.5;
}

.events-directory-hero .breadcrumb,
.events-directory-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
}

.events-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.events-hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.events-hero-actions a:first-child {
  background: var(--red);
  color: #fff;
}

.events-directory-body {
  padding: 66px 0 86px;
  background: #fff;
}

.events-about-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  margin-bottom: 64px;
}

.events-about-panel h2,
.events-section-title h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  line-height: 1.08;
}

.events-about-panel div {
  display: grid;
  gap: 18px;
}

.events-about-panel p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

.events-directory-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 64px;
}

.events-directory-lead article,
.events-directory-lead aside,
.events-forms-strip {
  background: #fff;
  border: 1px solid var(--line);
}

.events-directory-grid article {
  background: transparent;
  border: 0;
}

.events-directory-lead article a {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  min-height: 0;
  color: inherit;
}

.events-directory-lead img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.events-directory-lead article div,
.events-directory-lead aside,
.events-directory-grid article a,
.events-forms-strip {
  padding: 28px;
}

.events-directory-lead article div,
.events-directory-lead aside {
  display: grid;
  align-content: center;
}

.events-directory-lead span,
.events-directory-grid span {
  color: var(--gold);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.events-directory-lead h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.events-directory-lead p,
.events-directory-grid p,
.events-directory-lead aside p {
  margin-top: 14px;
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
}

.events-directory-lead p,
.events-directory-grid p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.events-directory-lead strong,
.events-directory-grid strong,
.events-directory-lead aside a {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.events-directory-lead aside {
  border-top: 4px solid var(--red);
}

.events-directory-lead aside h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.04;
}

.events-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 92px) 42px;
}

.events-section-title {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.events-directory-grid article a {
  display: block;
  min-height: 100%;
  padding: 0;
  color: inherit;
}

.events-directory-grid img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1600 / 501;
  object-fit: cover;
  margin: 0 0 26px;
}

.events-directory-grid h2 {
  display: none;
}

.events-directory-grid span {
  display: block;
  color: #777;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 22px;
}

.events-directory-grid p {
  color: #333;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.events-directory-grid strong {
  display: none;
}

.events-forms-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 56px;
  border-top: 3px solid var(--ink);
}

.events-forms-strip h2 {
  font-size: 1.3rem;
}

.events-forms-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.events-forms-strip a {
  border: 1px solid var(--line);
  padding: 9px 13px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}

.nomination-hero {
  padding: 72px 0 76px;
  background: var(--black);
  color: #fff;
  border-bottom: 6px solid var(--red);
}

.nomination-hero h1 {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.93;
}

.nomination-hero p:not(.breadcrumb) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.16rem;
}

.nomination-body {
  padding: 54px 0 76px;
}

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

.nomination-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.nomination-grid article a {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.nomination-grid span {
  color: var(--red);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.nomination-grid h2 {
  font-size: 2rem;
}

.raw-nomination-page {
  min-height: 52vh;
}

.site-footer {
  background: #030303;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid #242424;
}

.footer-shell {
  padding: 62px 0 0;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  color: #fff;
  font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.footer-brand-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 42px;
  padding: 32px 0 46px;
}

.footer-newsletter h2 {
  max-width: 620px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1;
}

.footer-newsletter p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-rankings h3,
.footer-link-columns h3 {
  color: #fff;
  font-size: 1.08rem;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.footer-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.footer-list-grid a {
  display: grid;
  gap: 9px;
  color: #fff;
}

.footer-list-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #121212;
}

.footer-list-grid span {
  color: #cdb675;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-link-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-link-columns a,
.footer-brand-row nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-link-columns a:hover,
.footer-brand-row nav a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 5px;
  }

  .nav-item > a {
    padding-inline: 7px;
    font-size: 0.96rem;
  }
}

@media (max-width: 1060px) {
  .brand-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
  }

  .local-time {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    font-size: clamp(2.45rem, 8vw, 3.4rem);
  }

  .brand-actions {
    display: flex;
    grid-column: 2;
  }

  .issue-link {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .home-events-grid,
  .nomination-grid,
  .events-about-panel,
  .event-detail-hero-grid,
  .event-detail-layout,
  .events-directory-lead,
  .events-directory-lead article a,
  .events-directory-grid,
  .events-forms-strip,
  .footer-brand-row,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand-row nav,
  .footer-bottom nav {
    justify-content: flex-start;
  }

  .event-detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .brand-actions .issue-link {
    display: none;
  }

  .home-events-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-events-grid article a,
  .nomination-grid article a {
    min-height: 0;
  }

  .events-directory-hero {
    min-height: 620px;
    padding: 72px 0 58px;
  }

  .events-directory-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .events-hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .events-about-panel {
    gap: 20px;
    margin-bottom: 42px;
  }

  .events-directory-lead {
    margin-bottom: 44px;
  }

  .event-detail-copy h1,
  .nomination-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .event-detail-content {
    padding: 24px;
  }

  .footer-list-grid,
  .footer-link-columns {
    grid-template-columns: 1fr;
  }
}

/* 2026-07-07 precision pass: lighter header CTA, list-led right rail, tighter editorial type. */
.issue-link {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.98rem;
}

.home-front .section-line h1 {
  font-size: clamp(1.9rem, 2.45vw, 2.75rem);
}

.channel-name {
  font-size: clamp(1.8rem, 2.55vw, 2.65rem);
}

.pattern-feature h2,
.spotlight-feature h2 {
  font-size: clamp(1.75rem, 2.25vw, 2.75rem);
  line-height: 1.03;
}

.pattern-rail h3 {
  font-size: clamp(1.08rem, 1.18vw, 1.34rem);
  line-height: 1.1;
}

.pattern-quad h3,
.spotlight-rail h3,
.spotlight-strip h3 {
  font-size: 0.98rem;
  line-height: 1.17;
}

.home-events-grid article h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.archive-header h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}

.archive-feature h2 {
  font-size: clamp(1.85rem, 2.85vw, 3.05rem);
  line-height: 1.03;
}

.archive-side-rail h3 {
  font-size: 0.96rem;
  line-height: 1.22;
}

.archive-card-grid h2 {
  font-size: 1.14rem;
  line-height: 1.18;
}

.article-main h1 {
  font-size: clamp(2.05rem, 3.25vw, 3.55rem);
  line-height: 1.04;
}

.article-dek {
  font-size: 1.12rem;
}

.related .card-grid h3 {
  font-size: 1.05rem;
  line-height: 1.18;
}

.front-market-top h2 {
  font-size: clamp(2.1rem, 3vw, 2.75rem);
}

.front-market-table {
  height: clamp(760px, 62vw, 880px);
  max-height: clamp(760px, 62vw, 880px);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.front-market-table::-webkit-scrollbar {
  width: 8px;
}

.front-market-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.front-market-table::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
}

.front-market-row {
  min-height: 68px;
}

.front-market-company strong {
  font-size: 1rem;
}

.home-front .home-ranking-box {
  align-self: start;
  border-top: 2px solid var(--ink);
}

.home-ranking-box .tabs-static {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.home-ranking-box .tabs-static span:first-child {
  color: var(--ink);
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.home-ranking-box .tabs-static span:nth-child(2) {
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-ranking-card a {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.home-ranking-card img {
  width: 168px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #050505;
  border: 1px solid #e4e4e4;
}

.home-ranking-card h3 {
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.home-ranking-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-ranking-card a:hover img,
.home-list-slide a:hover img,
.footer-list-card:hover img {
  transform: none;
}

.home-lists-head h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.85rem);
}

.home-lists-carousel {
  background: #111;
}

.home-list-slide a {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  min-height: 0;
  align-items: stretch;
}

.home-list-slide-media {
  display: grid;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.home-list-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  background: #050505;
}

.home-list-slide-media span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 2rem;
}

.home-list-slide-copy {
  min-height: 0;
  padding: 34px 40px 90px;
}

.home-list-slide-copy h3 {
  max-width: 460px;
  font-size: clamp(1.85rem, 2.65vw, 2.75rem);
  line-height: 1.04;
}

.home-list-slide-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.94rem;
}

.home-lists-controls {
  right: 40px;
  bottom: 32px;
  left: auto;
}

@media (max-width: 1180px) {
  .home-ranking-card a {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .home-ranking-card img {
    width: 140px;
  }
}

@media (max-width: 1060px) {
  .home-front .home-ranking-box {
    align-self: stretch;
  }

  .home-ranking-list {
    display: grid;
    gap: 18px;
  }

  .home-front .home-ranking-box .home-ranking-card {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 18px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }

  .home-ranking-card h3 {
    font-size: 1.12rem;
  }

  .home-list-slide a {
    grid-template-columns: 1fr;
  }

  .home-list-slide-media {
    order: 1;
    width: 100%;
  }

  .home-list-slide-copy {
    order: 2;
    padding: 22px 24px 78px;
    align-content: start;
  }

  .home-list-slide-copy h3 {
    max-width: none;
    margin-top: 16px;
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .home-list-slide-copy p {
    display: none;
  }

  .home-lists-controls {
    right: auto;
    left: 24px;
    bottom: 22px;
  }
}

@media (max-width: 760px) {
  .home-front {
    padding-top: 34px;
  }

  .home-front .section-line {
    display: block;
    margin-bottom: 20px;
  }

  .home-front .section-line h1,
  .channel-name {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .pattern-feature h2,
  .spotlight-feature h2,
  .article-main h1,
  .archive-feature h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  }

  .pattern-rail h3,
  .pattern-quad h3,
  .spotlight-rail h3,
  .spotlight-strip h3,
  .archive-card-grid h2 {
    font-size: 1rem;
  }

  .front-market-table {
    max-height: 470px;
  }

  .front-market-table .front-market-row:nth-of-type(n + 5) {
    display: grid;
  }

  .home-ranking-box .tabs-static {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 18px 0 16px;
    text-align: center;
  }

  .home-ranking-box .tabs-static span:first-child {
    font-size: 1.9rem;
  }

  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 18px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }

  .home-front .home-ranking-box .home-ranking-card div {
    display: grid;
    gap: 4px;
  }

  .home-ranking-card h3 {
    margin-top: 0;
    font-size: 1.14rem;
    line-height: 1.15;
  }

  .home-list-slide-copy {
    padding: 18px 20px 72px;
  }

  .home-list-slide-copy h3 {
    font-size: 1.45rem;
  }

  .home-lists-controls {
    left: 20px;
    bottom: 18px;
  }
}

/* 2026-07-14 reversible white-header preview. */
.site-header {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.site-header.is-condensed {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

/* FigureAsia publication footer — 2026-07-14. */
.site-footer .footer-shell {
  padding-top: 62px;
}

.site-footer .footer-brand-row {
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 30px;
}

.site-footer .footer-brand {
  font-size: 3.45rem;
}

.site-footer .footer-brand-row nav {
  gap: 16px 28px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 0.96rem;
}

.site-footer .footer-main {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(64px, 7vw, 110px);
  padding: 46px 0 56px;
}

.site-footer .footer-left {
  gap: 46px;
}

.site-footer .footer-newsletter h2 {
  max-width: 780px;
  margin-top: 17px;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
  line-height: 1.01;
  letter-spacing: -0.025em;
}

.site-footer .footer-signup-form {
  grid-template-columns: minmax(0, 1fr) 150px;
  max-width: 760px;
  margin-top: 27px;
}

.site-footer .footer-signup-form input,
.site-footer .footer-signup-form button {
  min-height: 54px;
}

.site-footer .footer-newsletter .footer-newsletter-legal {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.site-footer .footer-newsletter-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.site-footer .footer-newsletter-legal a:hover,
.site-footer .footer-newsletter-legal a:focus-visible {
  color: #fff;
}

.footer-magazine {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-magazine-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.footer-magazine-head > div > span {
  display: block;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-magazine-head h3 {
  margin: 7px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.footer-magazine-head > a,
.footer-magazine-actions a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
}

.footer-magazine-head > a:hover,
.footer-magazine-actions a:hover,
.footer-magazine-head > a:focus-visible,
.footer-magazine-actions a:focus-visible {
  color: #fff;
}

.footer-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 24px);
}

.footer-magazine-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 8px;
  color: #fff;
}

.footer-magazine-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  transition: transform 200ms ease, border-color 200ms ease;
}

.footer-magazine-card > span {
  margin-top: 4px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.footer-magazine-card strong {
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.08;
}

.footer-magazine-card:hover img,
.footer-magazine-card:focus-visible img {
  transform: translateY(-4px);
  border-color: var(--red);
}

.footer-magazine-actions {
  display: flex;
  gap: 12px 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.site-footer .footer-link-columns {
  gap: 46px;
}

.site-footer .footer-link-columns h3 {
  margin-bottom: 8px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.site-footer .footer-link-columns div {
  gap: 12px;
}

.site-footer .footer-link-columns a {
  font-size: 0.88rem;
  line-height: 1.35;
}

.site-footer .footer-bottom {
  padding-top: 22px;
  padding-bottom: 28px;
}

@media (max-width: 1060px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-shell {
    padding-top: 42px;
  }

  .site-footer .footer-brand-row {
    gap: 28px;
  }

  .site-footer .footer-brand-row nav {
    gap: 13px 20px;
    font-size: 0.88rem;
  }

  .site-footer .footer-main {
    gap: 44px;
    padding-top: 34px;
  }

  .site-footer .footer-newsletter h2 {
    font-size: 2.15rem;
  }

  .site-footer .footer-signup-form {
    grid-template-columns: 1fr;
  }

  .footer-magazine-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-magazine-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 12px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .footer-magazine-card {
    flex: 0 0 min(72vw, 250px);
    scroll-snap-align: start;
  }

  .site-footer .footer-link-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* 2026-07-14 authority header and Asia Wealth home module. */
.site-header,
.site-header.is-condensed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  color: #111;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.055);
  transition: none;
}

.site-header .brand-row,
.site-header .nav-row {
  background: #fff;
  border-color: #e2e2e2;
}

.site-header .brand-inner,
.site-header.is-condensed .brand-inner {
  position: relative;
  min-height: 88px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  transition: none;
}

.site-header .brand,
.site-header.is-condensed .brand {
  grid-column: 2;
  justify-self: center;
  font-size: 1rem;
  transition: none;
}

.site-header .brand img,
.site-header.is-condensed .brand img {
  width: auto;
  height: 62px;
  max-width: min(48vw, 430px);
}

.site-header .local-time,
.site-header.is-condensed .local-time {
  color: #737373;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  transition: none;
}

.site-header .brand-actions {
  grid-column: 3;
  justify-self: end;
}

.site-header .issue-link,
.site-header.is-condensed .issue-link {
  min-height: 38px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 8px 17px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.site-header .issue-link:hover,
.site-header .issue-link:focus-visible {
  border-color: #111;
  background: #111;
}

.site-header .main-nav,
.site-header.is-condensed .main-nav {
  min-height: 48px;
  justify-content: center;
  gap: 0;
  transition: none;
}

.site-header .nav-item,
.site-header .nav-item > a,
.site-header.is-condensed .nav-item,
.site-header.is-condensed .nav-item > a {
  min-height: 48px;
  transition: none;
}

.site-header .nav-item > a,
.site-header.is-condensed .nav-item > a {
  padding: 0 13px;
  color: #222;
  font-family: "FA Serif", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.site-header .nav-item > a::after {
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 3px;
}

.site-header .nav-item:hover > a,
.site-header .nav-item:focus-within > a {
  color: var(--hover-color, var(--red));
}

.site-header .nav-mega {
  background: #fff;
  border-top: 3px solid var(--hover-color, var(--red));
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 0 22px 42px rgba(17, 17, 17, 0.16);
}

.site-header .nav-mega-title span,
.site-header .nav-mega-grid strong {
  color: #111;
}

.site-header .nav-mega-title a,
.site-header .nav-mega-grid small {
  color: #777;
}

.site-header .nav-mega-grid img {
  background: #f2f2f2;
}

.mobile-menu-toggle {
  color: #111;
}

.mobile-menu-panel:not([hidden]) {
  display: block;
  background: #fff;
  border-top: 1px solid #e1e1e1;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.12);
}

.mobile-menu-panel a {
  border-bottom-color: #e9e9e9;
  color: #111;
  font-family: "FA Serif", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.home-front {
  background: #fff;
}

.home-front .section-line {
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #111;
}

.home-front .section-line h1 {
  margin-top: 7px;
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
  letter-spacing: -0.025em;
}

.front-grid.front-grid-wealth {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(310px, 0.85fr);
  grid-template-areas: "wealth popular";
  gap: 34px;
  align-items: stretch;
}

.front-wealth-panel {
  grid-area: wealth;
  min-width: 0;
  align-self: start;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  border: 1px solid #111;
  border-top: 4px solid var(--red);
  background: #fff;
  color: #111;
}

.front-grid-wealth .popular-box {
  grid-area: popular;
}

.front-wealth-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px 30px 24px;
  border-bottom: 1px solid #d8d8d8;
}

.front-wealth-top > div > span,
.front-wealth-kpis span,
.front-wealth-table-head,
.front-wealth-foot {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.front-wealth-top > div > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.front-wealth-top h2 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  line-height: 0.98;
}

.front-wealth-top p {
  max-width: 680px;
  margin-top: 12px;
  color: #666;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
}

.front-wealth-top > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #111;
  padding: 6px 0;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.front-wealth-top > a:hover,
.front-wealth-top > a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.front-wealth-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #111;
}

.front-wealth-kpis > div {
  min-width: 0;
  padding: 17px 18px 19px;
  border-right: 1px solid #111;
}

.front-wealth-kpis > div:last-child {
  border-right: 0;
}

.front-wealth-kpis span {
  display: block;
  color: #777;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.front-wealth-kpis strong {
  display: block;
  margin-top: 12px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.front-wealth-table {
  min-height: 0;
  max-height: 610px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #ededed;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.front-wealth-table::-webkit-scrollbar {
  width: 7px;
}

.front-wealth-table::-webkit-scrollbar-track {
  background: #ededed;
}

.front-wealth-table::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--red);
}

.front-wealth-table-head,
.front-wealth-row {
  display: grid;
  grid-template-columns: 44px minmax(170px, 1.12fr) minmax(82px, 0.52fr) minmax(112px, 0.82fr) 88px 58px;
  gap: 10px;
  align-items: center;
}

.front-wealth-table-head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 10px 14px 9px;
  background: #f5f5f5;
  box-shadow: 0 1px 0 #d9d9d9;
  color: #777;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.front-wealth-table-head > span {
  white-space: nowrap;
}

.front-wealth-rank-head {
  text-align: left;
}

.front-wealth-networth-head,
.front-wealth-trend-head {
  font-weight: 700;
  text-align: right;
}

.front-wealth-row {
  min-height: 78px;
  padding: 9px 14px;
  border-top: 1px solid #e2e2e2;
}

.front-wealth-row:hover,
.front-wealth-row:focus-visible {
  background: #fafafa;
}

.front-wealth-rank {
  color: var(--red);
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.48rem;
}

.front-wealth-person {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.front-wealth-person-image {
  display: block;
  width: 48px;
  height: 58px;
  overflow: hidden;
  background: #ededed;
}

.front-wealth-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 260ms ease, filter 180ms ease;
}

.front-wealth-row:hover .front-wealth-person-image img,
.front-wealth-row:focus-visible .front-wealth-person-image img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.04);
}

.front-wealth-person strong {
  display: block;
}

.front-wealth-person strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.front-wealth-market,
.front-wealth-industry {
  overflow: hidden;
  color: #777;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
}

.front-wealth-value,
.front-wealth-change {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.front-wealth-change.is-up {
  color: #08744b;
}

.front-wealth-change.is-down {
  color: #c52222;
}

.front-wealth-change {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.front-wealth-foot {
  display: flex;
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #111;
  color: #777;
  font-size: 0.66rem;
}

.front-wealth-foot strong {
  color: #111;
  font-size: 0.64rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Magazine */
.magazine-page {
  overflow: hidden;
  background: #fff;
  color: #0b0b0b;
}

.magazine-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  min-height: 238px;
  padding-top: 52px;
  padding-bottom: 38px;
  border-bottom: 1px solid #111;
}

.magazine-intro span,
.magazine-current-label,
.magazine-archive-head,
.magazine-role,
.magazine-feature-actions,
.magazine-subscription {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.magazine-intro span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.magazine-intro h1 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(3.6rem, 5.2vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.magazine-intro > p {
  justify-self: end;
  max-width: 570px;
  margin: 0 0 5px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.08;
}

.magazine-feature {
  background: #0b0b0b;
  color: #fff;
}

.magazine-feature-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: center;
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(74px, 7.5vw, 112px);
}

.magazine-current-cover {
  position: relative;
  justify-self: center;
  width: min(100%, 540px);
}

.magazine-current-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 782 / 1040;
  border: 1px solid #303030;
  box-shadow: 28px 28px 0 #191919, 0 30px 75px rgba(0, 0, 0, 0.35);
}

.magazine-current-copy {
  max-width: 720px;
}

.magazine-current-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #3b3b3b;
  color: #9c9c9c;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.magazine-current-label span {
  color: var(--red);
}

.magazine-current-copy h2 {
  margin: 33px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(3.4rem, 5.4vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.magazine-role {
  margin: 17px 0 0;
  color: #aaa;
  font-size: 0.75rem;
}

.magazine-current-copy h3 {
  max-width: 610px;
  margin: 40px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.05;
}

.magazine-description {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b9b9b9;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  line-height: 1.68;
}

.magazine-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 36px;
}

.magazine-primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  padding: 13px 19px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.magazine-primary-action:hover,
.magazine-primary-action:focus-visible {
  background: #fff;
  color: #111;
}

.magazine-text-action {
  padding: 8px 0;
  border-bottom: 1px solid #626262;
  color: #d0d0d0;
  font-size: 0.7rem;
  font-weight: 700;
}

.magazine-archive {
  padding-top: 88px;
  padding-bottom: 120px;
}

.magazine-archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 27px;
  padding-bottom: 38px;
  border-top: 1px solid #111;
}

.magazine-archive-head > div > span {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-archive-head h2 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(3.1rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.magazine-archive-head > p {
  margin: 0 0 5px;
  color: #777;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.magazine-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 70px) clamp(20px, 3vw, 46px);
}

.magazine-cover-card {
  min-width: 0;
  margin: 0;
}

.magazine-cover-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #dedede;
  background: #f4f4f4;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.magazine-cover-card:hover img {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.magazine-subscription {
  scroll-margin-top: 104px;
  background: #f2efe8;
  border-top: 1px solid #d8d3ca;
}

.magazine-subscription-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(48px, 6vw, 96px);
  padding-top: clamp(70px, 7vw, 102px);
  padding-bottom: clamp(76px, 8vw, 112px);
}

.magazine-subscription-copy > span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-subscription-copy h2 {
  max-width: 460px;
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.7rem, 3.7vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.magazine-subscription-copy > p {
  max-width: 470px;
  margin: 30px 0 0;
  color: #343434;
  font-size: 0.88rem;
  line-height: 1.65;
}

.magazine-subscription-copy > small {
  display: block;
  max-width: 430px;
  margin-top: 24px;
  color: #777;
  font-size: 0.68rem;
  line-height: 1.55;
}

.magazine-subscription-form {
  min-width: 0;
  border: 1px solid #d0cbc2;
  border-top: 3px solid #111;
  background: rgba(255, 255, 255, 0.72);
  padding: 30px clamp(24px, 3vw, 42px) 36px;
  box-shadow: 0 16px 42px rgba(35, 30, 24, 0.06);
}

.magazine-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #cbc6bd;
}

.magazine-form-heading span {
  display: block;
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.magazine-form-heading h3 {
  margin: 7px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.magazine-form-heading p {
  margin: 0 0 2px;
  color: #777;
  font-size: 0.64rem;
  white-space: nowrap;
}

.magazine-form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 18px;
}

.magazine-subscription-form label {
  display: grid;
  grid-column: span 3;
  align-content: start;
  gap: 8px;
  min-width: 0;
  color: #333;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.magazine-subscription-form .magazine-field-label {
  display: flex;
  min-height: 16px;
  align-items: baseline;
  gap: 7px;
  color: #333;
}

.magazine-subscription-form .magazine-field-label em {
  color: #888;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 400;
}

.magazine-subscription-form input,
.magazine-subscription-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #bcb7ae;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: #111;
  padding: 12px 13px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  text-transform: none;
  caret-color: var(--red);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.magazine-subscription-form input {
  min-height: 48px;
}

.magazine-subscription-form input:focus,
.magazine-subscription-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(236, 53, 53, 0.12);
}

.magazine-subscription-form textarea {
  min-height: 108px;
  resize: vertical;
}

.magazine-field-location {
  grid-column: span 2 !important;
}

.magazine-field-wide {
  grid-column: 1 / -1 !important;
}

.magazine-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.magazine-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #cbc6bd;
}

.magazine-form-submit button {
  min-height: 48px;
  min-width: 220px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 12px 21px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.magazine-form-submit button:hover,
.magazine-form-submit button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.magazine-form-submit p {
  max-width: 340px;
  margin: 0;
  color: #777;
  font-size: 0.62rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .site-header .nav-item > a,
  .site-header.is-condensed .nav-item > a {
    padding-inline: 9px;
    font-size: 0.68rem;
  }
}

@media (max-width: 1060px) {
  .site-header .brand-inner,
  .site-header.is-condensed .brand-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header .local-time {
    visibility: hidden;
  }

  .site-header .brand,
  .site-header.is-condensed .brand {
    position: absolute;
    left: 50%;
    grid-column: auto;
    transform: translateX(-50%);
  }

  .site-header .brand img,
  .site-header.is-condensed .brand img {
    height: 46px;
    max-width: 58vw;
  }

  .site-header .brand-actions {
    grid-column: 3;
  }

  .site-header .issue-link {
    display: none;
  }

  .site-header .nav-row {
    display: none;
  }

  .site-header .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    padding: 12px 0 20px;
  }

  .front-grid.front-grid-wealth {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wealth"
      "popular";
  }

  .magazine-cover-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .magazine-intro {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
  }

  .magazine-feature-grid {
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .site-header .brand-inner,
  .site-header.is-condensed .brand-inner {
    min-height: 64px;
  }

  .site-header .brand img,
  .site-header.is-condensed .brand img {
    height: 39px;
    max-width: 62vw;
  }

  .mobile-menu-inner {
    grid-template-columns: 1fr;
  }

  .home-front .section-line h1 {
    font-size: 3.15rem;
  }

  .front-wealth-top {
    grid-template-columns: 1fr;
    padding: 22px 18px 19px;
  }

  .front-wealth-top h2 {
    font-size: 2.35rem;
  }

  .front-wealth-top > a {
    width: fit-content;
  }

  .front-wealth-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-wealth-kpis > div:nth-child(2) {
    border-right: 0;
  }

  .front-wealth-kpis > div:nth-child(-n + 2) {
    border-bottom: 1px solid #111;
  }

  .front-wealth-table-head {
    display: none;
  }

  .front-wealth-table {
    max-height: 520px;
  }

  .front-wealth-row {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 92px;
    padding: 11px 14px;
  }

  .front-wealth-rank {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: start;
  }

  .front-wealth-person {
    grid-column: 2;
    grid-row: 1;
  }

  .front-wealth-person-image {
    width: 46px;
    height: 56px;
  }

  .front-wealth-market {
    grid-column: 2;
    grid-row: 2;
  }

  .front-wealth-industry {
    grid-column: 2;
    grid-row: 3;
  }

  .front-wealth-value {
    grid-column: 3;
    grid-row: 1;
  }

  .front-wealth-change {
    grid-column: 3;
    grid-row: 2 / 4;
    align-self: start;
    text-align: right;
  }

  .front-wealth-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-inline: 14px;
  }

  .magazine-intro {
    display: block;
    min-height: 215px;
    padding-top: 54px;
    padding-bottom: 30px;
  }

  .magazine-intro h1 {
    font-size: 3.65rem;
  }

  .magazine-intro > p {
    max-width: 430px;
    margin-top: 28px;
    font-size: 1.2rem;
  }

  .magazine-feature-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 56px;
    padding-bottom: 68px;
  }

  .magazine-current-cover {
    width: 86%;
  }

  .magazine-current-copy h2 {
    font-size: clamp(3.25rem, 14vw, 4.7rem);
  }

  .magazine-current-copy h3 {
    margin-top: 34px;
    font-size: 1.85rem;
  }

  .magazine-feature-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .magazine-primary-action {
    width: 100%;
    text-align: center;
  }

  .magazine-archive {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .magazine-cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 17px;
  }

  .magazine-subscription-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .magazine-subscription {
    scroll-margin-top: 64px;
  }

  .magazine-subscription-copy h2 {
    font-size: 3.55rem;
  }

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

  .magazine-subscription-form label,
  .magazine-field-location,
  .magazine-field-wide {
    grid-column: 1 !important;
  }

  .magazine-subscription-form {
    padding: 26px 20px 28px;
  }

  .magazine-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .magazine-form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .magazine-form-submit button {
    width: 100%;
    min-width: 0;
  }
}

.utility,
.brand-row,
.nav-row {
  border-color: #e4e4e4;
}

.local-time {
  color: #767676;
}

.nav-item > a {
  color: #222;
}

.mobile-menu-toggle {
  color: #111;
}

.mobile-menu-panel {
  background: #fff;
  border-color: #e4e4e4;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.1);
}

.mobile-menu-panel a {
  border-color: #e8e8e8;
  color: #111;
}

.mobile-menu-utility a {
  border-color: #d8d8d8;
}

.mobile-menu-panel .mobile-cta,
.mobile-menu-panel .mobile-cta span {
  color: #fff;
}

.nav-mega {
  background: #fff;
  border-bottom-color: #e2e2e2;
  box-shadow: 0 22px 38px rgba(17, 17, 17, 0.13);
}

.nav-mega-title span,
.nav-mega-grid strong {
  color: #111;
}

.nav-mega-title a {
  color: #666;
}

.nav-mega-grid small {
  color: #767676;
}

.nav-mega-grid img {
  background: #f3f3f3;
}

/* Lists directory Forbes-inspired layout. */
.lists-directory-body {
  background: #fff;
  padding: 28px 0 86px;
}

.lists-directory-body .lists-directory-wrap {
  width: min(1200px, calc(100% - 48px));
}

.lists-directory-body .lists-directory-breadcrumb {
  margin: 0 0 24px;
  color: #888;
  font-size: 0.9rem;
}

.lists-directory-body .lists-directory-title h1 {
  margin: 0 0 30px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.lists-directory-body .lists-feature-banner {
  margin: 0 0 42px;
}

.lists-directory-body .lists-feature-banner a,
.lists-directory-body .lists-feature-banner-inner {
  display: block;
  color: inherit;
}

.lists-directory-body .lists-feature-banner-media {
  overflow: hidden;
  background: transparent;
}

.lists-directory-body .lists-feature-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.lists-directory-body .lists-feature-banner h1 {
  max-width: 980px;
  margin: 16px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.7rem, 2.65vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.lists-directory-body .lists-year-nav {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 26px;
  align-items: stretch;
  column-gap: clamp(14px, 2.6vw, 28px);
  margin: 0 0 28px;
  border-bottom: 1px solid #e2e2e2;
}

.lists-directory-body .lists-year-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 76px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lists-directory-body .lists-year-strip::-webkit-scrollbar {
  display: none;
}

.lists-directory-body .lists-year-arrow {
  width: 26px;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: #b8b8b8;
  padding: 0 0 14px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease;
}

.lists-directory-body .lists-year-arrow:hover {
  color: #555;
}

.lists-directory-body .lists-year-arrow:disabled {
  color: #d2d2d2;
  cursor: default;
  opacity: .62;
}

.lists-directory-body .lists-year-strip button {
  flex: 0 0 auto;
  min-height: 46px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #9a9a9a;
  padding: 0 0 14px;
  font-size: 1.04rem;
  font-weight: 700;
  cursor: pointer;
}

.lists-directory-body .lists-year-strip button.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.lists-directory-body .year-panel-stack {
  min-width: 0;
}

.lists-directory-body .year-group[hidden] {
  display: none;
}

.lists-directory-body .list-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  gap: 34px 24px;
  align-items: start;
}

.lists-directory-body .list-directory-grid article,
.lists-directory-body .list-directory-grid article:nth-child(2),
.lists-directory-body .list-directory-grid article:nth-child(3),
.lists-directory-body .list-directory-grid article:nth-child(n + 4) {
  grid-column: auto;
  grid-row: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: none;
}

.lists-directory-body .list-directory-grid article:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.lists-directory-body .list-directory-grid article a {
  display: block;
  min-height: 0;
  height: auto;
  padding: 0;
}

.lists-directory-body .list-directory-cover {
  aspect-ratio: 3125 / 2183;
  overflow: hidden;
  background: transparent;
}

.lists-directory-body .list-directory-grid img,
.lists-directory-body .list-directory-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.lists-directory-body .list-directory-cover-placeholder {
  background: transparent;
}

.lists-directory-body .list-directory-card-body {
  display: block;
  min-height: 0;
  padding: 13px 0 0;
}

.lists-directory-body .list-directory-card-body span,
.lists-directory-body .list-directory-grid p {
  display: none;
}

.lists-directory-body .list-directory-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.32rem, 1.62vw, 1.7rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  min-height: 2.32em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 980px) {
  .lists-directory-body .list-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lists-directory-body {
    padding-top: 20px;
  }

  .lists-directory-body .lists-directory-wrap {
    width: min(100% - 32px, 1200px);
  }

  .lists-directory-body .lists-feature-banner {
    margin-bottom: 32px;
  }

  .lists-directory-body .lists-feature-banner h1 {
    font-size: 1.45rem;
  }

  .lists-directory-body .lists-year-strip {
    gap: 34px;
  }

  .lists-directory-body .lists-year-nav {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    column-gap: 10px;
  }

  .lists-directory-body .lists-year-strip button {
    min-height: 42px;
    font-size: 0.98rem;
  }

  .lists-directory-body .lists-year-arrow {
    width: 22px;
    min-height: 42px;
    font-size: 1.1rem;
  }

  .lists-directory-body .list-directory-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lists-directory-body .list-directory-grid img,
  .lists-directory-body .list-directory-cover-placeholder {
    height: 100%;
    object-fit: cover;
  }
}

/* Authority legal and trust pages. */
.raw-html-content .legal-page {
  background: #fff;
  color: var(--ink);
}

.raw-html-content .legal-page,
.raw-html-content .legal-page * {
  font-family: "FA Serif", Georgia, serif;
}

.legal-hero {
  background: #050505;
  color: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid #1f1f1f;
}

.legal-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
  padding: clamp(58px, 8vw, 112px) 0 clamp(36px, 5vw, 68px);
}

.legal-eyebrow,
.legal-meta span,
.legal-toc strong,
.legal-note strong,
.legal-section-label,
.legal-contact-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.legal-eyebrow {
  color: #d64b55;
  font-size: 0.8rem;
}

.legal-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(3.2rem, 7.4vw, 7rem);
  line-height: 0.92;
  font-weight: 400;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.legal-meta {
  display: grid;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.legal-meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.legal-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
  padding: clamp(48px, 6vw, 82px) 0 clamp(70px, 8vw, 112px);
}

.legal-main {
  min-width: 0;
}

.legal-lede {
  max-width: 900px;
  margin: 0 0 34px;
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 1.22;
}

.legal-section {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  border-top: 2px solid var(--ink);
}

.legal-section-label {
  color: var(--red);
  font-size: 0.78rem;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.04;
  font-weight: 400;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-section p,
.legal-section li {
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-note {
  margin-top: 28px;
  border-left: 4px solid var(--red);
  background: #f7f7f7;
  padding: 18px 20px;
  color: #3a3a3a;
  font-size: 0.94rem;
  line-height: 1.55;
}

.legal-side {
  position: sticky;
  top: 154px;
  display: grid;
  gap: 18px;
}

.legal-toc,
.legal-contact-card,
.legal-mini-card {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.legal-toc strong,
.legal-contact-card strong,
.legal-mini-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.legal-toc a,
.legal-contact-card a,
.legal-mini-card a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
}

.legal-toc a:hover,
.legal-contact-card a:hover,
.legal-mini-card a:hover {
  color: var(--red);
}

.legal-contact-card p,
.legal-mini-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.legal-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.legal-info-card,
.contact-route {
  border: 1px solid var(--line);
  padding: 20px;
  background: #fff;
}

.legal-info-card h3,
.contact-route h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.legal-info-card p,
.contact-route p {
  margin: 0;
  color: #4d4d4d;
}

.preference-table {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.preference-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.preference-row strong {
  color: var(--ink);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.legal-button:hover {
  background: #e23542;
  color: #fff;
}

@media (max-width: 980px) {
  .legal-hero-inner,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0 0;
  }

  .legal-side {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {
  .legal-hero-inner,
  .legal-shell {
    width: min(100% - 32px, var(--max));
  }

  .legal-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .legal-grid,
  .contact-grid,
  .preference-row {
    grid-template-columns: 1fr;
  }
}

/* About FigureAsia authority page. */
.raw-html-content .about-authority,
.raw-html-content .about-authority * {
  font-family: "FA Serif", Georgia, serif;
}

.about-authority {
  background: #fff;
  color: var(--ink);
}

.about-hero {
  position: relative;
  min-height: clamp(520px, 68vh, 700px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 42%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.12) 52%, rgba(5, 5, 5, 0.72) 100%);
  z-index: 1;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0 clamp(40px, 5vw, 62px);
}

.about-kicker,
.about-label,
.about-metric span,
.about-fact-label,
.about-pillar b,
.about-toc a,
.about-step-number,
.about-cta-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-kicker {
  color: #e23542;
  font-size: 0.76rem;
}

.about-hero h1 {
  max-width: 860px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  line-height: 0.95;
  font-weight: 400;
}

.about-hero-copy {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
}

.about-metric {
  min-height: 112px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.68);
}

.about-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 2.9vw, 3.2rem);
  line-height: 0.98;
  font-weight: 400;
}

.about-metric span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.35;
}

.about-wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.about-section {
  padding: clamp(48px, 6vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.about-section.dark {
  background: #050505;
  color: #fff;
  border-top: 0;
}

.about-section.tight {
  padding: clamp(36px, 5vw, 62px) 0;
}

.about-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.about-label {
  color: var(--red);
  font-size: 0.76rem;
}

.about-section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
  font-weight: 400;
}

.about-section-head p,
.about-lede {
  color: #3e3e3e;
  font-size: clamp(1.12rem, 1.65vw, 1.55rem);
  line-height: 1.35;
}

.about-section.dark .about-section-head p,
.about-section.dark .about-lede {
  color: rgba(255, 255, 255, 0.72);
}

.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.about-text-stack {
  display: grid;
  gap: 18px;
}

.about-text-stack p {
  color: #444;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.68;
}

.about-section.dark .about-text-stack p {
  color: rgba(255, 255, 255, 0.72);
}

.about-image-frame {
  border-top: 4px solid var(--red);
  background: #111;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-image-frame figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-pillar {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.about-pillar b {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
}

.about-pillar h3 {
  margin-top: 16px;
  font-size: clamp(1.28rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.about-pillar p {
  margin-top: 14px;
  color: #4a4a4a;
  font-size: 0.96rem;
  line-height: 1.58;
}

.about-research-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: stretch;
}

.about-research-panel {
  display: grid;
  align-content: space-between;
  min-height: 500px;
  padding: clamp(26px, 4vw, 44px);
  background: #101010;
  border-top: 4px solid var(--red);
}

.about-research-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.about-research-panel p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.58;
}

.about-dimension-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-dimension {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-dimension span {
  color: var(--red);
  font-weight: 700;
}

.about-dimension h3 {
  color: #fff;
  font-size: clamp(1.18rem, 1.55vw, 1.58rem);
  line-height: 1.12;
}

.about-dimension p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.58;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.about-step {
  padding: 20px 22px 24px 0;
  border-bottom: 1px solid var(--line);
}

.about-step + .about-step {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.about-step-number {
  color: var(--red);
  font-size: 0.74rem;
}

.about-step h3 {
  margin-top: 16px;
  font-size: clamp(1.18rem, 1.55vw, 1.52rem);
  line-height: 1.12;
}

.about-step p {
  margin-top: 12px;
  color: #4c4c4c;
  font-size: 0.94rem;
  line-height: 1.58;
}

.about-wide-image {
  margin-top: clamp(30px, 4vw, 48px);
  border-top: 4px solid var(--red);
}

.about-wide-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.about-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-fact {
  min-height: 188px;
  padding: 24px;
  background: #fff;
}

.about-fact-label {
  color: var(--red);
  font-size: 0.72rem;
}

.about-fact h3 {
  margin-top: 16px;
  font-size: clamp(1.28rem, 1.8vw, 1.82rem);
  line-height: 1.08;
}

.about-fact p {
  margin-top: 14px;
  color: #4b4b4b;
  font-size: 0.96rem;
  line-height: 1.58;
}

.about-boundary-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-boundary {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  padding: 19px 0;
  color: #fff;
}

.about-boundary h3 {
  color: #fff;
  font-size: clamp(1.16rem, 1.55vw, 1.48rem);
  line-height: 1.12;
}

.about-boundary p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.6;
}

.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-audience {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.about-audience h3 {
  font-size: clamp(1.22rem, 1.65vw, 1.58rem);
  line-height: 1.1;
}

.about-audience p {
  margin-top: 12px;
  color: #4a4a4a;
  font-size: 0.96rem;
  line-height: 1.58;
}

.about-cta {
  background: #050505;
  color: #fff;
}

.about-cta-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: end;
  padding: clamp(52px, 6vw, 82px) 0;
}

.about-cta-label {
  color: #e23542;
  font-size: 0.76rem;
}

.about-cta h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 4.35rem);
  line-height: 1;
}

.about-cta p {
  margin-top: 18px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.55;
}

.about-cta-links {
  display: grid;
  gap: 12px;
}

.about-cta-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
}

.about-cta-links a::after {
  content: "->";
  color: var(--red);
}

.about-cta-links a:hover {
  color: #f05a64;
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-pillar-grid,
  .about-process,
  .about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section-head,
  .about-two-col,
  .about-research-grid,
  .about-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-research-panel {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 560px;
  }

  .about-hero-inner,
  .about-wrap,
  .about-cta-inner {
    width: min(100% - 32px, var(--max));
  }

  .about-hero h1 {
    font-size: clamp(2.8rem, 12.5vw, 4.35rem);
    line-height: 0.98;
  }

  .about-pillar-grid,
  .about-process,
  .about-fact-grid,
  .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .about-metric {
    min-height: 92px;
    padding: 14px;
  }

  .about-metric strong {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }

  .about-metric span {
    font-size: 0.68rem;
  }

  .about-step,
  .about-step + .about-step {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .about-boundary,
  .about-dimension {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-wide-image img,
  .about-image-frame img {
    aspect-ratio: 4 / 3;
  }
}

/* 2026-07-07 large Featured Lists rail: three editorial ranking cards. */
.home-front .home-ranking-box .home-ranking-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  justify-content: stretch;
}

.home-front .home-ranking-box .home-ranking-card {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  border-bottom: 0;
}

.home-front .home-ranking-box .home-ranking-card a {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.home-front .home-ranking-box .home-ranking-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #050505;
}

.home-front .home-ranking-box .home-ranking-card a > div {
  display: grid;
  gap: 3px;
}

.home-front .home-ranking-box .home-ranking-card .kicker {
  margin-top: 0;
  font-size: 0.82rem;
}

.home-front .home-ranking-box .home-ranking-card h3 {
  margin-top: 0;
  font-size: 1.34rem;
  line-height: 1.08;
}

.front-grid.front-grid-market {
  align-items: stretch;
}

.front-grid-market .front-market-panel,
.front-grid-market .home-ranking-box {
  align-self: stretch;
}

.front-grid-market .home-ranking-box {
  height: 100%;
}

@media (max-width: 1060px) {
  .home-front .home-ranking-box .home-ranking-list {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .home-front .home-ranking-box .home-ranking-card h3 {
    font-size: 1.14rem;
  }
}

/* 2026-07-07 featured list rail tuning. */
.front-grid-market .home-ranking-box {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.home-ranking-box .tabs-static {
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 22px 0 20px;
  text-align: center;
}

.home-ranking-box .tabs-static span:first-child {
  font-size: 1.62rem;
}

.home-ranking-box .tabs-static span:nth-child(2) {
  display: none;
}

.home-ranking-list {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-front .home-ranking-box .home-ranking-card {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  border-bottom: 1px dashed var(--line);
}

.home-front .home-ranking-box .home-ranking-card a {
  flex: 1 1 auto;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 15px;
  min-height: 0;
  padding: 9px 0;
}

.home-front .home-ranking-box .home-ranking-card img {
  width: 142px;
  border-color: #e8e8e8;
}

.home-ranking-card .kicker {
  margin-top: 0;
}

.home-ranking-card h3 {
  font-size: 0.98rem;
  line-height: 1.12;
}

.home-ranking-more {
  margin-top: 16px;
  padding-bottom: 2px;
}

@media (max-width: 1180px) {
  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 13px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 124px;
  }
}

@media (max-width: 1060px) {
  .home-ranking-list {
    display: grid;
    gap: 18px;
  }

  .home-front .home-ranking-box .home-ranking-card {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 18px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }

  .home-ranking-card h3 {
    font-size: 1.12rem;
  }
}

@media (max-width: 760px) {
  .home-front {
    padding-top: 34px;
  }

  .home-front .section-line {
    display: block;
    margin-bottom: 20px;
  }

  .home-ranking-box .tabs-static {
    padding: 18px 0 16px;
  }

  .home-ranking-box .tabs-static span:first-child {
    font-size: 1.9rem;
  }

  .home-ranking-list {
    gap: 18px;
  }

  .home-front .home-ranking-box .home-ranking-card a {
    padding-bottom: 18px;
  }

  .home-front .home-ranking-box .home-ranking-card div {
    display: grid;
    gap: 4px;
  }

  .home-ranking-card h3 {
    margin-top: 0;
    font-size: 1.14rem;
    line-height: 1.15;
  }

  .home-ranking-more {
    margin-top: 6px;
  }
}

.home-front .home-ranking-box .home-ranking-card a {
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 0;
  padding: 18px 0 20px;
}

.home-front .home-ranking-box .home-ranking-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

@media (max-width: 1180px) {
  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }
}

/* 2026-07-07 front-page polish: lighter sticky header, market preview, list carousel and calmer footer. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.brand-row,
.brand-inner,
.brand,
.issue-link,
.local-time,
.main-nav,
.nav-item > a {
  transition:
    min-height 260ms cubic-bezier(0.2, 0, 0.2, 1),
    font-size 260ms cubic-bezier(0.2, 0, 0.2, 1),
    padding 260ms cubic-bezier(0.2, 0, 0.2, 1),
    color 180ms ease,
    background-color 180ms ease;
}

.brand-inner {
  min-height: 86px;
}

.local-time {
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}

.brand {
  font-size: 4.25rem;
}

.brand img,
.footer-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand img {
  height: 1em;
}

.footer-brand img {
  height: 1em;
}

.issue-link {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.98rem;
}

.site-header.is-condensed {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.site-header.is-condensed .brand-inner {
  min-height: 56px;
}

.site-header.is-condensed .brand {
  font-size: 2.85rem;
}

.site-header.is-condensed .local-time {
  font-size: 0.7rem;
}

.site-header.is-condensed .issue-link {
  min-height: 32px;
  padding: 7px 14px;
  font-size: 0.86rem;
}

.site-header.is-condensed .main-nav,
.site-header.is-condensed .nav-item,
.site-header.is-condensed .nav-item > a {
  min-height: 38px;
}

.site-header.is-condensed .nav-item > a {
  font-size: 0.96rem;
}

.front-grid.front-grid-market {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(330px, 1fr);
  grid-template-areas: "market popular";
  gap: 30px 36px;
  align-items: stretch;
}

.front-grid-market .front-market-panel {
  grid-area: market;
}

.front-grid-market .popular-box {
  grid-area: popular;
}

.front-market-panel {
  min-width: 0;
  min-height: 612px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  background: #050505;
  color: #fff;
  border: 1px solid #181818;
  border-top: 4px solid var(--red);
}

.front-market-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px 30px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.front-market-top span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.front-market-top h2 {
  margin-top: 8px;
  color: #fff;
  font-size: 3rem;
  line-height: 0.98;
}

.front-market-top p {
  max-width: 560px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.front-market-top a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(236, 53, 53, 0.72);
  color: #fff;
  padding: 8px 12px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.front-market-top a:hover {
  background: var(--red);
}

.front-market-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.front-market-kpis div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.front-market-kpis div:last-child {
  border-right: 0;
}

.front-market-kpis span {
  color: rgba(255, 255, 255, 0.56);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.front-market-kpis strong {
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.front-market-table {
  display: grid;
  align-content: stretch;
}

.front-market-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1.2fr) minmax(86px, 0.46fr) 70px 124px;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
}

.front-market-row:last-child {
  border-bottom: 0;
}

.front-market-row:hover {
  background: rgba(255, 255, 255, 0.045);
}

.front-market-rank,
.front-market-cap,
.front-market-change,
.front-market-company small {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.front-market-rank {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
}

.front-market-company {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.front-market-company strong {
  overflow: hidden;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.front-market-company small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.front-market-cap {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  text-align: right;
  white-space: nowrap;
}

.front-market-change {
  color: #54b87b;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.front-market-change.is-down {
  color: #e0656d;
}

.front-market-spark {
  width: 124px;
  height: 36px;
}

.front-market-spark path {
  fill: none;
  stroke: #54b87b;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.front-market-spark.is-down path {
  stroke: #e0656d;
}

.home-lists {
  background: #111;
  color: #fff;
  border-top: 1px solid #171717;
}

.home-lists-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-lists-head h2 {
  color: #fff;
  font-size: 3.15rem;
  line-height: 1;
}

.home-lists-head p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
}

.home-lists-head a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-lists-head a:hover {
  color: #fff;
}

.home-lists-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151515;
}

.home-lists-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.home-list-slide {
  min-width: 0;
  scroll-snap-align: start;
}

.home-list-slide a {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
  min-height: 470px;
  color: #fff;
}

.home-list-slide-copy {
  display: grid;
  align-content: center;
  padding: 54px 56px 104px;
}

.home-list-slide-copy span {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  color: rgba(255, 255, 255, 0.82);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-list-slide-copy h3 {
  max-width: 560px;
  margin-top: 26px;
  color: #fff;
  font-size: 3.15rem;
  line-height: 1.02;
}

.home-list-slide-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.home-list-slide-copy strong {
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-list-slide img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: contain;
  background: #080808;
}

.home-lists-controls {
  position: absolute;
  left: 52px;
  bottom: 44px;
  display: flex;
  gap: 14px;
}

.home-lists-controls button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0 0 3px;
}

.home-lists-controls button:hover {
  background: var(--red);
  color: #fff;
}

.home-lists-controls button:disabled {
  opacity: 0.38;
  cursor: default;
}

.home-lists-controls button:disabled:hover {
  background: #fff;
  color: #111;
}

.home-events-section {
  padding: 68px 0 76px;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.home-events-head {
  border-bottom: 2px solid var(--ink);
}

.home-events-head h2 {
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1;
}

.home-events-head p {
  max-width: 600px;
  margin-top: 8px;
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-events-head a {
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-events-head a:hover {
  color: var(--red);
}

.home-events-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.home-events-grid article a {
  min-height: 270px;
  padding: 24px;
  color: inherit;
}

.home-events-grid article span {
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-events-grid article h3 {
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1.05;
}

.home-events-grid article p {
  color: #555;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.home-events-grid article a strong {
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
}

.site-footer {
  background: #020202;
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  padding: 50px 0 0;
}

.footer-brand-row {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 22px;
}

.footer-brand {
  color: #fff;
  font-size: 3rem;
}

.footer-brand-row nav {
  gap: 22px;
  justify-content: flex-end;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
}

.footer-main {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 68px;
  padding: 34px 0 50px;
}

.footer-left {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.site-footer .footer-newsletter > span {
  display: inline-flex;
  width: fit-content;
  padding-left: 10px;
  border-left: 3px solid var(--red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
}

.footer-newsletter h2 {
  max-width: 600px;
  margin-top: 14px;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.08;
}

.footer-signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 10px;
  max-width: 620px;
  margin-top: 22px;
}

.footer-signup-form input,
.footer-signup-form button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.footer-signup-form input {
  width: 100%;
  background: #121212;
  color: #fff;
  padding: 0 14px;
}

.footer-signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-signup-form button {
  background: #202020;
  color: #fff;
  font-weight: 700;
}

.footer-signup-form button:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-newsletter p {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.footer-list-card {
  display: grid;
  gap: 8px;
  color: #fff;
}

.footer-list-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-list-grid span {
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-list-card:hover span {
  color: var(--red);
}

.footer-link-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.footer-link-columns h3 {
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.footer-link-columns a,
.footer-brand-row nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
}

.footer-link-columns a:hover,
.footer-brand-row nav a:hover,
.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.footer-bottom {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px 0 22px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .brand {
    font-size: 3.65rem;
  }

  .site-header.is-condensed .brand {
    font-size: 2.65rem;
  }

  .front-market-row {
    grid-template-columns: 34px minmax(0, 1fr) 74px 64px;
  }

  .front-market-spark {
    display: none;
  }

  .home-list-slide-copy h3 {
    font-size: 2.65rem;
  }
}

@media (max-width: 1060px) {
  .brand-inner {
    min-height: 70px;
  }

  .brand,
  .site-header.is-condensed .brand {
    font-size: 2.9rem;
  }

  .site-header.is-condensed .brand-inner {
    min-height: 58px;
  }

  .front-grid.front-grid-market {
    grid-template-columns: 1fr;
    grid-template-areas:
      "market"
      "popular";
  }

  .front-market-panel {
    min-height: 0;
  }

  .home-list-slide a {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-list-slide-copy {
    padding: 36px 36px 92px;
  }

  .home-list-slide-copy h3 {
    font-size: 2.35rem;
  }

  .home-list-slide img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .home-lists-controls {
    left: 36px;
    bottom: 32px;
  }

  .footer-brand-row,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand-row nav,
  .footer-bottom nav {
    justify-content: flex-start;
  }

  .footer-link-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-inner,
  .site-header.is-condensed .brand-inner {
    min-height: 62px;
  }

  .brand,
  .site-header.is-condensed .brand {
    font-size: 2.45rem;
  }

  .site-header.is-condensed .main-nav,
  .site-header.is-condensed .nav-item,
  .site-header.is-condensed .nav-item > a {
    min-height: 36px;
  }

  .front-market-top {
    padding: 22px 20px 18px;
  }

  .front-market-top h2 {
    font-size: 2.1rem;
  }

  .front-market-top p {
    font-size: 0.9rem;
  }

  .front-market-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .front-market-kpis div {
    min-width: 0;
    padding: 14px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .front-market-kpis div:last-child {
    border-right: 0;
  }

  .front-market-kpis span {
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .front-market-kpis strong {
    font-size: 1.02rem;
  }

  .front-market-table .front-market-row:nth-of-type(n + 5) {
    display: none;
  }

  .front-market-row {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    grid-template-areas:
      "rank company change"
      "rank cap spark";
    gap: 5px 10px;
    min-height: 88px;
    padding: 15px 22px;
  }

  .front-market-rank {
    grid-area: rank;
    align-self: center;
  }

  .front-market-company {
    grid-area: company;
  }

  .front-market-cap {
    grid-area: cap;
    text-align: left;
  }

  .front-market-change {
    grid-area: change;
    text-align: right;
  }

  .front-market-spark {
    grid-area: spark;
    justify-self: end;
    display: block;
    width: 108px;
    height: 28px;
    max-width: none;
  }

  .home-lists-head h2 {
    font-size: 2.2rem;
  }

  .home-list-slide-copy {
    padding: 28px 24px 86px;
  }

  .home-list-slide-copy h3 {
    font-size: 2rem;
  }

  .home-lists-controls {
    left: 24px;
    bottom: 24px;
  }

  .home-events-head h2 {
    font-size: 2rem;
  }

  .footer-shell {
    padding-top: 38px;
  }

  .footer-brand {
    font-size: 2.45rem;
  }

  .footer-main {
    gap: 36px;
    padding: 28px 0 38px;
  }

  .footer-newsletter h2 {
    font-size: 1.65rem;
  }

  .footer-signup-form {
    grid-template-columns: 1fr;
  }

  .footer-list-grid,
  .footer-link-columns {
    grid-template-columns: 1fr;
  }
}

/* 2026-07-07 final overrides: header CTA, ranking rail, market scroll, list carousel and tighter titles. */
.home-front .home-ranking-box .home-ranking-card a {
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 0;
  padding: 0 0 16px;
}

.home-front .home-ranking-box .home-ranking-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

@media (max-width: 1180px) {
  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-front .home-ranking-box .home-ranking-card a {
    grid-template-columns: 1fr;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    width: 100%;
  }
}

.issue-link {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.98rem;
}

.home-front .section-line h1 {
  font-size: clamp(1.9rem, 2.45vw, 2.75rem);
}

.channel-name {
  font-size: clamp(1.8rem, 2.55vw, 2.65rem);
}

.pattern-feature h2,
.spotlight-feature h2 {
  font-size: clamp(1.75rem, 2.25vw, 2.75rem);
  line-height: 1.03;
}

.pattern-rail h3 {
  font-size: clamp(1.08rem, 1.18vw, 1.34rem);
  line-height: 1.1;
}

.pattern-quad h3,
.spotlight-rail h3,
.spotlight-strip h3 {
  font-size: 0.98rem;
  line-height: 1.17;
}

.archive-header h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}

.archive-feature h2 {
  font-size: clamp(1.85rem, 2.85vw, 3.05rem);
  line-height: 1.03;
}

.archive-side-rail h3 {
  font-size: 0.96rem;
  line-height: 1.22;
}

.archive-card-grid h2 {
  font-size: 1.14rem;
  line-height: 1.18;
}

.article-main h1 {
  font-size: clamp(2.05rem, 3.25vw, 3.55rem);
  line-height: 1.04;
}

.article-dek {
  font-size: 1.12rem;
}

.home-events-grid article h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.front-market-top h2 {
  font-size: clamp(2.1rem, 3vw, 2.75rem);
}

.front-market-table {
  height: clamp(760px, 62vw, 880px);
  max-height: clamp(760px, 62vw, 880px);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.front-market-table::-webkit-scrollbar {
  width: 8px;
}

.front-market-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.front-market-table::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
}

.front-market-row {
  min-height: 68px;
}

.front-market-company strong {
  font-size: 1rem;
}

.home-front .home-ranking-box {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
}

.home-ranking-box .tabs-static {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  align-items: center;
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.home-ranking-box .tabs-static span:first-child {
  color: var(--ink);
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 400;
}

.home-ranking-box .tabs-static span:nth-child(2) {
  display: none;
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-ranking-list {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 18px;
}

.home-front .home-ranking-box .home-ranking-card {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  border-bottom: 1px dashed var(--line);
}

.home-ranking-card a {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.home-ranking-card img {
  width: 168px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #050505;
  border: 1px solid #e4e4e4;
}

.home-ranking-card h3 {
  margin-top: 4px;
  font-size: 1.32rem;
  line-height: 1.08;
}

.home-ranking-card .kicker {
  margin-top: 0;
  font-size: 0.82rem;
}

.home-ranking-more {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 2px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-ranking-card a:hover img,
.home-list-slide a:hover img,
.footer-list-card:hover img {
  transform: none;
}

.home-lists-head h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.85rem);
}

.home-list-slide a {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  min-height: 0;
  align-items: stretch;
}

.home-list-slide-media {
  display: grid;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.home-list-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: var(--banner-ratio, auto);
  object-fit: contain;
  background: #050505;
}

.home-list-slide-media span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 2rem;
}

.home-list-slide-copy {
  min-height: 0;
  padding: 34px 40px 90px;
}

.home-list-slide-copy h3 {
  max-width: 460px;
  font-size: clamp(1.85rem, 2.65vw, 2.75rem);
  line-height: 1.04;
}

.home-list-slide-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.94rem;
}

.home-lists-controls {
  right: 40px;
  bottom: 32px;
  left: auto;
}

@media (max-width: 1180px) {
  .home-ranking-card a {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .home-ranking-card img {
    width: 140px;
  }
}

@media (max-width: 1060px) {
  .home-front .home-ranking-box {
    align-self: stretch;
  }

  .home-ranking-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    justify-content: stretch;
    align-items: stretch;
  }

  .home-front .home-ranking-box .home-ranking-card {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--line);
  }

  .home-front .home-ranking-box .home-ranking-card a {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 18px;
  }

  .home-front .home-ranking-box .home-ranking-card img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .home-front .home-ranking-box .home-ranking-card a > div {
    grid-column: 1;
    grid-row: 2;
  }

  .home-ranking-card h3 {
    font-size: 1.12rem;
  }

  .home-list-slide a {
    grid-template-columns: 1fr;
  }

  .home-list-slide-media {
    order: 1;
    width: 100%;
  }

  .home-list-slide-copy {
    order: 2;
    padding: 22px 24px 78px;
    align-content: start;
  }

  .home-list-slide-copy h3 {
    max-width: none;
    margin-top: 16px;
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .home-list-slide-copy p {
    display: none;
  }

  .home-lists-controls {
    right: auto;
    left: 24px;
    bottom: 22px;
  }
}

@media (max-width: 760px) {
  .home-front .section-line h1,
  .channel-name {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .pattern-feature h2,
  .spotlight-feature h2,
  .article-main h1,
  .archive-feature h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  }

  .pattern-rail h3,
  .pattern-quad h3,
  .spotlight-rail h3,
  .spotlight-strip h3,
  .archive-card-grid h2 {
    font-size: 1rem;
  }

  .front-market-table {
    max-height: 470px;
  }

  .front-market-table .front-market-row:nth-of-type(n + 5) {
    display: grid;
  }

  .home-ranking-box .tabs-static {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-ranking-card a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .home-ranking-card img {
    width: 100%;
  }

  .home-list-slide-copy {
    padding: 18px 20px 72px;
  }

  .home-list-slide-copy h3 {
    font-size: 1.45rem;
  }

  .home-lists-controls {
    left: 20px;
    bottom: 18px;
  }
}

/* Keep the preview colors above later header animation rules. */
.site-header .local-time {
  color: #767676;
}

.site-header.is-condensed {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

@media (max-width: 760px) {
  .site-footer .footer-left,
  .site-footer .footer-newsletter,
  .site-footer .footer-newsletter .footer-newsletter-legal,
  .site-footer .footer-signup-form,
  .site-footer .footer-magazine,
  .site-footer .footer-magazine-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .site-footer .footer-magazine-grid {
    margin-right: 0;
    padding-right: 0;
  }
}

/* FigureAsia refined publication footer — 2026-07-14. */
.site-footer .footer-shell {
  padding-top: 44px;
}

.site-footer .footer-brand-row {
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  padding-bottom: 22px;
}

.site-footer .footer-brand {
  font-size: 2.85rem;
}

.site-footer .footer-brand-row nav {
  gap: 13px 24px;
  font-size: 0.82rem;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 0 42px;
}

.site-footer .footer-newsletter {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-newsletter-copy,
.site-footer .footer-newsletter-signup {
  min-width: 0;
}

.site-footer .footer-newsletter h2 {
  max-width: 520px;
  margin-top: 9px;
  font-size: clamp(1.55rem, 1.9vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.site-footer .footer-signup-form {
  grid-template-columns: minmax(0, 1fr) 142px;
  max-width: none;
  margin-top: 1px;
}

.site-footer .footer-signup-form input,
.site-footer .footer-signup-form button {
  min-height: 48px;
  font-size: 0.84rem;
}

.site-footer .footer-newsletter .footer-newsletter-legal {
  max-width: none;
  margin-top: 11px;
  font-size: 0.67rem;
  line-height: 1.5;
}

.footer-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(36px, 4.6vw, 66px);
  padding: 34px 0 36px;
}

.footer-editorial .footer-magazine,
.footer-editorial .footer-rankings {
  min-width: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-magazine-head,
.footer-rankings-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
  margin-bottom: 16px;
}

.footer-rankings-head > div > span {
  display: block;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-rankings-head h3 {
  margin: 7px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.68rem;
  font-weight: 400;
  line-height: 1;
}

.footer-rankings-head > a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
}

.footer-rankings-head > a:hover,
.footer-rankings-head > a:focus-visible {
  color: #fff;
}

.footer-magazine-grid {
  gap: clamp(12px, 1.5vw, 18px);
}

.footer-magazine-card strong {
  font-size: 0.84rem;
  line-height: 1.12;
}

.footer-magazine-actions {
  margin-top: 16px;
}

.footer-magazine-head h3 {
  font-size: 1.68rem;
}

.footer-magazine-head > a,
.footer-magazine-actions a {
  font-size: 0.72rem;
}

.footer-rankings .footer-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 15px;
  margin-top: 0;
}

.footer-rankings .footer-list-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 6px;
  color: #fff;
}

.footer-rankings .footer-list-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 180ms ease, transform 180ms ease;
}

.footer-rankings .footer-list-card > span {
  margin-top: 3px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.footer-rankings .footer-list-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.footer-rankings .footer-list-card:hover img,
.footer-rankings .footer-list-card:focus-visible img {
  transform: translateY(-3px);
  border-color: var(--red);
}

.site-footer .footer-link-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4.5vw, 62px);
  padding: 26px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-link-columns h3 {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.site-footer .footer-link-columns div {
  gap: 7px;
}

.site-footer .footer-link-columns a {
  font-size: 0.74rem;
  line-height: 1.28;
}

.site-footer .footer-bottom,
.site-footer .footer-bottom a {
  font-size: 0.69rem;
}

/* Footer legibility and FigureAsia legal disclosure — 2026-07-14. */
.site-footer .footer-brand-row nav {
  font-size: 0.9rem;
}

.site-footer .footer-newsletter .footer-newsletter-legal {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.58;
}

.footer-magazine-head > div > span,
.footer-rankings-head > div > span {
  font-size: 0.78rem;
}

.footer-magazine-head > a,
.footer-rankings-head > a {
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-magazine-actions {
  gap: 14px 32px;
  margin-top: 21px;
}

.footer-magazine-actions a {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-magazine-card > span,
.footer-rankings .footer-list-card > span {
  font-size: 0.78rem;
}

.footer-magazine-card strong {
  font-size: 0.94rem;
  line-height: 1.18;
}

.footer-rankings .footer-list-card strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.site-footer .footer-link-columns a {
  font-size: 0.84rem;
  line-height: 1.4;
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 19px;
  padding: 25px 0 31px;
}

.site-footer .footer-legal-copy {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 9px;
}

.site-footer .footer-legal-copy p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.82rem, 0.86vw, 0.86rem);
  line-height: 1.58;
}

.site-footer .footer-legal-copy p:first-child {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .footer-issn {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer .footer-legal-copy a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.site-footer .footer-bottom nav {
  justify-content: flex-start;
  gap: 11px 24px;
}

.site-footer .footer-bottom nav a,
.site-footer .footer-bottom .fa-cookie-settings-link {
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer .footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 15px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-social-bar > span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

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

.site-footer .footer-social-links a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-footer .footer-social-links svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.site-footer .footer-social-links a:hover,
.site-footer .footer-social-links a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 940px) {
  .site-footer .footer-newsletter {
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
    gap: 36px;
  }

  .footer-editorial {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-rankings .footer-list-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer .footer-shell {
    padding-top: 38px;
  }

  .site-footer .footer-brand-row {
    gap: 24px;
    padding-bottom: 22px;
  }

  .site-footer .footer-newsletter {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
    padding: 29px 0 32px;
  }

  .site-footer .footer-newsletter h2 {
    max-width: 430px;
    font-size: 1.5rem;
    line-height: 1.06;
  }

  .site-footer .footer-signup-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-editorial {
    gap: 38px;
    padding: 30px 0 32px;
  }

  .footer-magazine-head,
  .footer-rankings-head {
    min-height: 0;
  }

  .footer-rankings .footer-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .site-footer .footer-link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 22px;
    padding: 24px 0 25px;
  }

  .site-footer .footer-social-bar {
    min-height: 62px;
    padding-bottom: 16px;
  }
}

@media (max-width: 430px) {
  .site-footer .footer-social-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 430px) {
  .footer-magazine-head,
  .footer-rankings-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-magazine-head h3,
  .footer-rankings-head h3 {
    font-size: 1.5rem;
  }
}

/* Mobile footer containment — keep the publication modules and navigation
   inside the viewport without changing the desktop publication layout. */
@media (max-width: 760px) {
  .site-footer .footer-brand-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  .site-footer .footer-brand {
    display: block;
    width: min(78vw, 300px);
    max-width: 100%;
  }

  .site-footer .footer-brand img {
    width: 100%;
    height: auto;
  }

  .site-footer .footer-brand-row nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0;
    padding-top: 4px;
  }

  .site-footer .footer-brand-row nav a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    padding: 9px 10px 9px 0;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .site-footer .footer-brand-row nav a:nth-child(even) {
    padding-right: 0;
    padding-left: 12px;
  }

  .site-footer .footer-main,
  .site-footer .footer-editorial,
  .site-footer .footer-magazine,
  .site-footer .footer-rankings,
  .site-footer .footer-magazine-head,
  .site-footer .footer-rankings-head,
  .site-footer .footer-magazine-head > div,
  .site-footer .footer-rankings-head > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .site-footer .footer-magazine-head,
  .site-footer .footer-rankings-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-items: start;
    gap: 10px;
  }

  .site-footer .footer-magazine-head h3,
  .site-footer .footer-rankings-head h3 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7.6vw, 2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .site-footer .footer-magazine-head > a,
  .site-footer .footer-rankings-head > a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
  }

  .site-footer .footer-magazine-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 14px 12px;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .site-footer .footer-magazine-card {
    width: auto;
    min-width: 0;
    max-width: 100%;
    flex: none;
  }

  .site-footer .footer-magazine-card:nth-child(4) {
    display: grid;
  }

  .site-footer .footer-magazine-card strong {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .site-footer .footer-magazine-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px 18px;
  }

  .site-footer .footer-magazine-actions a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    font-size: 0.84rem;
    line-height: 1.3;
  }
}

@media (min-width: 761px) {
  .site-footer .footer-magazine-card:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-footer .footer-magazine-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
}

/* 2026-07-14 List banner fidelity.
   Uploaded banners keep their intrinsic 1.45:1 artwork: no crop, stretch or
   dark letterboxing in Featured Lists, Lists & Rankings, or the footer. */
.home-front .home-ranking-box .home-ranking-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
}

.home-list-slide a {
  align-items: start;
}

.home-list-slide-media {
  display: block;
  align-self: start;
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.home-list-slide-media img,
.home-list-slide img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: var(--banner-ratio, auto);
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.footer-rankings .footer-list-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--banner-ratio, auto);
  object-fit: contain;
  object-position: center;
  background: transparent;
}

/* Keep Lists & Rankings copy vertically centred against the full banner height. */
@media (min-width: 1061px) {
  .home-list-slide a {
    align-items: stretch;
  }

  .home-list-slide-media {
    align-self: stretch;
  }

  .home-list-slide-copy {
    align-self: stretch;
    align-content: center;
    padding: clamp(46px, 5vw, 76px) clamp(34px, 4vw, 58px);
  }
}

/* 2026-07-14 Person profile article.
   The portrait and headline occupy one continuous field; the layered gradient
   deliberately removes the visual seam of a split card layout. */
.profile-article {
  background: var(--paper);
}

.profile-hero {
  position: relative;
  min-height: clamp(620px, 51vw, 820px);
  overflow: hidden;
  isolation: isolate;
  background: #171512;
  color: #fff;
}

.profile-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #332f29;
}

.profile-hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
}

/* Leadership article media quality and rendering are deliberately scoped to
   the section. Avoid an extra filtered/GPU raster pass on full-width heroes;
   it can soften otherwise sharp source photography on high-DPI displays. */
.leadership-profile-article .profile-hero-media img,
.article-page:not(.non-leadership-article) .article-hero img {
  filter: none;
  transform: none;
  backface-visibility: visible;
}

@media (min-width: 761px) {
  .leadership-report-article .profile-hero-media.is-compact img {
    width: min(72%, 960px);
  }

  .leadership-report-article .profile-hero-media.is-portrait img {
    width: min(64%, 900px);
    object-fit: contain;
    object-position: center;
  }

  .leadership-report-article .profile-hero-media:not(.is-portrait):not(.is-compact) img {
    object-position: center 24%;
  }
}

.related-leadership {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

/* The 2025 Business Leaders source set is portrait-led. Keep faces in the
   visible upper third when those images are adapted to the cinematic hero. */
.business-leaders-2025-profile .profile-hero-media img {
  object-position: center 22%;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(18, 16, 13, 0.5) 0%, rgba(18, 16, 13, 0) 30%),
    linear-gradient(
      90deg,
      rgba(23, 21, 18, 0) 0%,
      rgba(23, 21, 18, 0.04) 25%,
      rgba(23, 21, 18, 0.18) 38%,
      rgba(23, 21, 18, 0.68) 54%,
      rgba(23, 21, 18, 0.95) 68%,
      #171512 82%,
      #171512 100%
    );
}

.profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.profile-hero-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 61%) minmax(0, 39%);
  align-items: center;
  padding-block: clamp(72px, 8vw, 118px);
}

.profile-hero-copy {
  grid-column: 2;
  max-width: 590px;
  padding-left: clamp(16px, 1.65vw, 28px);
}

.profile-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(26px, 3vw, 46px);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.profile-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--section-color, var(--red));
}

.profile-kicker span {
  color: rgba(255, 255, 255, 0.42);
}

.profile-kicker strong {
  color: var(--section-color, var(--red));
  font: inherit;
}

.profile-hero h1 {
  max-width: 590px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2rem, 2.85vw, 3.25rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.profile-hero-summary {
  max-width: 540px;
  margin-top: clamp(24px, 2.5vw, 36px);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.7);
}

.profile-article-grid {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-block: 62px 92px;
}

.profile-share-rail {
  top: 148px;
  width: 42px;
  justify-self: end;
}

.profile-share-rail > .share-label {
  margin-bottom: 2px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.profile-story-intro {
  padding-top: 24px;
  border-top: 4px solid var(--section-color, var(--red));
}

.profile-story-intro .breadcrumb {
  margin-bottom: 25px;
}

.profile-dek {
  max-width: 750px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.38rem, 2vw, 1.75rem);
  line-height: 1.4;
  color: #252525;
}

.profile-meta {
  justify-content: space-between;
  margin-top: 27px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
}

.profile-article-content {
  max-width: 720px;
  margin: 38px auto 0;
}

.profile-article-content > p:first-child::first-letter {
  float: left;
  margin: 0.09em 0.1em 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 4.25rem;
  line-height: 0.73;
  color: var(--red);
}

.profile-article-content .article-image-credit {
  margin-top: 42px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #858585;
}

.profile-article-side {
  margin-top: 28px;
  padding: 18px;
}

.profile-article-side h2 {
  font-size: 1rem;
  line-height: 1.12;
}

@media (max-width: 1060px) {
  .profile-hero-inner {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }

  .profile-article-grid {
    display: block;
    max-width: 808px;
  }

  .profile-share-rail,
  .profile-article-side {
    display: none;
  }
}

@media (max-width: 760px) {
  .profile-hero {
    min-height: clamp(720px, 185vw, 860px);
  }

  .profile-hero-media {
    inset: 0 0 auto;
    width: 100%;
    height: 62%;
  }

  .profile-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(23, 21, 18, 0.03) 0%,
        rgba(23, 21, 18, 0.08) 26%,
        rgba(23, 21, 18, 0.76) 52%,
        #171512 70%,
        #171512 100%
      );
  }

  .profile-hero-inner {
    display: flex;
    align-items: flex-end;
    padding-block: 350px 44px;
  }

  .profile-hero-copy {
    width: 100%;
    max-width: 620px;
    padding-left: 0;
  }

  .profile-kicker {
    margin-bottom: 24px;
    font-size: 0.64rem;
  }

  .profile-hero h1 {
    font-size: clamp(2rem, 8.6vw, 3.1rem);
    line-height: 1;
  }

  .profile-hero-summary {
    margin-top: 22px;
    font-size: 0.86rem;
  }

  .profile-article-grid {
    padding-block: 42px 72px;
  }

  .profile-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .profile-hero-inner {
    padding-top: 330px;
  }

  .profile-article-grid {
    display: block;
  }

  .profile-share-rail {
    display: none;
  }

  .profile-dek {
    font-size: 1.28rem;
  }

  .profile-article-content {
    font-size: 1rem;
    line-height: 1.72;
  }
}

/* Leadership profile hero: keep the established right inset while centering
   the complete copy block vertically inside the image. */
@media (min-width: 761px) {
  .leadership-profile-article .profile-hero-inner {
    --leadership-hero-copy-inset: clamp(32px, 4vw, 72px);
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 33%);
    align-items: center;
    padding: clamp(72px, 8vw, 118px) var(--leadership-hero-copy-inset);
  }

  .leadership-profile-article .profile-hero-copy {
    width: 100%;
    max-width: 590px;
    align-self: center;
    justify-self: end;
    padding-left: clamp(28px, 2.5vw, 44px);
    transform: none;
  }
}

/* Leadership archive: scoped editorial layout. */
.leadership-archive-header > .wrap,
.leadership-archive > .wrap {
  width: min(1400px, calc(100% - 48px));
}

.leadership-archive {
  --leadership-gold: var(--red);
  padding-top: 54px;
}

.leadership-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2.12fr) minmax(300px, 0.88fr);
  gap: 58px;
  align-items: stretch;
  padding-bottom: 54px;
  border-bottom: 1px solid #cfcfcf;
}

.leadership-showcase-left {
  min-width: 0;
}

.leadership-feature > a {
  display: block;
}

.leadership-feature img,
.leadership-small-grid img,
.leadership-thumb-grid img,
.leadership-showcase-right img,
.leadership-river-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

/* Portrait focal points for the July 2026 Leadership image refresh. These
   affect cropping only; the source photographs remain unretouched. */
.leadership-archive img[src$="/barry-lam.jpg"] { object-position: 50% 27%; }
.leadership-archive img[src$="/kushal-pal-singh.jpg"] { object-position: 56% 29%; }
.leadership-archive img[src$="/kwong-siu-hing.jpg"] { object-position: 50% 31%; }
.leadership-archive img[src$="/lee-jun-ho.webp"] { object-position: 55% 39%; }
.leadership-archive img[src$="/rafaela-aponte-diamant.jpg"] { object-position: 50% 28%; }
.leadership-archive img[src$="/ravi-jaipuria.webp"] { object-position: 36% 34%; }
.leadership-archive img[src$="/tadashi-yanai.jpg"] { object-position: 50% 28%; }
.leadership-archive img[src$="/vinod-khosla.jpg"] { object-position: 50% 39%; }
.leadership-archive img[src$="/zhou-qunfei.webp"] { object-position: 58% 30%; }
.leadership-archive img[src$="/lin-tsung-chi.jpg"] { object-position: 50% 34%; }
.leadership-archive img[src$="/098-michael-kadoorie.jpg"] { object-position: 50% 28%; }
.leadership-archive img[src$="/michael-kadoorie-hd.jpg"] { object-position: 50% 30%; }

.profile-hero-media img[src$="/barry-lam.jpg"] { object-position: 50% 25%; }
.profile-hero-media img[src$="/kushal-pal-singh.jpg"] { object-position: 56% 29%; }
.profile-hero-media img[src$="/kwong-siu-hing.jpg"] { object-position: 50% 28%; }
.profile-hero-media img[src$="/lee-jun-ho.webp"] { object-position: 55% 36%; }
.profile-hero-media img[src$="/rafaela-aponte-diamant.jpg"] { object-position: 50% 24%; }
.profile-hero-media img[src$="/ravi-jaipuria.webp"] { object-position: 36% 32%; }
.profile-hero-media img[src$="/tadashi-yanai.jpg"] { object-position: 50% 25%; }
.profile-hero-media img[src$="/vinod-khosla.jpg"] { object-position: 50% 37%; }
.profile-hero-media img[src$="/zhou-qunfei.webp"] { object-position: 58% 28%; }
.profile-hero-media img[src$="/lin-tsung-chi.jpg"] { object-position: 50% 22%; }
.profile-hero-media img[src$="/michael-kadoorie-hd.jpg"] { object-position: 50% 25%; }

.home-page .home-channel img[src$="/barry-lam.jpg"],
.nav-mega img[src$="/barry-lam.jpg"] { object-position: 50% 27%; }
.home-page .home-channel img[src$="/kushal-pal-singh.jpg"],
.nav-mega img[src$="/kushal-pal-singh.jpg"] { object-position: 56% 29%; }
.home-page .home-channel img[src$="/kwong-siu-hing.jpg"],
.nav-mega img[src$="/kwong-siu-hing.jpg"] { object-position: 50% 31%; }
.home-page .home-channel img[src$="/lee-jun-ho.webp"],
.nav-mega img[src$="/lee-jun-ho.webp"] { object-position: 55% 39%; }
.home-page .home-channel img[src$="/rafaela-aponte-diamant.jpg"],
.nav-mega img[src$="/rafaela-aponte-diamant.jpg"] { object-position: 50% 28%; }
.home-page .home-channel img[src$="/ravi-jaipuria.webp"],
.nav-mega img[src$="/ravi-jaipuria.webp"] { object-position: 36% 34%; }
.home-page .home-channel img[src$="/tadashi-yanai.jpg"],
.nav-mega img[src$="/tadashi-yanai.jpg"] { object-position: 50% 28%; }
.home-page .home-channel img[src$="/vinod-khosla.jpg"],
.nav-mega img[src$="/vinod-khosla.jpg"] { object-position: 50% 39%; }
.home-page .home-channel img[src$="/zhou-qunfei.webp"],
.nav-mega img[src$="/zhou-qunfei.webp"] { object-position: 58% 30%; }
.home-page .home-channel img[src$="/lin-tsung-chi.jpg"],
.nav-mega img[src$="/lin-tsung-chi.jpg"] { object-position: 50% 34%; }
.home-page .home-channel img[src$="/michael-kadoorie-hd.jpg"],
.nav-mega img[src$="/michael-kadoorie-hd.jpg"] { object-position: 50% 30%; }

.leadership-feature img {
  aspect-ratio: 16 / 8.9;
}

.leadership-feature .kicker {
  margin-top: 20px;
  color: var(--leadership-gold);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-feature h2 {
  max-width: 880px;
  margin-top: 10px;
  font-size: clamp(1.95rem, 2.45vw, 2.55rem);
  line-height: 1.04;
}

.leadership-archive .meta,
.leadership-small-grid span,
.leadership-river-copy time {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.leadership-feature .meta {
  margin-top: 15px;
  font-size: 0.78rem;
}

.leadership-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 62px;
  row-gap: 36px;
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid #d7d7d7;
}

.leadership-small-grid article {
  min-width: 0;
  padding: 0;
}

.leadership-small-grid article:nth-child(odd) {
  padding-right: 0;
  border-right: 0;
}

.leadership-small-grid article:nth-child(even) {
  padding-left: 0;
}

.leadership-small-grid article:nth-child(n + 3) {
  border-top: 0;
}

.leadership-small-grid a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.leadership-small-grid img {
  aspect-ratio: 4 / 3;
}

.leadership-small-grid h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.leadership-small-grid span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.leadership-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 68px;
}

.leadership-thumb-grid img {
  aspect-ratio: 16 / 9.5;
}

.leadership-thumb-grid h3 {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.18;
}

.leadership-showcase-right {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 50px;
  align-content: stretch;
  contain: size;
  padding-left: 40px;
  border-left: 1px solid #cfcfcf;
}

.leadership-showcase-right article {
  min-width: 0;
  min-height: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.leadership-showcase-right article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.leadership-showcase-right article > a {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: start;
  height: 100%;
}

.leadership-showcase-right img {
  height: 100%;
  aspect-ratio: auto;
}

.leadership-showcase-right h3 {
  margin-top: 16px;
  font-size: 1.12rem;
  line-height: 1.13;
}

.leadership-showcase-right .meta {
  margin-top: 11px;
  font-size: 0.7rem;
  line-height: 1.35;
}

.leadership-river {
  margin-top: 70px;
  border-top: 3px solid var(--ink);
}

.leadership-river-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 246px;
  gap: 44px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #d7d7d7;
}

.leadership-river-copy {
  min-width: 0;
}

.leadership-river-copy time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.leadership-river-copy h3 {
  font-size: clamp(1.16rem, 1.4vw, 1.34rem);
  line-height: 1.13;
}

.leadership-river-copy p {
  max-width: 920px;
  margin-top: 9px;
  color: #454545;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.48;
}

.leadership-river-copy .meta {
  margin-top: 11px;
  font-size: 0.73rem;
}

.leadership-river-image {
  display: block;
}

.leadership-river-image img {
  aspect-ratio: 16 / 9;
}

.leadership-more-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 42px;
}

.leadership-more {
  min-width: 190px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease;
}

.leadership-more:hover,
.leadership-more:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.leadership-more:disabled {
  cursor: wait;
  opacity: 0.62;
}

.leadership-more[hidden] {
  display: none;
}

.leadership-archive article a:hover h2,
.leadership-archive article a:hover h3 {
  color: var(--red-dark);
}

@media (max-width: 1080px) {
  .leadership-archive-header > .wrap,
  .leadership-archive > .wrap {
    width: min(100% - 48px, 960px);
  }

  .leadership-showcase {
    grid-template-columns: 1fr;
  }

  .leadership-showcase-right {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 28px;
    contain: none;
    padding-top: 38px;
    padding-left: 0;
    border-top: 1px solid #cfcfcf;
    border-left: 0;
  }

  .leadership-showcase-right article,
  .leadership-showcase-right article:last-child {
    padding: 0;
    border-bottom: 0;
  }

  .leadership-showcase-right article > a {
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .leadership-showcase-right img {
    height: auto;
    aspect-ratio: 16 / 9.5;
  }
}

@media (max-width: 720px) {
  .leadership-archive-header > .wrap,
  .leadership-archive > .wrap {
    width: min(100% - 32px, 620px);
  }

  .leadership-archive {
    padding-top: 26px;
  }

  .leadership-feature h2 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .leadership-small-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .leadership-small-grid article,
  .leadership-small-grid article:nth-child(odd),
  .leadership-small-grid article:nth-child(even) {
    padding: 0;
    border-right: 0;
  }

  .leadership-small-grid article:nth-child(n + 2) {
    border-top: 0;
  }

  .leadership-thumb-grid,
  .leadership-showcase-right {
    grid-template-columns: 1fr;
  }

  .leadership-thumb-grid article,
  .leadership-showcase-right article,
  .leadership-showcase-right article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .leadership-showcase-right article:last-child {
    border-bottom: 0;
  }

  .leadership-river {
    margin-top: 48px;
  }

  .leadership-river-item {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 18px;
    padding: 23px 0;
  }

  .leadership-river-copy h3 {
    font-size: 1.08rem;
  }

  .leadership-river-copy p {
    display: none;
  }
}

@media (max-width: 420px) {
  .leadership-small-grid a {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 13px;
  }

  .leadership-river-item {
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 14px;
  }

  .leadership-river-copy h3 {
    font-size: 1rem;
  }

  .leadership-river-copy .meta {
    display: none;
  }
}

/* Homepage width and media-ratio system — desktop expansion only. */
.home-page .latest-strip > .wrap,
.home-page main .wrap {
  width: min(1280px, calc(100% - 64px));
}

.home-page .strip-layout {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 22px;
  min-height: 112px;
}

.home-page .strip-window {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.home-page .latest-label {
  align-self: center;
  justify-self: start;
  padding: 8px 15px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
}

.home-page .strip-track {
  grid-auto-columns: max(220px, calc((100% - 72px) / 4));
  gap: 24px;
  align-items: center;
}

.home-page .strip-track article {
  display: grid;
  min-height: 64px;
  align-content: center;
  padding: 8px 24px 8px 0;
}

.home-page .strip-track time {
  margin-bottom: 6px;
  font-size: 0.74rem;
  line-height: 1.2;
}

.home-page .strip-track a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.3;
}

.home-page .round-arrow {
  width: 36px;
  height: 36px;
  font-size: 1.85rem;
}

/* Keep every homepage story card concise without changing the stored headline. */
.home-page main article h2,
.home-page main article h3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Fixed editorial crops: scaling changes size, never the image geometry. */
.home-page .home-front .home-ranking-box .home-ranking-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.home-page .home-list-slide-media {
  align-self: start;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #080808;
}

.home-page .home-list-slide a {
  align-items: start;
}

.home-page .home-list-slide-media img,
.home-page .home-list-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.home-page .home-front .front-grid.front-grid-wealth {
  height: 1000px;
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
}

.home-page .front-grid-wealth .front-wealth-panel,
.home-page .front-grid-wealth .home-ranking-box {
  height: 100%;
  min-height: 0;
  align-self: stretch;
}

.home-page .front-grid-wealth .front-wealth-panel {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.home-page .front-grid-wealth .front-wealth-table {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
}

.home-page .front-grid-wealth .home-ranking-box {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.home-page .front-grid-wealth .home-ranking-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.home-page .front-grid-wealth .home-ranking-card,
.home-page .front-grid-wealth .home-ranking-card > a {
  min-height: 0;
  height: 100%;
}

.home-page .front-grid-wealth .home-ranking-card > a {
  align-content: start;
}

.home-page .pattern-rail img,
.home-page .pattern-feature img,
.home-page .pattern-quad img,
.home-page .spotlight-feature img,
.home-page .spotlight-rail img,
.home-page .spotlight-strip img {
  height: auto;
  object-fit: cover;
  object-position: center;
}

.home-page .pattern-quad article a {
  grid-template-columns: clamp(100px, 8vw, 136px) minmax(0, 1fr);
  gap: clamp(14px, 1.3vw, 22px);
}

.home-page .pattern-quad img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.home-page .spotlight-rail article a {
  grid-template-columns: minmax(0, 1fr) clamp(122px, 10vw, 168px);
  gap: clamp(18px, 1.5vw, 26px);
}

.home-page .spotlight-rail img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.home-page .spotlight-strip article a {
  grid-template-columns: clamp(112px, 8vw, 144px) minmax(0, 1fr);
  gap: clamp(14px, 1.25vw, 22px);
}

.home-page .spotlight-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

@media (max-width: 1060px) {
  .home-page .latest-strip > .wrap,
  .home-page main .wrap {
    width: min(100% - 48px, 960px);
  }

  .home-page .home-list-slide-media {
    aspect-ratio: 1.45 / 1;
  }

  .home-page .home-front .front-grid.front-grid-wealth {
    height: auto;
  }

  .home-page .front-grid-wealth .front-wealth-table {
    height: auto;
    max-height: 610px;
  }

  .home-page .front-grid-wealth .front-wealth-panel,
  .home-page .front-grid-wealth .home-ranking-box,
  .home-page .front-grid-wealth .home-ranking-card,
  .home-page .front-grid-wealth .home-ranking-card > a {
    height: auto;
  }

  .home-page .front-grid-wealth .home-ranking-list {
    grid-template-rows: none;
  }

}

@media (max-width: 760px) {
  .home-page .latest-strip > .wrap,
  .home-page main .wrap {
    width: min(100% - 32px, 620px);
  }

  .home-page .strip-layout {
    min-height: 104px;
  }

  .home-page .strip-window {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .latest-label {
    justify-self: center;
  }

  .home-page .strip-track {
    grid-auto-columns: minmax(210px, 86%);
  }

  .home-page .front-grid-wealth .front-wealth-table {
    max-height: 470px;
  }

}

/* Shared editorial strip and category archive — keep aligned with the homepage and Leadership. */
.latest-strip > .wrap {
  width: min(1280px, calc(100% - 64px));
}

.latest-strip .strip-layout {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 22px;
  min-height: 112px;
}

.latest-strip .strip-window {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.latest-strip .latest-label {
  align-self: center;
  justify-self: start;
  padding: 8px 15px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
}

.latest-strip .strip-track {
  grid-auto-columns: max(220px, calc((100% - 72px) / 4));
  gap: 24px;
  align-items: center;
}

.latest-strip .strip-track article {
  display: grid;
  min-height: 64px;
  align-content: center;
  padding: 8px 24px 8px 0;
}

.latest-strip .strip-track time {
  margin-bottom: 6px;
  font-size: 0.74rem;
  line-height: 1.2;
}

.latest-strip .strip-track a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.3;
}

.latest-strip .round-arrow {
  width: 36px;
  height: 36px;
  font-size: 1.85rem;
}

.category-archive-header > .wrap,
.category-archive > .wrap {
  width: min(1400px, calc(100% - 48px));
}

.category-archive {
  padding-top: 54px;
}

.category-river {
  margin-top: 70px;
}

.leadership-river-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

.leadership-river-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.category-archive article a:hover h2,
.category-archive article a:hover h3 {
  color: var(--section-color, var(--red));
}

@media (max-width: 1080px) {
  .latest-strip > .wrap,
  .category-archive-header > .wrap,
  .category-archive > .wrap {
    width: min(100% - 48px, 960px);
  }
}

@media (max-width: 760px) {
  .latest-strip > .wrap,
  .category-archive-header > .wrap,
  .category-archive > .wrap {
    width: min(100% - 32px, 620px);
  }

  .latest-strip .strip-layout {
    min-height: 104px;
  }

  .latest-strip .strip-window {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .latest-strip .latest-label {
    justify-self: center;
  }

  .latest-strip .strip-track {
    grid-auto-columns: minmax(210px, 86%);
  }

  .category-archive {
    padding-top: 26px;
  }

  .category-river {
    margin-top: 48px;
  }
}

/* Article sharing — live social destinations, native share and copy feedback. */
.share-rail {
  position: sticky;
}

.share-rail a,
.share-rail button {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.share-rail a:hover,
.share-rail a:focus-visible,
.share-rail button:hover,
.share-rail button:focus-visible {
  border-color: var(--section-color, var(--red));
  background: var(--section-color, var(--red));
  color: #fff;
}

.share-rail [data-share-platform="linkedin"] span {
  font-size: 0.68rem;
  letter-spacing: -0.04em;
}

.share-rail [hidden] {
  display: none;
}

.share-label,
.profile-share-rail > .share-label {
  width: 38px;
  margin: 0;
  color: #858585;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.share-status {
  position: absolute;
  left: 48px;
  bottom: 0;
  z-index: 4;
  width: max-content;
  max-width: 180px;
  padding: 7px 9px;
  border-radius: 2px;
  background: #111;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.share-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.raw-html-share-wrap {
  position: relative;
  z-index: 3;
  padding-top: 26px;
}

.raw-html-share-rail {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1060px) {
  .article-grid > .share-rail,
  .profile-article-grid > .profile-share-rail {
    position: relative;
    top: auto;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px;
  }

  .share-label,
  .profile-share-rail > .share-label {
    width: auto;
    margin-right: 5px;
  }

  .share-status {
    left: 0;
    top: calc(100% + 7px);
    bottom: auto;
  }
}

/* Pei Zhenhua digital edition.
   This one-story treatment translates the reference magazine's folios, hard
   rules, display typography, data ledger and editorial columns to the web. */
.magazine-profile {
  --magazine-paper: #f4f1e9;
  --magazine-ink: #080808;
  --magazine-red: #ed1c24;
  --magazine-blue: #dceef2;
  background: var(--magazine-paper);
  color: var(--magazine-ink);
}

.magazine-profile .profile-hero {
  min-height: clamp(760px, 62vw, 900px);
  background: var(--magazine-paper);
  border-bottom: 18px solid var(--magazine-ink);
  color: var(--magazine-ink);
}

.magazine-profile .profile-hero-media {
  inset: 104px 4.5vw 64px auto;
  z-index: 0;
  width: 50%;
  overflow: hidden;
  border: 1px solid var(--magazine-ink);
  background: #91cfe6;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.magazine-profile .profile-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 241, 233, 0.92) 0%, rgba(244, 241, 233, 0.24) 16%, rgba(244, 241, 233, 0) 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 36%);
}

.magazine-profile .profile-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.82) contrast(1.06);
}

.magazine-profile .profile-hero::before {
  z-index: 1;
  background: linear-gradient(90deg, var(--magazine-paper) 0%, var(--magazine-paper) 40%, rgba(244, 241, 233, 0.88) 47%, rgba(244, 241, 233, 0) 62%);
}

.magazine-profile .profile-hero::after {
  content: "ENERGY";
  inset: auto auto 2px 2.5vw;
  z-index: 1;
  width: auto;
  height: auto;
  opacity: 0.035;
  background: none;
  color: var(--magazine-ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.72;
  white-space: nowrap;
}

.magazine-profile-rule {
  position: absolute;
  top: 44px;
  left: 4.5vw;
  right: 4.5vw;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: start;
  gap: 12px;
  height: 18px;
}

.magazine-profile-rule span {
  height: 14px;
  background: var(--magazine-ink);
}

.magazine-profile-rule i {
  width: 24px;
  height: 24px;
  justify-self: center;
  border: 8px solid var(--magazine-ink);
  border-top: 0;
  border-radius: 0 0 50% 50%;
}

.magazine-profile-folio {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.magazine-profile-folio strong {
  font-size: 0.72rem;
}

.magazine-profile-folio span {
  padding-left: 14px;
  border-left: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.magazine-profile-rank {
  position: absolute;
  top: 126px;
  right: calc(4.5vw + 18px);
  z-index: 4;
  width: 156px;
  padding: 13px 15px 14px;
  background: var(--magazine-red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  text-align: right;
}

.magazine-profile-rank small,
.magazine-profile-rank span {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.magazine-profile-rank strong {
  display: block;
  margin: 7px 0 5px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 4.4rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.magazine-profile-photo-credit {
  position: absolute;
  right: 19px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.magazine-profile .profile-hero-inner,
.leadership-profile-article.magazine-profile .profile-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1400px, calc(100% - 9vw));
  max-width: none;
  min-height: inherit;
  grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  align-items: end;
  padding: 126px 0 68px;
}

.magazine-profile .profile-hero-copy,
.leadership-profile-article.magazine-profile .profile-hero-copy {
  grid-column: 1;
  width: min(650px, 95%);
  max-width: none;
  align-self: end;
  justify-self: start;
  padding: 0;
}

.magazine-profile .profile-kicker {
  margin-bottom: clamp(26px, 3vw, 42px);
  color: rgba(8, 8, 8, 0.68);
}

.magazine-profile .profile-kicker::before {
  height: 3px;
  background: var(--magazine-red);
}

.magazine-profile .profile-kicker span {
  color: rgba(8, 8, 8, 0.36);
}

.magazine-profile .profile-kicker strong {
  color: var(--magazine-red);
}

.magazine-profile-overline {
  width: max-content;
  margin: 0 0 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.magazine-profile .profile-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--magazine-ink);
  text-wrap: balance;
}

.magazine-profile .profile-hero h1 > span,
.magazine-profile .profile-hero h1 > strong {
  display: block;
}

.magazine-profile .profile-hero h1 > span {
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(4rem, 6.4vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.magazine-profile .profile-hero h1 > strong {
  max-width: 590px;
  margin-top: 19px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.05rem, 3.15vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.magazine-profile .profile-hero-summary {
  max-width: 550px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 8, 8, 0.62);
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(0.83rem, 1vw, 0.98rem);
  line-height: 1.5;
}

.magazine-profile-coverline {
  margin-top: 17px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.magazine-profile .profile-article-grid {
  width: min(1360px, calc(100% - 64px));
  grid-template-columns: 52px minmax(0, 1120px) minmax(0, 1fr);
  gap: 30px;
  padding-block: 54px 108px;
}

.magazine-profile .profile-article-main {
  grid-column: 2;
  min-width: 0;
  padding: 0 clamp(28px, 4vw, 62px) 64px;
  border-right: 1px solid var(--magazine-ink);
  border-left: 1px solid var(--magazine-ink);
}

.magazine-profile .profile-share-rail {
  top: 164px;
  justify-self: center;
}

.magazine-profile .profile-share-rail::after {
  content: "THE PROFILE";
  width: 38px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--magazine-ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  writing-mode: vertical-rl;
}

.magazine-profile-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 14px solid var(--magazine-ink);
  border-bottom: 1px solid var(--magazine-ink);
}

.magazine-profile-ledger div {
  min-width: 0;
  min-height: 126px;
  padding: 18px 18px 16px;
  border-right: 1px solid var(--magazine-ink);
}

.magazine-profile-ledger div:last-child {
  border-right: 0;
}

.magazine-profile-ledger span,
.magazine-profile-ledger small,
.magazine-profile-ledger strong {
  display: block;
}

.magazine-profile-ledger span,
.magazine-profile-ledger small {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.magazine-profile-ledger span {
  margin-bottom: 16px;
  color: var(--magazine-red);
}

.magazine-profile-ledger small {
  color: #6f6c66;
}

.magazine-profile-ledger strong {
  margin-top: 7px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.04;
}

.magazine-profile .profile-story-intro {
  padding-top: 44px;
  border-top: 0;
}

.magazine-profile .profile-story-intro .breadcrumb {
  margin-bottom: 31px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.magazine-profile .profile-dek {
  max-width: 940px;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.magazine-profile .profile-meta {
  margin-top: 34px;
  padding: 15px 0;
  border-color: var(--magazine-ink);
  text-transform: uppercase;
}

.magazine-profile-thesis {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  margin: 38px 0 42px;
  border: 1px solid var(--magazine-ink);
  background: var(--magazine-blue);
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  line-height: 1.04;
}

.magazine-profile-thesis span {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 22px;
  background: var(--magazine-red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.magazine-profile-thesis:not(span) {
  gap: 28px;
  padding-right: clamp(24px, 4vw, 52px);
}

.magazine-profile .profile-article-content {
  max-width: none;
  margin: 0;
  column-count: 2;
  column-gap: clamp(38px, 5vw, 68px);
  column-rule: 1px solid var(--magazine-ink);
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.66;
  orphans: 3;
  widows: 3;
}

.magazine-profile .profile-article-content,
.magazine-profile .profile-article-content * {
  font-family: "FA Serif", Georgia, serif;
}

.magazine-profile .profile-article-content > p {
  margin-bottom: 1.15em;
}

.magazine-profile .profile-article-content > p:first-child::first-letter {
  margin: 0.08em 0.08em 0 0;
  color: var(--magazine-ink);
  font-size: 5.6rem;
  line-height: 0.68;
}

.magazine-profile .profile-article-content .article-image-credit {
  break-inside: avoid;
  column-span: all;
  margin-top: 35px;
  border-color: var(--magazine-ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.magazine-profile .tag-row {
  padding-top: 24px;
  border-top: 14px solid var(--magazine-ink);
}

.magazine-profile + .related {
  border-top: 14px solid var(--magazine-ink);
}

@media (max-width: 1200px) {
  .magazine-profile .profile-hero-inner,
  .leadership-profile-article.magazine-profile .profile-hero-inner {
    width: min(1120px, calc(100% - 64px));
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  }

  .magazine-profile .profile-hero-media {
    right: 32px;
    width: 49%;
  }

  .magazine-profile-rank {
    right: 50px;
  }

  .magazine-profile .profile-article-grid {
    display: block;
    width: min(1040px, calc(100% - 64px));
    max-width: none;
  }

  .magazine-profile .profile-share-rail {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .magazine-profile .profile-share-rail::after {
    width: auto;
    margin: 0 0 0 auto;
    padding: 0 0 0 18px;
    border-top: 0;
    border-left: 1px solid var(--magazine-ink);
    line-height: 38px;
    writing-mode: horizontal-tb;
  }

  .magazine-profile .profile-article-main {
    padding-inline: clamp(28px, 4vw, 52px);
  }
}

@media (max-width: 820px) {
  .magazine-profile .profile-hero {
    min-height: 1040px;
  }

  .magazine-profile .profile-hero-media {
    inset: 94px 24px auto;
    width: auto;
    height: 49%;
    clip-path: none;
  }

  .magazine-profile .profile-hero-media::after {
    background: linear-gradient(0deg, rgba(244, 241, 233, 0.96) 0%, rgba(244, 241, 233, 0.12) 34%, rgba(244, 241, 233, 0) 56%);
  }

  .magazine-profile .profile-hero::before {
    background: linear-gradient(180deg, transparent 0%, transparent 35%, var(--magazine-paper) 57%, var(--magazine-paper) 100%);
  }

  .magazine-profile .profile-hero::after {
    right: auto;
    bottom: 0;
    left: 20px;
    font-size: 28vw;
  }

  .magazine-profile-rule {
    top: 32px;
    left: 24px;
    right: 24px;
  }

  .magazine-profile-folio {
    display: none;
  }

  .magazine-profile-rank {
    top: 112px;
    right: 40px;
  }

  .magazine-profile .profile-hero-inner,
  .leadership-profile-article.magazine-profile .profile-hero-inner {
    display: flex;
    width: min(100% - 48px, 720px);
    min-height: 1040px;
    align-items: flex-end;
    padding: 565px 0 56px;
  }

  .magazine-profile .profile-hero-copy,
  .leadership-profile-article.magazine-profile .profile-hero-copy {
    width: 100%;
  }

  .magazine-profile .profile-hero h1 > span {
    font-size: clamp(4rem, 14vw, 6rem);
  }

  .magazine-profile .profile-hero h1 > strong {
    max-width: 680px;
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .magazine-profile .profile-hero-summary {
    max-width: 680px;
  }

  .magazine-profile .profile-article-grid {
    width: min(100% - 32px, 760px);
    padding-block: 38px 72px;
  }

  .magazine-profile .profile-article-main {
    padding: 0 24px 48px;
  }

  .magazine-profile-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .magazine-profile-ledger div:nth-child(2) {
    border-right: 0;
  }

  .magazine-profile-ledger div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--magazine-ink);
  }

  .magazine-profile .profile-dek {
    font-size: clamp(1.8rem, 7vw, 2.75rem);
  }

  .magazine-profile-thesis {
    grid-template-columns: 128px minmax(0, 1fr);
    font-size: clamp(1.4rem, 5vw, 2.25rem);
  }

  .magazine-profile .profile-article-content {
    column-count: 1;
    font-size: 1.02rem;
  }
}

@media (max-width: 520px) {
  .magazine-profile .profile-hero {
    min-height: 930px;
  }

  .magazine-profile .profile-hero-media {
    height: 40%;
  }

  .magazine-profile-rank {
    width: 128px;
  }

  .magazine-profile-rank strong {
    font-size: 3.65rem;
  }

  .magazine-profile .profile-hero-inner,
  .leadership-profile-article.magazine-profile .profile-hero-inner {
    min-height: 930px;
    padding-top: 430px;
    padding-bottom: 38px;
  }

  .magazine-profile .profile-kicker {
    margin-bottom: 20px;
  }

  .magazine-profile .profile-hero h1 > span {
    font-size: 3.25rem;
  }

  .magazine-profile .profile-hero h1 > strong {
    margin-top: 13px;
    font-size: 1.75rem;
  }

  .magazine-profile .profile-hero-summary {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.78rem;
  }

  .magazine-profile .profile-article-main {
    padding-inline: 18px;
  }

  .magazine-profile-ledger div {
    min-height: 112px;
    padding: 14px;
  }

  .magazine-profile-thesis {
    display: block;
    padding: 0 22px 26px;
  }

  .magazine-profile-thesis span {
    min-height: 48px;
    margin: 0 -22px 24px;
  }
}

/* Non-Leadership article detail typography and compact illustrated side rail. */
.non-leadership-article .article-main h1 {
  max-width: 850px;
  font-family: "FA Article Serif", "FA Serif", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 3.05rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: #171717;
}

.non-leadership-article .article-side {
  padding: 18px;
}

.non-leadership-article .article-side h2 {
  padding-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.15;
}

.non-leadership-article .article-side-list {
  display: grid;
}

.non-leadership-article .article-side-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.non-leadership-article .article-side-card-no-image {
  grid-template-columns: minmax(0, 1fr);
}

.non-leadership-article .article-side-card img {
  width: 84px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.non-leadership-article .article-side-title {
  display: -webkit-box;
  overflow: hidden;
  font-family: "FA Article Serif", "FA Serif", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.non-leadership-article .article-side-card:hover .article-side-title {
  color: var(--section-color, var(--red));
}

/* Magazine navigation uses full, uncropped cover art with no copy beneath it. */
.site-header .nav-mega-magazine .nav-magazine-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  padding-top: 28px;
  padding-bottom: 30px;
}

.site-header .nav-magazine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 46px);
  align-items: start;
  width: 100%;
}

.site-header .nav-magazine-cover {
  display: flex;
  justify-content: center;
  min-width: 0;
  transition: transform 160ms ease;
}

.site-header .nav-magazine-cover:hover,
.site-header .nav-magazine-cover:focus-visible {
  transform: translateY(-3px);
}

.site-header .nav-magazine-cover img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
}

/* FigureAsia digital magazine system — issue records and unified reader entry points. */
.magazine-intro-copy {
  justify-self: end;
  max-width: 620px;
}

.magazine-intro-copy > p {
  max-width: 580px;
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.02rem, 1.35vw, 1.34rem);
  font-weight: 400;
  line-height: 1.22;
}

.magazine-digital-note {
  display: block;
  max-width: 560px;
  margin-top: 15px;
  color: #7b7b7b;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1.55;
}

a.magazine-current-cover {
  display: block;
  color: #fff;
}

.magazine-cover-read {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: calc(100% - 56px);
  min-height: 74px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.94);
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.86rem, 1.35vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  text-transform: uppercase;
  transform: translate(-50%, calc(-50% + 8px));
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.magazine-current-cover:hover .magazine-cover-read,
.magazine-current-cover:focus-visible .magazine-cover-read,
.magazine-issue-card > a:hover .magazine-cover-read,
.magazine-issue-card > a:focus-visible .magazine-cover-read,
.footer-magazine-card:hover .magazine-cover-read,
.footer-magazine-card:focus-visible .magazine-cover-read,
.site-header .nav-magazine-cover:hover .magazine-cover-read,
.site-header .nav-magazine-cover:focus-visible .magazine-cover-read {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.72);
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.magazine-current-cover:hover img,
.magazine-current-cover:focus-visible img {
  transform: translateY(-5px);
  box-shadow: 34px 34px 0 #191919, 0 38px 88px rgba(0, 0, 0, 0.5);
}

.magazine-current-cover img {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.magazine-issue-number {
  margin: 30px 0 -19px;
  color: #8c8c8c;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-digital-archive {
  padding-bottom: 36px;
}

.magazine-issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 88px) clamp(28px, 4vw, 58px);
}

.magazine-issue-card {
  min-width: 0;
}

.magazine-issue-card > a {
  position: relative;
  display: block;
  background: #f3f3f3;
}

.magazine-issue-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #dedede;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.magazine-issue-card > a:hover img,
.magazine-issue-card > a:focus-visible img {
  transform: translateY(-5px);
  box-shadow: 0 23px 55px rgba(0, 0, 0, 0.16);
}

.magazine-issue-card > div {
  padding-top: 20px;
}

.magazine-issue-card span {
  color: #777;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.magazine-issue-card h3 {
  margin: 11px 0 19px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.03;
}

.magazine-issue-read {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #b8b8b8;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
}

.magazine-issue-read i {
  color: var(--red);
  font-style: normal;
}

.magazine-cover-archive {
  padding-top: 76px;
}

.magazine-archive-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin: -12px 0 42px;
}

.magazine-archive-context {
  max-width: 640px;
  margin: 0;
  color: #777;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1.55;
}

.magazine-archive-cta {
  flex: 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid #111;
  color: #111;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.magazine-cover-card > a {
  position: relative;
  display: block;
}

.magazine-cover-request {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  visibility: hidden;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.magazine-cover-card > a:hover .magazine-cover-request,
.magazine-cover-card > a:focus-visible .magazine-cover-request {
  background: rgba(0, 0, 0, 0.86);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header .nav-magazine-cover,
.footer-magazine-card {
  position: relative;
}

.site-header .nav-magazine-cover .magazine-cover-read {
  width: calc(100% - 24px);
  min-height: 38px;
  border-width: 1px;
  font-size: 0.58rem;
}

.footer-magazine-card .magazine-cover-read {
  top: 39%;
  width: calc(100% - 22px);
  min-height: 38px;
  margin: 0;
  border-width: 1px;
  color: #fff;
  font-size: 0.58rem;
  line-height: 1.15;
}

.site-header .nav-magazine-cover .magazine-cover-complimentary,
.footer-magazine-card .magazine-cover-complimentary {
  padding: 8px;
  font-size: 0.5rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 900px) {
  .magazine-issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .magazine-intro-copy {
    margin-top: 28px;
  }

  .magazine-intro-copy > p {
    max-width: 430px;
    font-size: 1.05rem;
  }

  .magazine-archive-intro {
    display: block;
  }

  .magazine-archive-cta {
    display: inline-flex;
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .magazine-intro-copy {
    justify-self: stretch;
  }

  .magazine-digital-note {
    margin-top: 12px;
  }

  .magazine-issue-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .magazine-current-cover .magazine-cover-read {
    width: calc(100% - 32px);
    min-height: 58px;
  }
}

@media (max-width: 760px) {
  .leadership-profile-article:not(.magazine-profile) .profile-hero {
    min-height: 0;
    background: #171512;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero::before {
    display: none;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(23, 21, 18, 0) 0%,
      rgba(23, 21, 18, 0.06) 38%,
      rgba(23, 21, 18, 0.3) 58%,
      rgba(23, 21, 18, 0.48) 78%,
      rgba(23, 21, 18, 0.58) 100%
    );
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-inner {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: clamp(330px, 80vw, 500px) 0 0;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-copy {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 36px clamp(18px, 4.5vw, 26px) 32px;
    background: linear-gradient(
      180deg,
      rgba(23, 21, 18, 0.02) 0%,
      rgba(23, 21, 18, 0.08) 45%,
      rgba(23, 21, 18, 0.18) 100%
    );
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.018);
    -webkit-backdrop-filter: blur(12px) saturate(1.06);
    backdrop-filter: blur(12px) saturate(1.06);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 22%, #000 58%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 22%, #000 58%, #000 100%);
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-copy > * {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.64);
  }

  .leadership-profile-article:not(.magazine-profile) .profile-kicker {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-kicker::before {
    width: 24px;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero h1 {
    max-width: none;
    font-size: clamp(1.6rem, 5.5vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: -0.028em;
    text-wrap: wrap;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero-summary {
    max-width: 620px;
    margin-top: 20px;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.84);
  }
}

@media (max-width: 390px) {
  .leadership-profile-article:not(.magazine-profile) .profile-hero-copy {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .leadership-profile-article:not(.magazine-profile) .profile-hero h1 {
    font-size: clamp(1.5rem, 6.3vw, 1.65rem);
  }
}

/* Awards registry entry points share the primary FigureAsia header. */
.site-header .brand-actions,
.site-header.is-condensed .brand-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header .awards-winner-link,
.site-header.is-condensed .awards-winner-link {
  border-color: #111;
  background: #111;
}

.site-header .awards-winner-link:hover,
.site-header .awards-winner-link:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.mobile-menu-panel .awards-winner-mobile-link {
  color: #fff;
  background: #111;
  border-bottom-color: #111;
}

.mobile-menu-panel .awards-winner-mobile-link:hover,
.mobile-menu-panel .awards-winner-mobile-link:focus-visible {
  color: #fff;
  background: var(--red);
}

@media (max-width: 1060px) {
  .site-header .brand-actions,
  .site-header.is-condensed .brand-actions {
    display: grid;
  }

  .site-header .awards-winner-link,
  .site-header.is-condensed .awards-winner-link {
    display: none;
  }
}

/* Homepage intelligence lead: curated Asia Leaders posts with portrait-safe crops. */
.home-page .home-front .section-line h1 {
  font-size: clamp(1.8rem, 2.55vw, 2.65rem);
}

.home-page .home-front .home-featured-posts .home-ranking-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
  overflow: hidden;
  background: transparent;
}

.home-page .home-front .home-featured-posts .home-ranking-card > a {
  align-items: center;
  padding-bottom: 0;
}

.home-page .home-front .home-featured-posts .tabs-static span:first-child {
  color: #4e4e4e;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.home-page .home-front .home-featured-posts img.featured-post-image--business-leaders-2025-michael-kadoorie {
  object-position: center 34%;
}

.home-page .home-front .home-featured-posts img.featured-post-image--business-leaders-2025-mohamed-alabbar {
  object-position: center 28%;
}

.home-page .home-front .home-featured-posts img.featured-post-image--business-leaders-2025-pham-nhat-vuong {
  object-position: 68% 30%;
}

.home-featured-posts .home-ranking-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 760px) {
  .home-page .home-front .section-line h1 {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }
}

/* Data-led navigation for FigureAsia's market and wealth intelligence desks. */
.site-header .nav-mega-intelligence {
  --intelligence-accent: var(--hover-color, var(--red));
  color: #111;
}

.site-header .nav-intelligence-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 4.6vw, 72px);
  min-width: 0;
  padding-top: 30px;
  padding-bottom: 32px;
}

.site-header .nav-intelligence-brief {
  min-width: 0;
  padding: 3px 0 0 24px;
  border-left: 4px solid var(--intelligence-accent);
}

.site-header .nav-intelligence-brief > span,
.site-header .nav-intelligence-stats span,
.site-header .nav-intelligence-table-head,
.site-header .nav-intelligence-meta,
.site-header .nav-intelligence-row {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.site-header .nav-intelligence-brief > span {
  display: block;
  color: var(--intelligence-accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.site-header .nav-intelligence-brief h2 {
  margin-top: 8px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.85rem, 2.15vw, 2.45rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.site-header .nav-intelligence-brief > p {
  max-width: 390px;
  margin-top: 14px;
  color: #606060;
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-header .nav-intelligence-meta {
  display: grid;
  gap: 2px;
  margin-top: 17px;
  color: #777;
  font-size: 0.65rem;
  line-height: 1.35;
}

.site-header .nav-intelligence-meta strong {
  color: #333;
  font-weight: 600;
}

.site-header .nav-intelligence-meta small {
  font-size: inherit;
}

.site-header .nav-intelligence-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 19px;
  padding: 10px 13px;
  background: #111;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-header .nav-intelligence-cta:hover,
.site-header .nav-intelligence-cta:focus-visible {
  background: var(--intelligence-accent);
  color: #fff;
}

.site-header .nav-intelligence-cta i {
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1;
}

.site-header .nav-intelligence-dashboard {
  min-width: 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.site-header .nav-intelligence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  border-bottom: 1px solid #d8d8d8;
}

.site-header .nav-intelligence-stats > div {
  min-width: 0;
  padding: 14px 18px 15px;
  border-right: 1px solid #d8d8d8;
}

.site-header .nav-intelligence-stats > div:first-child {
  padding-left: 0;
}

.site-header .nav-intelligence-stats > div:last-child {
  border-right: 0;
}

.site-header .nav-intelligence-stats span {
  display: block;
  overflow: hidden;
  color: #777;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .nav-intelligence-stats strong {
  display: block;
  margin-top: 5px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.42rem, 1.75vw, 1.85rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.site-header .nav-intelligence-table-head {
  display: grid;
  grid-template-columns: 34px minmax(150px, 1.25fr) minmax(120px, 0.85fr) minmax(96px, auto) 84px;
  gap: 14px;
  align-items: center;
  padding: 11px 0 8px;
  color: #777;
  font-size: 0.62rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-header .nav-intelligence-table-head strong {
  color: #333;
  font-weight: 700;
}

.site-header .nav-intelligence-table-head > span:nth-last-child(-n + 2) {
  justify-self: end;
}

.site-header .nav-intelligence-row {
  display: grid;
  grid-template-columns: 34px minmax(150px, 1.25fr) minmax(120px, 0.85fr) minmax(96px, auto) 84px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 10px 0;
  border-top: 1px solid #e3e3e3;
  color: #333;
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-header .nav-intelligence-row:hover,
.site-header .nav-intelligence-row:focus-visible {
  color: var(--intelligence-accent);
}

.site-header .nav-intelligence-row > * {
  min-width: 0;
}

.site-header .nav-intelligence-row strong,
.site-header .nav-intelligence-row > span:not(.nav-intelligence-rank) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header .nav-intelligence-row strong {
  color: inherit;
  font-weight: 600;
}

.site-header .nav-intelligence-rank {
  color: #999;
  font-variant-numeric: tabular-nums;
}

.site-header .nav-intelligence-row b {
  justify-self: end;
  color: #111;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .nav-intelligence-trend {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-self: end;
  font-size: 0.7rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .nav-intelligence-trend i {
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1;
}

.site-header .nav-intelligence-trend.is-up {
  color: #0b7048;
}

.site-header .nav-intelligence-trend.is-down {
  color: #b52d35;
}

.site-header .nav-intelligence-trend.is-flat {
  color: #777;
}

@media (max-width: 1180px) {
  .site-header .nav-intelligence-inner {
    grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
    gap: 30px;
  }

  .site-header .nav-intelligence-row {
    grid-template-columns: 28px minmax(120px, 1.15fr) minmax(94px, 0.8fr) minmax(82px, auto) 76px;
    gap: 10px;
  }

  .site-header .nav-intelligence-table-head {
    grid-template-columns: 28px minmax(120px, 1.15fr) minmax(94px, 0.8fr) minmax(82px, auto) 76px;
    gap: 10px;
  }
}
.fa-profile-name-link {
  color: inherit;
  text-decoration: none;
}

.fa-profile-name-link:hover,
.fa-profile-name-link:focus-visible {
  color: var(--accent, #f33438);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

/* FigureAsia 2026–2027 city event series. */
.events-directory-hero {
  background-position: center;
}

.events-directory-lead article a {
  grid-template-columns: 1fr;
}

.events-directory-lead img {
  min-height: 0;
  height: auto;
  aspect-ratio: 1600 / 550;
}

.events-series-facts {
  align-content: start !important;
}

.events-series-facts > span,
.events-section-title > span {
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-series-facts dl {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.events-series-facts dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.events-series-facts dt {
  font-family: "FA Serif", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.events-series-facts dd {
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
}

.events-section-title {
  display: grid;
  gap: 8px;
}

.events-directory-grid h2 {
  display: block;
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 2.5vw, 2.75rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.events-directory-grid p {
  -webkit-line-clamp: 4;
}

.events-directory-grid strong {
  display: inline-flex;
}

.events-directory-grid article a:hover h2,
.events-directory-grid article a:focus-visible h2,
.events-directory-lead article a:hover h2,
.events-directory-lead article a:focus-visible h2 {
  color: var(--red);
}

.events-forms-strip > div {
  align-items: center;
  justify-content: space-between;
}

.events-forms-strip p {
  max-width: 720px;
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.events-forms-strip a {
  background: var(--ink);
  color: #fff;
}

.event-detail-meta strong {
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.event-detail-facts {
  display: grid;
  margin-bottom: 8px;
}

.event-detail-facts div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.event-detail-facts dt {
  color: var(--muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-detail-facts dd {
  margin-top: 4px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
}

.event-detail-cta {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 42px);
  background: #101a38;
  color: #fff;
}

.event-detail-cta span {
  color: #cdb675;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-detail-cta h2 {
  margin-top: 12px;
  color: #fff;
}

.event-detail-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.event-detail-cta a {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .events-directory-grid {
    gap: 48px;
  }

  .events-directory-grid img {
    margin-bottom: 20px;
  }

  .events-directory-grid span {
    margin-bottom: 14px;
  }

  .events-forms-strip > div {
    align-items: flex-start;
  }
}

/* 2026-07-16 FigureAsia event editorial detail system. */
.event-editorial-page {
  --event-ink: #111214;
  --event-paper: #f4f1eb;
  --event-night: #07090d;
  --event-gold: #d5c18c;
  --event-red: #ec3535;
  background: var(--event-paper);
  color: var(--event-ink);
}

.event-masthead {
  position: relative;
  min-height: clamp(720px, 77vh, 940px);
  overflow: hidden;
  isolation: isolate;
  background: var(--event-night);
  color: #fff;
  border-bottom: 7px solid var(--event-red);
}

.event-masthead-media,
.event-masthead-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.event-masthead-media {
  background: #090b10;
}

.event-masthead-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.05);
}

.event-masthead-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.7) 0%, rgba(3, 4, 7, 0.08) 24%, rgba(3, 4, 7, 0.18) 52%, rgba(3, 4, 7, 0.96) 100%),
    linear-gradient(90deg, rgba(3, 4, 7, 0.9) 0%, rgba(3, 4, 7, 0.64) 36%, rgba(3, 4, 7, 0.08) 72%);
}

.event-masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.event-masthead-inner {
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.event-masthead-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.event-masthead-breadcrumb a {
  color: inherit;
}

.event-masthead-breadcrumb a:hover,
.event-masthead-breadcrumb a:focus-visible {
  color: #fff;
}

.event-masthead-copy {
  align-self: end;
  max-width: 1050px;
  padding: clamp(68px, 12vh, 150px) 0 clamp(42px, 6vh, 72px);
}

.event-masthead-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(22px, 3vw, 36px);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-masthead-kicker span {
  color: #fff;
}

.event-masthead-kicker i {
  width: 34px;
  height: 2px;
  background: var(--event-red);
}

.event-masthead-kicker strong {
  color: var(--event-gold);
  font: inherit;
}

.event-masthead h1 {
  max-width: 980px;
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(4.4rem, 7.2vw, 7.7rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.event-masthead-dek {
  max-width: 780px;
  margin: clamp(26px, 3.5vw, 42px) 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.event-masthead-ledger {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr auto;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 7, 10, 0.42);
  backdrop-filter: blur(8px);
}

.event-masthead-ledger > div {
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 84px;
  padding: 15px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.event-masthead-ledger > div:first-child {
  padding-left: 0;
}

.event-masthead-ledger span {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.event-masthead-ledger strong {
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: #fff;
}

.event-masthead-ledger > a {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-width: 218px;
  padding: 18px 24px;
  background: var(--event-red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-masthead-ledger > a:hover,
.event-masthead-ledger > a:focus-visible {
  background: #fff;
  color: var(--event-ink);
}

.event-masthead-ledger b,
.event-participation a b,
.event-related-grid strong b {
  font-size: 1.05rem;
  font-weight: 400;
}

.event-editorial-body {
  padding: clamp(76px, 8vw, 126px) 0 clamp(88px, 9vw, 142px);
}

.event-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) 290px;
  gap: clamp(70px, 9vw, 138px);
  justify-content: center;
  align-items: start;
}

.event-story-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  margin-bottom: clamp(58px, 7vw, 92px);
  padding: 26px 0 31px;
  border-top: 5px solid var(--event-ink);
  border-bottom: 1px solid #c9c4bb;
}

.event-story-heading > span {
  padding-top: 6px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--event-red);
}

.event-story-heading p {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  line-height: 1.34;
  letter-spacing: -0.018em;
}

.event-story-content {
  max-width: none;
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  line-height: 1.84;
  color: #282725;
}

.event-story-content > p {
  max-width: 720px;
  margin: 0 0 1.45em;
}

.event-story-content > .event-opening {
  max-width: 790px;
  font-size: clamp(1.2rem, 1.45vw, 1.4rem);
  line-height: 1.76;
  color: #161616;
}

.event-story-content > .event-opening::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 6.35rem;
  line-height: 0.68;
  color: var(--event-red);
}

.event-story-content h2 {
  position: relative;
  max-width: 790px;
  margin: clamp(68px, 8vw, 104px) 0 27px;
  padding-top: 24px;
  border-top: 1px solid #b8b2a7;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.55rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.event-story-content h2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 82px;
  height: 4px;
  background: var(--event-red);
}

.event-pullquote {
  position: relative;
  max-width: 820px;
  margin: clamp(64px, 7vw, 96px) 0;
  padding: clamp(38px, 5vw, 62px) clamp(36px, 6vw, 76px);
  border: 0;
  background: var(--event-ink);
  color: #fff;
}

.event-pullquote::before {
  content: "“";
  position: absolute;
  top: 7px;
  left: 22px;
  color: var(--event-red);
  font-family: "FA Serif", Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.event-pullquote p {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.event-programme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 36px 0 66px;
  background: #b7b1a6;
  border: 1px solid #b7b1a6;
}

.event-programme-grid article {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 44px);
  background: #ebe7df;
}

.event-programme-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.event-programme-grid h3 {
  margin: 0 0 18px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.event-programme-grid p {
  margin: 0;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #615f5a;
}

.event-story-content .event-closing {
  max-width: 790px;
  margin-top: 42px;
  padding: 30px 0 0 36px;
  border-top: 1px solid #b8b2a7;
  border-left: 5px solid var(--event-red);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.45;
  color: #141414;
}

.event-editorial-rail {
  position: sticky;
  top: 142px;
  display: grid;
  border-top: 5px solid var(--event-red);
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 16, 18, 0.08);
}

.event-rail-index {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 25px 24px 23px;
  background: var(--event-ink);
  color: #fff;
}

.event-rail-index span {
  grid-column: 1 / -1;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.event-rail-index strong,
.event-rail-index small {
  margin-top: 10px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-rail-index strong {
  color: var(--event-gold);
}

.event-rail-index small {
  color: rgba(255, 255, 255, 0.42);
}

.event-editorial-rail .event-detail-facts {
  margin: 0;
  padding: 8px 24px;
}

.event-editorial-rail .event-detail-facts div {
  padding: 17px 0 18px;
  border-color: #dfdcd5;
}

.event-editorial-rail .event-detail-facts div:first-child {
  border-top: 0;
}

.event-editorial-rail .event-detail-facts dt {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #8a867f;
}

.event-editorial-rail .event-detail-facts dd {
  margin-top: 7px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1rem;
  line-height: 1.42;
  color: #242424;
}

.event-rail-primary,
.event-rail-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.event-rail-primary {
  background: var(--event-red);
  color: #fff;
}

.event-rail-secondary {
  border: 1px solid #ddd9d1;
  border-top: 0;
  color: var(--event-ink);
}

.event-rail-primary:hover,
.event-rail-primary:focus-visible {
  background: var(--event-ink);
}

.event-rail-secondary:hover,
.event-rail-secondary:focus-visible {
  color: var(--event-red);
}

.event-tag-row {
  max-width: 790px;
  padding-top: 28px;
  border-top: 1px solid #c9c4bb;
}

.event-participation {
  position: relative;
  overflow: hidden;
  background: #0b0d12;
  color: #fff;
}

.event-participation::before {
  content: "FIGUREASIA";
  position: absolute;
  right: -0.02em;
  bottom: -0.23em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1;
  white-space: nowrap;
}

.event-participation-inner {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) minmax(260px, 0.7fr) auto;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.event-participation span {
  align-self: start;
  padding-top: 8px;
  color: var(--event-gold);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-participation h2 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.65rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.event-participation p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
}

.event-participation a {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  min-width: 214px;
  padding: 17px 20px;
  background: var(--event-red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-participation a:hover,
.event-participation a:focus-visible {
  background: #fff;
  color: var(--event-ink);
}

.event-related-editorial {
  padding: clamp(72px, 8vw, 112px) 0 clamp(84px, 9vw, 128px);
  border: 0;
  background: #fff;
}

.event-related-editorial .section-line {
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 5px solid var(--event-ink);
}

.event-related-editorial .section-line > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-related-editorial .section-line h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.event-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #c9c6bf;
  border: 1px solid #c9c6bf;
}

.event-related-grid article {
  background: #fff;
}

.event-related-grid article > a {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  height: 100%;
  padding-bottom: 28px;
}

.event-related-grid figure {
  margin: 0 0 26px;
  overflow: hidden;
  background: #0c0e13;
}

.event-related-grid img {
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
  transition: transform 350ms ease;
}

.event-related-grid article > a:hover img,
.event-related-grid article > a:focus-visible img {
  transform: scale(1.025);
}

.event-related-grid span,
.event-related-grid h3,
.event-related-grid p,
.event-related-grid strong {
  margin-right: 27px;
  margin-left: 27px;
}

.event-related-grid span {
  color: var(--event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-related-grid h3 {
  margin-top: 13px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.event-related-grid p {
  margin-top: 12px;
  color: #77736c;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
}

.event-related-grid strong {
  align-self: end;
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 17px;
  border-top: 1px solid #dedbd5;
  color: var(--event-ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-related-grid article > a:hover h3,
.event-related-grid article > a:focus-visible h3,
.event-related-grid article > a:hover strong,
.event-related-grid article > a:focus-visible strong {
  color: var(--event-red);
}

@media (max-width: 1080px) {
  .event-masthead-ledger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-masthead-ledger > a {
    grid-column: 1 / -1;
  }

  .event-editorial-grid {
    grid-template-columns: minmax(0, 760px) 260px;
    gap: 54px;
  }

  .event-participation-inner {
    grid-template-columns: 120px minmax(0, 1fr) minmax(240px, 0.65fr);
  }

  .event-participation a {
    grid-column: 2 / 4;
    width: fit-content;
  }
}

@media (max-width: 880px) {
  .event-masthead {
    min-height: 760px;
  }

  .event-masthead-media img {
    object-position: 62% center;
  }

  .event-masthead-shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.78) 0%, rgba(3, 4, 7, 0.15) 28%, rgba(3, 4, 7, 0.42) 52%, rgba(3, 4, 7, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 4, 7, 0.82) 0%, rgba(3, 4, 7, 0.36) 72%);
  }

  .event-masthead h1 {
    font-size: clamp(3.9rem, 11vw, 6.2rem);
  }

  .event-editorial-grid {
    grid-template-columns: 1fr;
  }

  .event-editorial-rail {
    position: static;
    grid-row: 1;
    grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  }

  .event-rail-index {
    align-content: center;
  }

  .event-editorial-rail .event-detail-facts {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .event-rail-primary,
  .event-rail-secondary {
    grid-column: 1;
  }

  .event-related-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .event-related-grid article > a {
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: auto auto auto 1fr;
    padding: 0;
  }

  .event-related-grid figure {
    grid-row: 1 / 5;
    margin: 0;
  }

  .event-related-grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .event-related-grid span,
  .event-related-grid h3,
  .event-related-grid p,
  .event-related-grid strong {
    grid-column: 2;
  }

  .event-related-grid span {
    margin-top: 26px;
  }

  .event-related-grid strong {
    margin-bottom: 26px;
  }
}

@media (max-width: 760px) {
  .event-masthead {
    min-height: 740px;
  }

  .event-masthead-inner {
    width: min(100% - 36px, var(--wrap));
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .event-masthead-copy {
    padding: 92px 0 44px;
  }

  .event-masthead-kicker {
    flex-wrap: wrap;
    gap: 9px;
  }

  .event-masthead-kicker i {
    width: 22px;
  }

  .event-masthead h1 {
    max-width: 96%;
    font-size: clamp(3.35rem, 16vw, 5rem);
    line-height: 0.88;
  }

  .event-masthead-dek {
    max-width: 95%;
    font-size: 1.12rem;
    line-height: 1.48;
  }

  .event-masthead-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .event-masthead-ledger > div {
    min-height: 72px;
    padding: 13px 12px;
  }

  .event-masthead-ledger > div:first-child {
    padding-left: 12px;
  }

  .event-masthead-ledger > div:nth-child(2) {
    border-right: 0;
  }

  .event-masthead-ledger > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .event-masthead-ledger > a {
    min-width: 0;
    min-height: 52px;
    padding: 14px 16px;
  }

  .event-editorial-body {
    padding-top: 62px;
  }

  .event-editorial-grid {
    width: min(100% - 36px, var(--wrap));
    gap: 58px;
  }

  .event-editorial-rail {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-editorial-rail .event-detail-facts {
    grid-column: 1;
    grid-row: auto;
  }

  .event-rail-primary,
  .event-rail-secondary {
    grid-column: 1;
  }

  .event-story-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 52px;
    padding-top: 20px;
  }

  .event-story-heading p {
    font-size: 1.55rem;
  }

  .event-story-content {
    font-size: 1.06rem;
    line-height: 1.78;
  }

  .event-story-content > .event-opening {
    font-size: 1.12rem;
  }

  .event-story-content > .event-opening::first-letter {
    font-size: 5.3rem;
  }

  .event-story-content h2 {
    margin-top: 64px;
    font-size: 2.75rem;
  }

  .event-pullquote {
    margin: 58px 0;
    padding: 52px 31px 40px;
  }

  .event-pullquote::before {
    top: 6px;
    left: 20px;
    font-size: 4.8rem;
  }

  .event-pullquote p {
    font-size: 1.65rem;
  }

  .event-programme-grid {
    grid-template-columns: 1fr;
  }

  .event-programme-grid article {
    min-height: 0;
  }

  .event-programme-grid span {
    margin-bottom: 32px;
  }

  .event-participation-inner {
    width: min(100% - 36px, var(--wrap));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-participation span,
  .event-participation h2,
  .event-participation p,
  .event-participation a {
    grid-column: 1;
  }

  .event-participation h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .event-participation a {
    width: 100%;
  }

  .event-related-editorial .section-line {
    align-items: start;
  }

  .event-related-grid article > a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-bottom: 26px;
  }

  .event-related-grid figure,
  .event-related-grid span,
  .event-related-grid h3,
  .event-related-grid p,
  .event-related-grid strong {
    grid-column: 1;
    grid-row: auto;
  }

  .event-related-grid figure {
    margin-bottom: 25px;
  }

  .event-related-grid img {
    height: auto;
    aspect-ratio: 16 / 7;
  }
}

/* 2026-07-16 restrained FigureAsia event detail layout. */
.fa-event-view #content {
  overflow: clip;
}

.fa-event {
  --fa-event-black: #000;
  --fa-event-ink: #111;
  --fa-event-red: #ec3535;
  --fa-event-muted: #666;
  --fa-event-line: #e5e5e5;
  width: 100%;
  overflow-x: clip;
  background: #fff;
  color: var(--fa-event-ink);
}

.fa-event *,
.fa-event *::before,
.fa-event *::after,
.fa-event-related *,
.fa-event-related *::before,
.fa-event-related *::after {
  box-sizing: border-box;
}

.fa-event-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.fa-event-hero {
  padding: 42px 0 0;
  background: var(--fa-event-black);
  color: #fff;
}

.fa-event-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 24px;
  color: #8b8b8b;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fa-event-breadcrumb a {
  color: inherit;
}

.fa-event-breadcrumb a:hover,
.fa-event-breadcrumb a:focus-visible {
  color: #fff;
}

.fa-event-banner {
  margin: 0;
  border: 1px solid #242424;
  background: #090909;
}

.fa-event-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 550;
  object-fit: cover;
}

.fa-event-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.fa-event-facts > div {
  min-width: 0;
  padding: 21px 22px 22px;
  border-right: 1px solid #333;
}

.fa-event-facts > div:first-child {
  padding-left: 0;
}

.fa-event-facts > div:last-child {
  border-right: 0;
}

.fa-event-facts span,
.fa-event-titleline span,
.fa-event-section-head > span,
.fa-event-related-head span,
.fa-event-related-grid article > a > span {
  display: block;
  color: var(--fa-event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fa-event-facts strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.fa-event-introduction {
  padding: 84px 0 76px;
  background: #fff;
}

.fa-event-titleline,
.fa-event-section-head,
.fa-event-related-head {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 2px solid var(--fa-event-ink);
}

.fa-event-titleline h1 {
  max-width: 780px;
  margin: 13px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.fa-event-titleline > a,
.fa-event-participation-copy > a {
  flex: 0 0 auto;
  min-width: 174px;
  padding: 13px 18px;
  background: var(--fa-event-red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.fa-event-titleline > a:hover,
.fa-event-titleline > a:focus-visible {
  background: var(--fa-event-ink);
}

.fa-event-dek {
  max-width: 780px;
  margin: 32px 0 0;
  color: #3d3d3d;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.55;
}

.fa-event-editorial {
  padding: 0 0 104px;
  background: #fff;
}

.fa-event-body-head,
.fa-event-section-head {
  display: block;
  margin-bottom: 48px;
  padding-top: 27px;
  border-top: 2px solid var(--fa-event-ink);
}

.fa-event-body-head > span,
.fa-event-section-head > span {
  display: block;
  color: var(--fa-event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fa-event-body-head > h2,
.fa-event-section-head h2,
.fa-event-related-head h2 {
  max-width: 820px;
  margin: 14px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.fa-event-prose > .fa-event-body-head {
  max-width: none;
  margin-bottom: 48px;
}

.fa-event-prose > .fa-event-body-head h2 {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  line-height: 1.08;
}

.fa-event-prose {
  max-width: 780px;
  margin: 0 auto;
  color: #333;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.78;
}

.fa-event-prose > p {
  max-width: none;
  margin: 0 0 28px;
}

.fa-event-prose > .event-opening {
  max-width: none;
  color: #222;
  font-size: 1.06rem;
  line-height: 1.78;
}

.fa-event-prose > .event-opening::first-letter {
  float: left;
  margin: 0.09em 0.13em 0 0;
  color: var(--fa-event-red);
  font-family: "FA Serif", Georgia, serif;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 0.72;
}

.fa-event-prose h2 {
  max-width: none;
  margin: 66px 0 22px;
  padding-top: 24px;
  border-top: 1px solid var(--fa-event-ink);
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.fa-event-prose h2::before {
  display: none;
}

.fa-event-prose .event-pullquote {
  max-width: none;
  margin: 56px 0;
  padding: 28px 0;
  border-top: 2px solid var(--fa-event-ink);
  border-bottom: 1px solid var(--fa-event-ink);
  background: #fff;
  color: var(--fa-event-ink);
}

.fa-event-prose .event-pullquote::before {
  display: none;
}

.fa-event-prose .event-pullquote p {
  max-width: 700px;
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.fa-event-prose .event-pullquote p::before {
  content: "“";
  color: var(--fa-event-red);
}

.fa-event-prose .event-programme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  max-width: none;
  margin: 36px 0 58px;
  border: 0;
  background: transparent;
}

.fa-event-prose .event-programme-grid article {
  min-height: 0;
  padding: 24px 0 27px;
  border-top: 1px solid var(--fa-event-line);
  background: #fff;
}

.fa-event-prose .event-programme-grid article:nth-child(-n + 2) {
  border-top-color: var(--fa-event-ink);
}

.fa-event-prose .event-programme-grid span {
  margin-bottom: 18px;
  color: var(--fa-event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fa-event-prose .event-programme-grid h3 {
  margin: 0 0 12px;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.fa-event-prose .event-programme-grid p {
  margin: 0;
  color: #555;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.fa-event-prose .event-closing {
  max-width: none;
  margin: 42px 0 0;
  padding: 23px 0 0;
  border-top: 2px solid var(--fa-event-ink);
  border-left: 0;
  color: var(--fa-event-ink);
  font-size: 1.3rem;
  line-height: 1.5;
}

.fa-event-tags {
  max-width: 780px;
  margin: 45px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--fa-event-line);
}

.fa-event-participation {
  padding: 86px 0 92px;
  background: var(--fa-event-black);
  color: #fff;
}

.fa-event-section-head.is-light {
  border-color: #fff;
}

.fa-event-section-head.is-light h2 {
  color: #fff;
}

.fa-event-participation-copy {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 52px;
  align-items: start;
  margin-top: 34px;
}

.fa-event-participation-copy p {
  margin: 0;
  color: #cfcfcf;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
}

.fa-event-participation-copy > a:hover,
.fa-event-participation-copy > a:focus-visible {
  background: #fff;
  color: var(--fa-event-ink);
}

.fa-event-related {
  padding: 76px 0 88px;
  background: #fff;
  color: var(--fa-event-ink);
}

.fa-event-related-head {
  margin-bottom: 34px;
}

.fa-event-related-head h2 {
  font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  line-height: 1.05;
}

.fa-event-related-head > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--fa-event-red);
  color: var(--fa-event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fa-event-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.fa-event-related-grid article {
  border-top: 1px solid var(--fa-event-ink);
}

.fa-event-related-grid article > a {
  display: block;
  padding-top: 22px;
}

.fa-event-related-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 550;
  margin-bottom: 22px;
  object-fit: cover;
  background: #000;
}

.fa-event-related-grid h3 {
  margin: 13px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  font-weight: 400;
  line-height: 1.12;
}

.fa-event-related-grid p {
  margin: 8px 0 0;
  color: var(--fa-event-muted);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
}

.fa-event-related-grid strong {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fa-event-red);
  color: var(--fa-event-red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fa-event-related-grid article > a:hover h3,
.fa-event-related-grid article > a:focus-visible h3 {
  color: var(--fa-event-red);
}

@media (max-width: 820px) {
  .fa-event-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fa-event-facts > div:nth-child(2) {
    border-right: 0;
  }

  .fa-event-facts > div:nth-child(n + 3) {
    border-top: 1px solid #333;
  }

  .fa-event-facts > div:nth-child(3) {
    padding-left: 0;
  }

  .fa-event-titleline,
  .fa-event-related-head {
    align-items: flex-start;
  }

  .fa-event-participation-copy {
    grid-template-columns: 1fr;
  }

  .fa-event-participation-copy > a {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .fa-event-wrap {
    width: min(100% - 32px, 1180px);
  }

  .fa-event-hero {
    padding-top: 28px;
  }

  .fa-event-breadcrumb {
    margin-bottom: 18px;
  }

  .fa-event-banner {
    margin-right: -16px;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
  }

  .fa-event-facts {
    margin-top: 20px;
  }

  .fa-event-facts > div {
    padding: 16px 12px 17px;
  }

  .fa-event-facts > div:first-child,
  .fa-event-facts > div:nth-child(3) {
    padding-left: 0;
  }

  .fa-event-facts strong {
    font-size: 0.78rem;
  }

  .fa-event-introduction {
    padding: 67px 0 62px;
  }

  .fa-event-titleline,
  .fa-event-related-head {
    display: block;
    padding-top: 22px;
  }

  .fa-event-titleline h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .fa-event-titleline > a {
    display: inline-block;
    margin-top: 27px;
  }

  .fa-event-dek {
    margin-top: 27px;
    font-size: 1.08rem;
  }

  .fa-event-editorial {
    padding-bottom: 74px;
  }

  .fa-event-section-head {
    margin-bottom: 38px;
    padding-top: 22px;
  }

  .fa-event-body-head {
    margin-bottom: 38px;
    padding-top: 22px;
  }

  .fa-event-prose > .fa-event-body-head h2,
  .fa-event-section-head h2 {
    font-size: 1.75rem;
  }

  .fa-event-related-head h2 {
    font-size: 1.4rem;
  }

  .fa-event-related-grid h3 {
    font-size: 1rem;
  }

  .fa-event-prose {
    font-size: 1rem;
    line-height: 1.75;
  }

  .fa-event-prose > .event-opening {
    font-size: 1rem;
  }

  .fa-event-prose > .event-opening::first-letter {
    font-size: 5.2rem;
  }

  .fa-event-prose h2 {
    margin-top: 54px;
    font-size: 1.95rem;
  }

  .fa-event-prose .event-pullquote {
    margin: 47px 0;
    padding: 23px 0;
  }

  .fa-event-prose .event-pullquote p {
    font-size: 1.42rem;
  }

  .fa-event-prose .event-programme-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fa-event-prose .event-programme-grid article:nth-child(2) {
    border-top-color: var(--fa-event-line);
  }

  .fa-event-participation,
  .fa-event-related {
    padding: 68px 0 74px;
  }

  .fa-event-participation-copy {
    gap: 28px;
    margin-top: 27px;
  }

  .fa-event-participation-copy > a {
    width: 100%;
  }

  .fa-event-related-head > a {
    display: inline-block;
    margin-top: 24px;
  }

  .fa-event-related-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

/* Homepage lead: latest FigureAsia digital edition. */
.home-magazine-lead {
  overflow: hidden;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  background: #0b0b0b;
  color: #fff;
}

.home-magazine-lead-grid {
  display: grid;
  grid-template-columns: minmax(250px, 342px) minmax(0, 1fr);
  gap: clamp(64px, 8.5vw, 138px);
  align-items: center;
  padding-top: clamp(64px, 6.2vw, 96px);
  padding-bottom: clamp(68px, 6.8vw, 104px);
}

.home-magazine-lead-cover {
  position: relative;
  display: block;
  width: min(100%, 342px);
  color: #fff;
}

.home-magazine-lead-cover .magazine-html-cover {
  display: block;
  width: 100%;
  border: 1px solid #333;
  background: #171717;
  box-shadow: 24px 24px 0 #181818, 0 30px 70px rgba(0, 0, 0, 0.42);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-magazine-lead-cover:hover .magazine-html-cover,
.home-magazine-lead-cover:focus-visible .magazine-html-cover {
  transform: translateY(-5px);
  box-shadow: 30px 30px 0 #181818, 0 38px 86px rgba(0, 0, 0, 0.56);
}

.home-magazine-lead-cover:hover .magazine-cover-read,
.home-magazine-lead-cover:focus-visible .magazine-cover-read {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.72);
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.home-magazine-lead-copy {
  max-width: 820px;
}

.home-magazine-lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid #3a3a3a;
  color: #9d9d9d;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.home-magazine-lead-meta span {
  color: var(--red);
}

.home-magazine-lead-issue {
  margin: 29px 0 -15px;
  color: #8e8e8e;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-magazine-lead-copy h2 {
  max-width: 790px;
  margin: 35px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.86;
}

.home-magazine-lead-copy h3 {
  margin: 38px 0 0;
  color: #f0f0f0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.04;
}

.home-magazine-lead-statement {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b8b8b8;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.home-magazine-lead-thesis {
  max-width: 720px;
  margin: 26px 0 0;
  padding-left: 19px;
  border-left: 3px solid var(--red);
  color: #e3e3e3;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.28;
}

.home-magazine-lead-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 31px;
  border-top: 1px solid #3a3a3a;
  border-left: 1px solid #3a3a3a;
}

.home-magazine-lead-features > div {
  min-width: 0;
  padding: 17px 18px 18px;
  border-right: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
}

.home-magazine-lead-features span {
  display: block;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.home-magazine-lead-features p {
  margin: 9px 0 0;
  color: #bdbdbd;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.5;
}

.home-magazine-lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: 34px;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.home-magazine-lead-primary {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 13px 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.home-magazine-lead-primary:hover,
.home-magazine-lead-primary:focus-visible {
  background: #fff;
  color: #111;
}

.home-magazine-lead-secondary {
  padding: 8px 0 6px;
  border-bottom: 1px solid #5d5d5d;
  color: #d1d1d1;
  font-size: 0.7rem;
  font-weight: 700;
}

.home-magazine-lead-secondary:hover,
.home-magazine-lead-secondary:focus-visible {
  border-bottom-color: #fff;
  color: #fff;
}

@media (max-width: 900px) {
  .home-magazine-lead-grid {
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: clamp(44px, 6vw, 70px);
  }

  .home-magazine-lead-copy h2 {
    font-size: 3.75rem;
  }

  .home-magazine-lead-copy h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 680px) {
  .home-magazine-lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .home-magazine-lead-cover {
    width: min(76vw, 320px);
    justify-self: center;
  }

  .home-magazine-lead-cover .magazine-html-cover {
    box-shadow: 16px 16px 0 #181818, 0 24px 58px rgba(0, 0, 0, 0.44);
  }

  .home-magazine-lead-copy {
    min-width: 0;
  }

  .home-magazine-lead-meta {
    font-size: 0.58rem;
  }

  .home-magazine-lead-issue {
    margin-top: 25px;
  }

  .home-magazine-lead-copy h2 {
    margin-top: 32px;
    font-size: 3rem;
    line-height: 0.88;
  }

  .home-magazine-lead-copy h3 {
    margin-top: 30px;
    font-size: 1.3rem;
  }

  .home-magazine-lead-statement {
    margin-top: 20px;
    font-size: 0.8rem;
  }

  .home-magazine-lead-thesis {
    margin-top: 23px;
    font-size: 1.08rem;
  }

  .home-magazine-lead-features {
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .home-magazine-lead-actions {
    display: grid;
    justify-items: start;
    gap: 16px;
    margin-top: 30px;
  }

  .home-magazine-lead-primary {
    width: 100%;
  }
}

/* Digital covers are rendered from the live HTML edition; the image remains a fallback. */
.magazine-html-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 900 / 1165;
  overflow: hidden;
  background: #111;
}

.magazine-html-cover > img,
.magazine-html-cover > iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.magazine-html-cover > img {
  z-index: 3;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.magazine-html-cover > iframe {
  z-index: 2;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.magazine-html-cover.is-html-ready > img {
  opacity: 0;
  visibility: hidden;
}

.magazine-html-cover.is-html-ready > iframe {
  opacity: 1;
}

.magazine-current-cover .magazine-html-cover {
  border: 1px solid #303030;
  box-shadow: 28px 28px 0 #191919, 0 30px 75px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.magazine-current-cover .magazine-html-cover > img {
  border: 0;
  box-shadow: none;
}

.magazine-current-cover:hover .magazine-html-cover,
.magazine-current-cover:focus-visible .magazine-html-cover {
  transform: translateY(-5px);
  box-shadow: 34px 34px 0 #191919, 0 38px 88px rgba(0, 0, 0, 0.5);
}

.magazine-issue-card .magazine-html-cover,
.footer-magazine-card .magazine-html-cover {
  width: 100%;
}

.site-header .nav-magazine-cover .magazine-html-cover {
  width: min(100%, 232px);
}

/* Fixed edition brief: every digital issue uses the same editorial structure. */
.magazine-edition-statement {
  max-width: 690px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--red);
}

.magazine-edition-statement > span,
.magazine-edition-highlights article > span {
  color: #8e8e8e;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.magazine-edition-statement .magazine-description {
  margin-top: 9px;
  color: #d0d0d0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.38;
}

.magazine-edition-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid #343434;
  border-left: 1px solid #343434;
}

.magazine-edition-highlights article {
  min-height: 128px;
  padding: 17px 18px 18px;
  border-right: 1px solid #343434;
  border-bottom: 1px solid #343434;
}

.magazine-edition-highlights article > span {
  color: var(--red);
}

.magazine-edition-highlights h4 {
  margin: 10px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  font-weight: 400;
  line-height: 1.08;
}

.magazine-edition-highlights p {
  margin: 8px 0 0;
  color: #969696;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  line-height: 1.48;
}

@media (max-width: 620px) {
  .magazine-edition-statement {
    margin-top: 24px;
  }

  .magazine-edition-highlights {
    grid-template-columns: 1fr;
  }

  .magazine-edition-highlights article {
    min-height: 0;
  }
}

/* FigureAsia events directory: editorial video-led programme. */
.fa-events-view #content {
  overflow: clip;
}

.fa-events-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.fa-events-hero {
  position: relative;
  min-height: min(850px, calc(100vh - 70px));
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: #fff;
}

.fa-events-hero-media,
.fa-events-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fa-events-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fa-events-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.2) 54%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.47) 46%, rgba(0, 0, 0, 0.08) 78%);
}

.fa-events-hero-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 44px;
}

.fa-events-breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fa-events-breadcrumb a {
  color: inherit;
}

.fa-events-hero-copy {
  align-self: end;
  max-width: 850px;
  padding-bottom: 34px;
}

.fa-events-hero-copy > span,
.fa-events-intro header > span,
.fa-events-section-head > span,
.fa-events-standard header > span {
  display: block;
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fa-events-hero-copy h1 {
  max-width: 830px;
  margin: 20px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-wrap: balance;
}

.fa-events-hero-copy > p {
  max-width: 660px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.fa-events-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.fa-events-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fa-events-hero-actions a:first-child {
  border-color: #ec3535;
  background: #ec3535;
}

.fa-events-hero-actions a:hover,
.fa-events-hero-actions a:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.fa-events-hero-folio {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 19px 0 19px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.fa-events-hero-folio span {
  color: rgba(255, 255, 255, 0.48);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fa-events-hero-folio strong {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
}

.fa-events-intro {
  padding: 94px 0 102px;
  background: #fff;
}

.fa-events-intro > .fa-events-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: start;
}

.fa-events-intro header,
.fa-events-standard header {
  padding-top: 25px;
  border-top: 2px solid #111;
}

.fa-events-intro h2,
.fa-events-standard h2 {
  margin: 15px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.1rem, 3.5vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.fa-events-intro > .fa-events-wrap > div {
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.fa-events-intro p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #333;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

.fa-events-feature {
  padding: 88px 0 104px;
  background: #f5f5f5;
  color: #111;
}

.fa-events-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
  padding-top: 24px;
  border-top: 2px solid currentColor;
}

.fa-events-section-head > span {
  grid-column: 1 / -1;
}

.fa-events-section-head h2 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.fa-events-section-head > p {
  margin: 0;
  color: #a4a4a4;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  line-height: 1.65;
}

.fa-events-feature article {
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.fa-events-feature article > a {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.7fr);
  color: inherit;
}

.fa-events-feature figure {
  margin: 0;
  overflow: hidden;
  background: #000;
}

.fa-events-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.fa-events-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(38px, 5vw, 68px);
  border-left: 1px solid #111;
  background: #fff;
}

.fa-events-feature-copy > span,
.fa-events-card-copy > span {
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.fa-events-feature-copy h3 {
  margin: 19px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.fa-events-feature-copy > p {
  margin: 24px 0 0;
  color: #555;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
}

.fa-events-feature-copy > div,
.fa-events-card-copy > div {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #ddd;
}

.fa-events-feature-copy strong,
.fa-events-card-copy strong {
  color: #555;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
}

.fa-events-feature-copy b,
.fa-events-card-copy b {
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fa-events-feature article > a:hover h3,
.fa-events-feature article > a:focus-visible h3,
.fa-events-grid article > a:hover h3,
.fa-events-grid article > a:focus-visible h3 {
  color: #ec3535;
}

.fa-events-programme {
  padding: 96px 0 112px;
  background: #070707;
  color: #fff;
}

.fa-events-section-head.is-light {
  color: #fff;
}

.fa-events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 42px;
}

.fa-events-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.fa-events-grid article > a {
  display: block;
  padding-top: 22px;
  color: #fff;
}

.fa-events-grid figure {
  margin: 0 0 26px;
  overflow: hidden;
  background: #111;
}

.fa-events-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 550;
  height: auto;
  object-fit: cover;
  transition: transform 320ms ease;
}

.fa-events-grid article > a:hover img,
.fa-events-grid article > a:focus-visible img {
  transform: scale(1.018);
}

.fa-events-card-copy h3 {
  max-width: 520px;
  margin: 16px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.fa-events-card-copy > p {
  max-width: 570px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1.68;
}

.fa-events-card-copy > div {
  border-color: rgba(255, 255, 255, 0.2);
}

.fa-events-card-copy strong {
  color: rgba(255, 255, 255, 0.62);
}

.fa-events-standard {
  padding: 96px 0 108px;
  background: #fff;
  color: #111;
}

.fa-events-standard > .fa-events-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(58px, 8vw, 120px);
}

.fa-events-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.fa-events-standard-grid article {
  padding-top: 20px;
  border-top: 1px solid #111;
}

.fa-events-standard-grid span {
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
}

.fa-events-standard-grid h3 {
  margin: 32px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.08;
}

.fa-events-standard-grid p {
  margin: 16px 0 0;
  color: #555;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.68;
}

.fa-events-standard > .fa-events-wrap > a {
  grid-column: 2;
  width: fit-content;
  margin-top: 8px;
  padding: 13px 18px;
  background: #ec3535;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Shared detailed event agenda. */
.fa-event-agenda {
  padding: 92px 0 106px;
  background: #171717;
  color: #fff;
}

.fa-event-agenda-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 46px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.fa-event-agenda-head > span {
  grid-column: 1 / -1;
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fa-event-agenda-head h2 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.95;
}

.fa-event-agenda-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  line-height: 1.65;
}

.fa-agenda-day {
  margin-top: 68px;
}

.fa-agenda-day + .fa-agenda-day {
  margin-top: 92px;
}

.fa-agenda-day-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
  align-items: baseline;
  padding-bottom: 21px;
  border-bottom: 2px solid #fff;
}

.fa-agenda-day-head span {
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fa-agenda-day-head h3 {
  margin: 0;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
}

.fa-agenda-list article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
  padding: 30px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
}

.fa-agenda-list time {
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fa-agenda-list article > div > span {
  display: block;
  margin-bottom: 9px;
  color: #ec3535;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fa-agenda-list h4 {
  margin: 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.18;
}

.fa-agenda-list p {
  max-width: 770px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
}

.fa-event-agenda + .fa-event-participation {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 900px) {
  .fa-events-hero-inner {
    grid-template-columns: 1fr;
  }

  .fa-events-hero-folio {
    display: none;
  }

  .fa-events-intro > .fa-events-wrap,
  .fa-events-feature article > a,
  .fa-events-standard > .fa-events-wrap {
    grid-template-columns: 1fr;
  }

  .fa-events-feature-copy {
    border-top: 1px solid #111;
    border-left: 0;
  }

  .fa-events-standard > .fa-events-wrap > a {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .fa-events-wrap {
    width: min(100% - 32px, 1180px);
  }

  .fa-events-hero {
    min-height: 700px;
  }

  .fa-events-hero-inner {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .fa-events-hero-media video {
    object-position: 55% center;
  }

  .fa-events-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.18) 28%, rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08));
  }

  .fa-events-hero-copy {
    padding-bottom: 0;
  }

  .fa-events-hero-copy h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
    line-height: 0.9;
  }

  .fa-events-hero-copy > p {
    font-size: 0.96rem;
  }

  .fa-events-hero-actions a {
    width: 100%;
  }

  .fa-events-intro,
  .fa-events-feature,
  .fa-events-programme,
  .fa-events-standard {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .fa-events-intro > .fa-events-wrap {
    gap: 42px;
  }

  .fa-events-intro h2,
  .fa-events-standard h2 {
    font-size: 2.35rem;
  }

  .fa-events-intro p {
    font-size: 1.02rem;
  }

  .fa-events-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .fa-events-section-head > span {
    grid-column: 1;
  }

  .fa-events-section-head h2 {
    font-size: 2.2rem;
  }

  .fa-events-feature img {
    min-height: 0;
    aspect-ratio: 1600 / 550;
  }

  .fa-events-feature-copy {
    padding: 30px 24px 34px;
  }

  .fa-events-feature-copy h3 {
    font-size: 2.15rem;
  }

  .fa-events-grid,
  .fa-events-standard-grid {
    grid-template-columns: 1fr;
  }

  .fa-events-grid {
    gap: 52px;
  }

  .fa-events-card-copy h3 {
    font-size: 1.65rem;
  }

  .fa-events-standard > .fa-events-wrap {
    gap: 44px;
  }

  .fa-event-agenda {
    padding: 68px 0 78px;
  }

  .fa-event-agenda-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fa-event-agenda-head > span {
    grid-column: 1;
  }

  .fa-event-agenda-head h2 {
    font-size: 2.65rem;
  }

  .fa-agenda-day {
    margin-top: 52px;
  }

  .fa-agenda-day + .fa-agenda-day {
    margin-top: 72px;
  }

  .fa-agenda-day-head,
  .fa-agenda-list article {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .fa-agenda-day-head {
    padding-bottom: 18px;
  }

  .fa-agenda-day-head h3 {
    font-size: 1.75rem;
  }

  .fa-agenda-list article {
    padding: 23px 0 25px;
  }

  .fa-agenda-list time {
    padding: 0;
    color: #fff;
    font-size: 0.78rem;
  }

  .fa-agenda-list h4 {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fa-events-hero-media video {
    display: none;
  }

  .fa-events-hero-media {
    background: #090909 url("/static/uploads/events/figureasia-ai-capital-assembly-wide-1600x550.jpg") center / cover no-repeat;
  }
}

/* FigureAsia Events: homepage editorial feature and aligned directory cards */
.home-events-editorial {
  padding: 92px 0 104px;
  border-top: 1px solid #242424;
  background: #080808;
  color: #fff;
}

.home-events-editorial .home-events-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin: 0 0 42px;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.home-events-editorial .home-events-head > div:first-child > span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-events-editorial .home-events-head h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.home-events-head-note {
  display: grid;
  gap: 20px;
  align-content: end;
}

.home-events-editorial .home-events-head-note p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: "FA Serif", Georgia, serif;
  font-size: 1rem;
  line-height: 1.62;
}

.home-events-editorial .home-events-head-note a {
  width: fit-content;
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-events-editorial .home-events-head-note a::after {
  content: "  →";
  color: var(--red);
}

.home-events-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 30px;
  align-items: stretch;
}

.home-event-primary,
.home-events-secondary article {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0b;
}

.home-event-primary > a,
.home-events-secondary article > a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: #fff;
}

.home-event-primary figure,
.home-events-secondary figure {
  margin: 0;
  overflow: hidden;
  background: #111;
}

.home-event-primary img,
.home-events-secondary img {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 550;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-event-primary img {
  aspect-ratio: 16 / 9;
}

.home-event-primary-copy,
.home-event-secondary-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
}

.home-event-primary-copy {
  min-height: 340px;
  padding: 34px 36px 30px;
}

.home-event-secondary-copy {
  padding: 22px 24px 21px;
}

.home-event-primary-copy > span,
.home-event-secondary-copy > span {
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-event-primary-copy h3,
.home-event-secondary-copy h3 {
  margin: 15px 0 0;
  font-family: "FA Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.home-event-primary-copy h3 {
  max-width: 760px;
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  line-height: 0.98;
}

.home-event-secondary-copy h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
}

.home-event-primary-copy > p,
.home-event-secondary-copy > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.62;
}

.home-event-primary-copy > p {
  max-width: 720px;
  font-size: 0.9rem;
}

.home-event-secondary-copy > p {
  font-size: 0.78rem;
}

.home-event-primary-copy > div,
.home-event-secondary-copy > div {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  margin-top: 26px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
}

.home-event-primary-copy strong,
.home-event-secondary-copy strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 500;
}

.home-event-primary-copy b,
.home-event-secondary-copy b {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-events-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.home-event-primary > a:hover img,
.home-event-primary > a:focus-visible img,
.home-events-secondary article > a:hover img,
.home-events-secondary article > a:focus-visible img {
  transform: scale(1.015);
}

.home-event-primary > a:hover h3,
.home-event-primary > a:focus-visible h3,
.home-events-secondary article > a:hover h3,
.home-events-secondary article > a:focus-visible h3 {
  color: var(--red);
}

.fa-events-grid {
  align-items: stretch;
}

.fa-events-grid article {
  height: 100%;
}

.fa-events-grid article > a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.fa-events-card-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
}

.fa-events-card-copy > span {
  min-height: 1.45em;
}

.fa-events-card-copy h3 {
  min-height: 2.04em;
}

.fa-events-card-copy > p {
  display: -webkit-box;
  min-height: 5.04em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fa-events-card-copy > div {
  align-self: end;
}

@media (max-width: 980px) {
  .home-events-editorial .home-events-head,
  .home-events-editorial-grid {
    grid-template-columns: 1fr;
  }

  .home-events-editorial .home-events-head {
    gap: 24px;
  }

  .home-events-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .home-event-primary-copy {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .home-events-editorial {
    padding: 62px 0 70px;
  }

  .home-events-editorial .home-events-head {
    margin-bottom: 28px;
    padding: 20px 0 24px;
  }

  .home-events-editorial .home-events-head h2 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .home-events-editorial-grid,
  .home-events-secondary {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-event-primary-copy,
  .home-event-secondary-copy {
    padding: 24px 20px 23px;
  }

  .home-event-primary-copy h3 {
    font-size: 2.25rem;
  }

  .home-event-secondary-copy h3 {
    font-size: 1.75rem;
  }

  .fa-events-card-copy h3,
  .fa-events-card-copy > p {
    min-height: 0;
  }

  .fa-events-card-copy > p {
    display: block;
    overflow: visible;
  }
}

/* Homepage Lists & Rankings flagship hierarchy — 2026-07-18. */
.home-page .home-lists-has-flagship {
  overflow: hidden;
  padding-top: clamp(64px, 6vw, 90px);
  padding-bottom: clamp(72px, 7vw, 100px);
}

.home-page .home-lists-section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-page .home-lists-has-flagship .home-lists-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
}

.home-page .home-lists-flagship {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 3px solid var(--red);
  background: #090909;
}

.home-page .home-lists-flagship > a {
  display: block;
  color: #fff;
}

.home-page .home-lists-flagship > a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.home-page .home-lists-flagship-masthead {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #a7a7a7;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .home-lists-flagship-badge {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: var(--red);
  color: #fff;
}

.home-page .home-lists-flagship-edition {
  padding-left: 20px;
}

.home-page .home-lists-flagship-masthead time {
  padding-right: 20px;
  color: #fff;
}

.home-page .home-lists-flagship-media {
  display: block;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 2 / 1;
  background: #050505;
}

.home-page .home-lists-flagship-media img,
.home-page .home-lists-flagship > a:hover .home-lists-flagship-media img,
.home-page .home-lists-flagship > a:focus-visible .home-lists-flagship-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}

.home-page .home-lists-flagship-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: 26px 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #141414;
}

.home-page .home-lists-flagship-identity span,
.home-page .home-lists-more-head span {
  color: var(--red);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .home-lists-flagship-identity h3 {
  display: block;
  overflow: visible;
  margin: 8px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  -webkit-line-clamp: unset;
}

.home-page .home-lists-flagship-footer p {
  margin: 0;
  color: #a9a9a9;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
}

.home-page .home-lists-flagship-footer strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  padding: 10px 0 8px;
  border-bottom: 1px solid #666;
  color: #f2f2f2;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease;
}

.home-page .home-lists-flagship-footer strong b {
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.home-page .home-lists-flagship > a:hover .home-lists-flagship-footer strong,
.home-page .home-lists-flagship > a:focus-visible .home-lists-flagship-footer strong {
  border-bottom-color: var(--red);
  color: #fff;
}

.home-page .home-lists-flagship > a:hover .home-lists-flagship-footer strong b,
.home-page .home-lists-flagship > a:focus-visible .home-lists-flagship-footer strong b {
  transform: translateX(4px);
}

.home-page .home-lists-more-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: end;
  margin: clamp(52px, 5vw, 72px) 0 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-page .home-lists-more-head h3 {
  display: block;
  margin: 7px 0 0;
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  -webkit-line-clamp: unset;
}

.home-page .home-lists-more-head p {
  max-width: 520px;
  margin: 0 0 2px auto;
  color: rgba(255, 255, 255, 0.58);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-page .home-lists-has-flagship .home-lists-carousel {
  border-color: rgba(255, 255, 255, 0.13);
  background: #0d0d0d;
}

.home-page .home-lists-has-flagship .home-list-slide-copy {
  background: #141414;
}

@media (max-width: 980px) {
  .home-page .home-lists-flagship-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 32px;
  }

  .home-page .home-lists-flagship-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 700px;
  }

  .home-page .home-lists-flagship-footer strong {
    grid-column: 2;
    grid-row: 1;
  }

  .home-page .home-lists-more-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .home-lists-more-head p {
    max-width: 620px;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .home-page .home-lists-has-flagship {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .home-page .home-lists-has-flagship .home-lists-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .home-page .home-lists-section-label {
    margin-bottom: 9px;
    font-size: 0.58rem;
  }

  .home-page .home-lists-flagship {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
  }

  .home-page .home-lists-flagship-masthead {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    font-size: 0.57rem;
    letter-spacing: 0.06em;
  }

  .home-page .home-lists-flagship-badge {
    grid-column: 1;
    grid-row: 1;
    min-height: 44px;
    padding: 0 16px;
  }

  .home-page .home-lists-flagship-masthead time {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-right: 16px;
  }

  .home-page .home-lists-flagship-edition {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 10px 16px 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-page .home-lists-flagship-footer {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 22px 20px 24px;
  }

  .home-page .home-lists-flagship-footer p,
  .home-page .home-lists-flagship-footer strong {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page .home-lists-flagship-identity h3 {
    font-size: clamp(1.72rem, 8.8vw, 2.15rem);
  }

  .home-page .home-lists-flagship-footer p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .home-page .home-lists-flagship-footer strong {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .home-page .home-lists-more-head {
    margin-top: 44px;
    padding-top: 18px;
  }

  .home-page .home-lists-more-head h3 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-lists-flagship-footer strong,
  .home-page .home-lists-flagship-footer strong b {
    transition: none;
  }
}
