/* McLuck Blog production theme */
:root {
  --bg: #000000;
  --surface-raised: #191919;
  --surface-control: #333333;
  --surface-control-hi: #4d4d4d;
  --fg: #ffffff;
  --fg-dim: #b3b3b3;
  --fg-dimmer: #808080;
  --border: #333333;
  --border-hi: #4d4d4d;
  --primary: #fa114f;
  --primary-hover: #bc0d3b;
  --secondary: #00ff41;
  --secondary-hover: #00bf31;
  --gold: #f57c00;
  --gold-lite: #ffb300;
  --loyalty: #fde256;
  --grand: #ff5252;
  --major: #52ff82;
  --minor: #52d5ff;
  --mini: #a852ff;
  --grad-gold: linear-gradient(150deg, #cb890f 15%, #ffd74a 50%, #e2a50d 85%);
  --r-sm: 6px;
  --r-md: 8px;
  --r-card: 12px;
  --r-btn: 16px;
  --r-full: 9999px;
  --maxw: 1160px;
  --article-prose-width: 720px;
  --accent: var(--primary);
  --accent-soft: #fa114f22;
  --gap: 28px;
  --grid-gap: var(--gap);
  --grid-gap-wide: 40px;
  --grid-gap-compact: 18px;
  --grid-gap-dense: 12px;
  --sticky-header-height: 76px;
  --sticky-cta-height: 57px;
  --sticky-stack-gap: var(--grid-gap-compact);
  --section-gap: 72px;
  --section-gap-compact: 48px;
  --card-pad: 18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.18s;
  --h1-size: 46px;
  --h1-weight: 800;
  --h2-size: 30px;
  --h2-weight: 700;
}

.accent-green { --accent: var(--secondary); --accent-soft: #00ff4118; }
.accent-gold { --accent: var(--gold); --accent-soft: #f57c0022; }
.accent-blue { --accent: #2a9cff; --accent-soft: #2a9cff22; }
.accent-purple { --accent: var(--mini); --accent-soft: #a852ff22; }

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Ubuntu, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.page-shell { padding-bottom: 96px; }
.page-shell--simple { padding-top: 24px; }
.page-shell--home { padding-top: 16px; }
.page-shell--hub,
.page-shell--single { padding-top: 18px; }
.mcluck-blog-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-shell {
  width: 100%;
  flex: 1 0 auto;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
body.admin-bar .hdr { top: 32px; }
.hdr:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.hdr-inner {
  max-width: 1320px;
  height: var(--sticky-header-height);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 32px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav-wrap { position: relative; flex-shrink: 0; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-item:hover { background: var(--surface-control-hi); }
.nav-item.active { background: #ffffff; color: #000000; font-weight: 700; }
.nav-ico { width: 17px; height: 17px; flex-shrink: 0; }
.chev { display: inline-flex; align-items: center; margin-left: -1px; opacity: 0.8; }
.chev .nav-ico { width: 12px; height: 12px; }
.mega {
  position: fixed;
  z-index: 70;
  top: var(--mega-top, 0);
  left: var(--mega-left, 0);
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-raised);
  box-shadow: 0 16px 40px -12px #000000cc;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.mega:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 9px;
}
.nav-wrap:hover .mega,
.nav-wrap:focus-within .mega { display: flex; }
.mega a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--fg-dim);
  font-size: 14px;
}
.mega a:hover { background: var(--surface-control); color: var(--fg); }
.mega .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hdr-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg);
  cursor: pointer;
}
.icon-btn:hover { background: var(--surface-control-hi); }
.burger { display: none; }
.menu-close { display: none; }
.hdr-search-form { display: flex; align-items: center; gap: 8px; }
.hdr-search {
  width: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-btn);
  background: var(--surface-control);
  color: #ffffff;
  padding: 9px 0;
  outline: none;
  transition: width var(--dur) var(--ease), opacity var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.hdr-search-form.search-is-open .hdr-search {
  width: 200px;
  opacity: 1;
  pointer-events: auto;
  padding: 9px 16px;
}
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--r-btn);
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary, .btn-play { background: var(--primary); color: #ffffff; }
.btn-primary:hover, .btn-play:hover { background: var(--primary-hover); }
.btn-play { box-shadow: 0 6px 20px -8px var(--primary); }
.btn-green { background: var(--secondary); color: #000000; }
.btn-green:hover { background: var(--secondary-hover); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.content-search {
  width: 100%;
  max-width: 760px;
  margin: 0 0 var(--grid-gap-wide);
}
.content-search > label {
  display: block;
  margin-bottom: var(--grid-gap-dense);
  font-weight: 700;
}
.content-search__controls {
  display: flex;
  gap: var(--grid-gap-dense);
}
.content-search input {
  min-width: 0;
  flex: 1;
  padding: 15px 18px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-btn);
  outline: 0;
  background: var(--surface-control);
  color: var(--fg);
  font-size: 16px;
}
.content-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.button-row { display: flex; flex-wrap: wrap; gap: var(--grid-gap-dense); }

.hero-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.page-shell--home .hero-head { margin-bottom: 28px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.eyebrow .bar { width: 22px; height: 2px; background: var(--fg-dim); border-radius: 2px; }
.page-title {
  margin: 12px 0 0;
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.page-sub { margin: 14px 0 0; color: var(--fg-dim); font-size: 20px; line-height: 1.45; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: var(--gap);
}
.section-title {
  margin: 6px 0 0;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.1;
  letter-spacing: 0;
}
.view-all { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 14px; font-weight: 600; white-space: nowrap; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.post-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 40px -20px #000000, 0 0 0 1px var(--accent); }
.card-link { display: flex; flex-direction: column; height: 100%; }
.card-media {
  --media-fit: cover;
  --media-position: center center;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}
.card-media img, .ah-media img, .gl-shot img, .gl-thumb img, .gl-promo-strip img {
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit, cover);
  object-position: var(--media-position, center center);
}
.card-media > img {
  position: absolute;
  inset: 0;
  max-width: none;
}
.fill-media { position: absolute; inset: 0; aspect-ratio: auto; }
.card-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; }
.card-body { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: var(--card-pad); }
.card-title { margin: 0; color: var(--fg); font-size: 18px; font-weight: 700; line-height: 1.28; letter-spacing: 0; text-wrap: pretty; }
.card:hover .card-title { color: var(--accent); }
.card-excerpt { margin: 0; color: var(--fg-dim); font-size: 14px; line-height: 1.55; }
.card-foot { margin-top: auto; padding-top: 4px; }
.meta { display: flex; align-items: center; gap: 8px; color: var(--fg-dimmer); font-size: 13px; white-space: nowrap; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge.round { border-radius: var(--r-full); padding: 6px 12px; }
.badge-pink { background: var(--primary); color: #ffffff; }
.badge-green { background: var(--secondary); color: #000000; }
.badge-purple { background: var(--mini); color: #ffffff; }
.badge-gold { background: var(--grad-gold); color: #2a1c00; }
.badge-blue { background: var(--minor); color: #00222e; }

.ph {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  isolation: isolate;
  background: radial-gradient(120% 90% at 50% 30%, #fa114f44, transparent 55%), linear-gradient(160deg, #1a0008, #050505);
}
.ph:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, #ffffff0a 0 2px, transparent 2px 9px);
}
.ph:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, transparent 40%, #00000066 100%);
  z-index: 1;
}
.ph-label {
  position: relative;
  z-index: 2;
  padding: 0 14px;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 12px #00000088;
  white-space: pre-line;
}
.ph-tag {
  position: absolute;
  right: 9px;
  bottom: 8px;
  z-index: 3;
  padding: 2px 6px;
  border-radius: 4px;
  background: #00000066;
  color: #ffffffaa;
  font-family: Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.hero { margin-top: 28px; }
.hero-split { display: grid; grid-template-columns: 1.7fr 1fr; gap: var(--grid-gap); align-items: stretch; }
.hero-split .feature { height: 440px; min-height: 440px; }
.hero-split .feature .card-link { position: absolute; inset: 0; }
.hero-split .feature .card-media { --media-fit: cover; --media-position: center center; }
.hero-split .stack { display: grid; grid-template-rows: 1fr 1fr; gap: var(--grid-gap); height: 440px; min-height: 0; }
.hero-split .stack .card { min-height: 0; }
.hero-split .stack .card-link { flex-direction: row; }
.hero-split .stack .card-media { width: 42%; flex-shrink: 0; aspect-ratio: auto; }
.hero-split .stack .card-body { justify-content: center; min-width: 0; overflow: hidden; }
.hero-split .stack .card-title { font-size: 17px; }
.hero-split .stack .card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.overlay-body {
  position: absolute;
  inset: 0;
  z-index: 4;
  justify-content: flex-end;
  background: linear-gradient(0deg, #000000ee 8%, #00000055 50%, transparent 80%);
}
.overlay-body h2 { margin: 0; font-size: 30px; line-height: 1.1; }
.card-badges--body {
  position: static;
  top: auto;
  left: auto;
}
body.home { overflow-x: clip; }
body.home .global-signup { display: none; }
.global-signup { margin-top: 18px; margin-bottom: 18px; }

.front-page {
  --home-muted: var(--fg-dim);
  --home-rule: var(--border);
  --home-section-space: var(--section-gap);
  --home-section-title-size: clamp(28px, 3.4vw, 42px);
  padding-top: 0;
  padding-bottom: var(--section-gap);
}
.front-page .home-section {
  margin-bottom: var(--home-section-space);
}
.home-masthead {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: var(--grid-gap-wide);
  align-items: center;
  margin-bottom: var(--grid-gap-wide);
  padding: var(--grid-gap) 0;
  isolation: isolate;
}
.home-masthead:before {
  content: "";
  position: absolute;
  inset: 0 auto;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--home-rule);
  background:
    radial-gradient(60% 120% at 6% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 72%),
    linear-gradient(90deg, var(--bg), color-mix(in srgb, var(--surface-raised) 72%, var(--bg)), var(--bg));
}
.home-masthead .page-title {
  max-width: 18ch;
  margin: 0;
  color: var(--fg);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}
.home-masthead-copy {
  max-width: 76ch;
}
.home-intro-lead {
  margin: var(--grid-gap-compact) 0 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.6;
}
.home-intro-toggle {
  border: 0;
  padding: 0;
  background: none;
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
}
.home-intro-toggle:hover {
  color: var(--fg);
}
.home-intro-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.home-intro-more {
  max-width: 72ch;
  margin-top: var(--grid-gap-dense);
}
.home-intro-summary {
  max-width: 72ch;
  margin: var(--grid-gap-dense) 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.65;
}
.home-intro-summary a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.home-intro-more p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.65;
}
.home-intro-more p + p {
  margin-top: var(--grid-gap-dense);
}
.home-offer {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}
.home-offer-link {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--grid-gap-dense);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 58%, var(--border));
  border-radius: var(--r-card);
  padding: var(--grid-gap);
  background:
    radial-gradient(90% 80% at 100% 0, color-mix(in srgb, var(--primary) 28%, transparent), transparent 68%),
    radial-gradient(70% 75% at 0 100%, color-mix(in srgb, var(--secondary) 12%, transparent), transparent 70%),
    var(--surface-raised);
  color: var(--fg);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--bg) 78%, transparent);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.home-offer-link:after {
  content: "";
  position: absolute;
  top: var(--grid-gap);
  right: var(--grid-gap);
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--primary) 44%, transparent);
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  box-shadow:
    0 0 0 var(--grid-gap-dense) color-mix(in srgb, var(--primary) 5%, transparent),
    0 0 0 var(--grid-gap) color-mix(in srgb, var(--primary) 3%, transparent);
  pointer-events: none;
}
.home-offer-link:hover {
  border-color: var(--primary);
  color: var(--fg);
  transform: translateY(-3px);
}
.home-offer-link:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}
.home-offer-kicker {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 80px);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-offer-reward {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 0.95;
}
.home-offer-reward strong {
  color: var(--fg);
  font-size: clamp(34px, 3.3vw, 45px);
  letter-spacing: -0.035em;
}
.home-offer-reward .home-offer-reward-highlight {
  color: var(--secondary);
}
.home-offer-extra {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--fg-dim);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.home-offer-extra strong {
  color: var(--fg);
  font-size: 21px;
  line-height: 1.1;
}
.home-offer-custom-headline {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}
.home-offer-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.home-offer-button .nav-ico {
  width: 15px;
  height: 15px;
}
.home-offer-terms {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin-right: calc(0px - var(--grid-gap-compact));
  margin-left: calc(0px - var(--grid-gap-compact));
  color: var(--fg-dimmer);
  font-size: 8px;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.front-page .home-editorial-lead {
  margin-bottom: var(--grid-gap-wide);
}
.home-offer-strip {
  margin: 0 0 var(--section-gap-compact);
}
.home-offer-strip .signup--home-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--grid-gap-dense) var(--grid-gap-wide);
  min-height: 168px;
  border: 2px solid color-mix(in srgb, var(--primary) 72%, var(--border));
  padding: var(--grid-gap) clamp(var(--grid-gap), 5vw, 56px) var(--grid-gap-compact);
  background:
    radial-gradient(60% 180% at 0 0, color-mix(in srgb, var(--primary) 30%, transparent), transparent 72%),
    radial-gradient(45% 180% at 100% 100%, color-mix(in srgb, var(--secondary) 18%, transparent), transparent 74%),
    linear-gradient(110deg, var(--surface-raised), color-mix(in srgb, var(--surface-control) 36%, var(--surface-raised)));
  box-shadow:
    0 22px 56px color-mix(in srgb, var(--primary) 12%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--fg) 8%, transparent);
}
.home-offer-strip-pitch {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.home-offer-strip-kicker {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.home-offer-strip-reward {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 9px;
  color: var(--fg-dim);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.home-offer-strip-reward strong {
  color: var(--fg);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
}
.home-offer-strip-reward .home-offer-strip-reward-highlight {
  color: var(--secondary);
}
.home-offer-strip-hook {
  color: var(--fg-dim);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.home-offer-strip-hook strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}
.home-offer-strip-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--fg-dim);
  font-size: 15px;
  font-weight: 700;
}
.home-offer-strip-custom strong {
  max-width: 24ch;
  color: var(--fg);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.home-offer-strip .signup-strip-terms {
  grid-column: 1 / -1;
  color: var(--fg-dimmer);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}
.home-offer-strip .signup-strip-button {
  min-width: 192px;
  padding: 15px 24px;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--secondary) 24%, transparent);
}
.home-offer-strip .signup-strip-button .nav-ico {
  width: 16px;
  height: 16px;
}
.home-offer-strip .signup-strip-button:hover {
  box-shadow: 0 18px 40px color-mix(in srgb, var(--secondary) 32%, transparent);
  transform: translateY(-2px);
}
.home-offer-strip .signup-strip-button:focus-visible {
  outline: 3px solid var(--fg);
  outline-offset: 4px;
}
.guide-start-directory {
  margin-bottom: var(--section-gap);
}
.guide-start-head {
  margin-bottom: var(--grid-gap-dense);
}
.guide-start-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.guide-start-title {
  margin: var(--grid-gap-dense) 0 0;
  color: var(--fg);
  font-size: var(--home-section-title-size, clamp(28px, 3.4vw, 42px));
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.guide-start-intro {
  max-width: 68ch;
  margin: 0 0 var(--grid-gap);
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
}
.guide-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.guide-start-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.guide-start-card:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--bg) 88%, transparent);
  transform: translateY(-3px);
}
.guide-start-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--fg);
}
.guide-start-link:hover {
  color: var(--fg);
}
.guide-start-link:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: -3px;
}
.guide-start-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
}
.guide-start-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}
.guide-start-card:hover .guide-start-media > img {
  transform: scale(1.035);
}
.guide-start-label {
  position: absolute;
  top: var(--grid-gap-dense);
  left: var(--grid-gap-dense);
  z-index: 2;
  padding: 6px 10px;
  background: var(--primary);
  color: var(--fg);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.guide-start-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-compact);
}
.guide-start-card-title {
  margin: 0;
  color: var(--fg);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  text-wrap: pretty;
}
.guide-start-card:hover .guide-start-card-title {
  color: var(--primary);
}
.guide-start-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--fg-dim);
  font-size: 13.5px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.front-page .guide-start-body {
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-dense) var(--grid-gap-compact);
}
.front-page .guide-start-card-title {
  font-size: 17px;
}
.front-page .guide-start-card-excerpt {
  -webkit-line-clamp: 2;
}
.guide-start-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.guide-start-action .nav-ico {
  width: 14px;
  height: 14px;
}
.guide-start-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--grid-gap-compact);
}
.guide-start-footer .nav-ico {
  width: 14px;
  height: 14px;
}
.guide-latest-head {
  margin-bottom: var(--grid-gap-dense);
}
.guide-latest-head h2 {
  margin: 0;
  color: var(--fg);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.1;
}
.front-page .home-section-head {
  margin-bottom: var(--grid-gap-compact);
}
.home-section-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.front-page .home-section-head h2 {
  margin: var(--grid-gap-dense) 0 0;
  color: var(--fg);
  font-size: var(--home-section-title-size);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.home-section-intro {
  max-width: 68ch;
  margin: var(--grid-gap-dense) 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.6;
}
.home-lead-grid {
  display: grid;
  gap: var(--grid-gap-wide);
}
.home-lead-story {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-rule);
  border-radius: var(--r-card);
  background: var(--surface-raised);
}
.home-lead-link {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 380px;
  color: var(--fg);
}
.home-lead-link:hover {
  color: var(--fg);
}
.home-lead-media {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.home-lead-media img,
.home-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}
.home-lead-story:hover .home-lead-media img,
.home-compact-story:hover .home-compact-media img {
  transform: scale(1.035);
}
.home-lead-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--grid-gap-dense);
  padding: clamp(24px, 3vw, 36px);
}
.home-lead-badge,
.home-compact-badge {
  display: flex;
}
.front-page .home-lead-badge .badge,
.front-page .home-compact-badge .badge {
  border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--border));
  background: color-mix(in srgb, var(--primary) 14%, var(--surface-raised));
  color: var(--primary);
}
.home-lead-title {
  max-width: none;
  margin: 0;
  color: var(--fg);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.06;
  text-wrap: pretty;
}
.home-lead-excerpt {
  display: -webkit-box;
  max-width: 48ch;
  overflow: hidden;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home-lead-foot {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--grid-gap-compact);
  margin-top: var(--grid-gap-dense);
}
.front-page .home-meta {
  color: var(--fg-dimmer);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}
.home-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.home-read-more .nav-ico {
  width: 14px;
  height: 14px;
}
.home-latest {
  min-width: 0;
}
.home-latest-head {
  padding: 0 0 var(--grid-gap-compact);
}
.home-latest-head h3 {
  margin: 0;
  color: var(--fg);
  font-size: 21px;
  font-weight: 900;
}
.home-latest-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.home-compact-story {
  min-width: 0;
}
.home-compact-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--fg);
}
.home-compact-link:hover {
  color: var(--fg);
}
.home-compact-story--card {
  overflow: hidden;
  border: 1px solid var(--home-rule);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.home-compact-story--card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.home-compact-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-raised);
}
.home-compact-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--grid-gap-dense);
}
.home-compact-story--card .home-compact-body {
  flex: 1;
  padding: var(--grid-gap-compact);
}
.home-compact-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--fg);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-compact-story:hover .home-compact-title {
  color: var(--primary);
}
.home-popular-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--home-rule);
  list-style: none;
}
.home-popular-list li {
  min-width: 0;
  border-top: 1px solid var(--home-rule);
}
.home-popular-list li + li {
  border-left: 1px solid var(--home-rule);
}
.home-popular-list a {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-dense) var(--grid-gap-compact);
  color: var(--fg);
}
.home-popular-rank {
  color: var(--primary);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}
.home-popular-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--grid-gap-dense);
}
.home-popular-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--fg);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-popular-list a:hover .home-popular-title {
  color: var(--primary);
}
.home-topic-panel {
  min-width: 0;
}
.home-across-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--section-gap-compact);
}
.home-topic-head {
  margin-bottom: var(--grid-gap-compact);
}
.home-topic-panel--has-intro .home-topic-head {
  margin-bottom: 0;
}
.home-topic-intro {
  margin-bottom: var(--grid-gap-compact);
}
.home-topic-head h2 {
  margin: 0;
  color: var(--fg);
  font-size: var(--home-section-title-size, clamp(28px, 3.4vw, 42px));
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.home-topic-head h3 {
  margin: 0;
  color: var(--fg);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}
.home-topic-head .home-section-eyebrow + h2,
.home-topic-head .home-section-eyebrow + h3 {
  margin-top: var(--grid-gap-dense);
}
.home-topic-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--grid-gap-compact);
}
.home-topic-footer .nav-ico {
  width: 14px;
  height: 14px;
}
.home-topic-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.signup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--grid-gap);
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid #fa114f55;
  border-radius: var(--r-card);
  padding: var(--grid-gap-compact) var(--grid-gap);
  background: radial-gradient(120% 180% at 0 0, #fa114f22, transparent 55%), radial-gradient(120% 180% at 100% 100%, #00ff4118, transparent 55%), var(--surface-raised);
}
.signup-copy .lead { color: var(--fg-dim); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.signup-copy .big { margin-top: 2px; font-size: 30px; font-weight: 900; line-height: 1.05; }
.signup-copy .big em { color: var(--secondary); font-style: normal; }
.signup .terms { margin-top: 6px; color: var(--fg-dimmer); font-size: 10px; white-space: nowrap; }
.global-signup--strip {
  position: sticky;
  top: var(--sticky-header-height);
  z-index: 50;
  width: 100%;
  max-width: none;
  margin: 0;
}
body.admin-bar .global-signup--strip { top: calc(var(--sticky-header-height) + 32px); }
.global-signup--strip .signup--top-strip {
  min-height: var(--sticky-cta-height);
  justify-content: center;
  gap: var(--grid-gap-compact);
  flex-wrap: wrap;
  border: 0;
  border-bottom: 1px solid #1c1c1c;
  border-radius: 0;
  padding: 11px 22px;
  background: #121212;
}
.signup-strip-copy {
  color: #e8e8e8;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.signup-strip-highlight { font-weight: 700; }
.signup-strip-highlight--white { color: #fff; }
.signup-strip-highlight--green { color: #78f060; }
.signup-strip-highlight--pink { color: #f0305f; }
.global-signup--strip .signup-strip-button {
  padding: 9px 18px;
  border-radius: 999px;
  color: #06210a;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .home-lead-link {
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  }
  .home-popular-list a {
    padding: var(--grid-gap-dense);
  }
}

@media (max-width: 933px) {
  .front-page {
    --home-section-space: var(--section-gap-compact);
  }
  .home-masthead {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: var(--grid-gap);
  }
  .home-lead-link {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .home-lead-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .home-latest-list,
  .home-topic-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-popular-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-popular-list li:nth-child(odd) {
    border-left: 0;
  }
  .guide-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .front-page {
    --home-section-title-size: 30px;
  }
  .guide-start-directory {
    margin-bottom: var(--section-gap-compact);
  }
  .home-masthead {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }
  .home-masthead-copy,
  .home-intro-summary,
  .home-intro-more {
    margin-right: auto;
    margin-left: auto;
  }
  .home-masthead .page-title {
    font-size: 42px;
  }
  .home-intro-lead {
    font-size: 17px;
  }
  .home-lead-content {
    padding: var(--grid-gap);
  }
  .home-lead-title {
    font-size: 34px;
  }
  .home-offer {
    max-width: 360px;
    justify-self: center;
  }
  .home-offer-link {
    align-items: center;
    text-align: center;
  }
  .home-offer-kicker {
    max-width: none;
  }
  .home-offer-reward,
  .home-offer-extra {
    align-items: center;
  }
  .home-offer-strip .signup--home-offer {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: var(--grid-gap-compact);
    padding: var(--grid-gap);
    text-align: center;
  }
  .home-offer-strip-pitch {
    align-items: center;
  }
  .home-offer-strip-reward {
    justify-content: center;
  }
  .home-offer-strip .signup-strip-terms {
    grid-column: auto;
  }
  .home-latest-list,
  .home-topic-stories {
    grid-template-columns: minmax(0, 1fr);
  }
  .front-page .home-lead-link,
  .front-page .guide-start-link,
  .front-page .inf-card--cornerstone .inf-card-link {
    display: grid;
    grid-template-columns: minmax(112px, 2fr) minmax(0, 3fr);
    min-height: 150px;
  }
  .front-page .home-lead-media,
  .front-page .guide-start-media,
  .front-page .inf-card--cornerstone .inf-card-media {
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
  }
  .front-page .home-lead-content,
  .front-page .guide-start-body,
  .front-page .inf-card--cornerstone .inf-card-body {
    justify-content: center;
    gap: var(--grid-gap-dense);
    padding: var(--grid-gap-dense);
  }
  .front-page .home-lead-title,
  .front-page .guide-start-card-title,
  .front-page .inf-card--cornerstone .inf-card-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .front-page .home-lead-excerpt,
  .front-page .guide-start-card-excerpt,
  .front-page .inf-card--cornerstone .card-excerpt,
  .front-page .home-read-more {
    display: none;
  }
  .front-page .home-lead-foot {
    margin-top: 0;
  }
  .front-page .guide-start-grid,
  .front-page .inf-directory-grid--cornerstone {
    grid-template-columns: minmax(0, 1fr);
  }
  .front-page .home-latest-list .home-compact-link,
  .front-page .home-topic-stories .home-compact-link {
    display: grid;
    grid-template-columns: minmax(112px, 2fr) minmax(0, 3fr);
    min-height: 150px;
  }
  .front-page .home-latest-list .home-compact-media,
  .front-page .home-topic-stories .home-compact-media {
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
  }
  .front-page .home-latest-list .home-compact-body,
  .front-page .home-topic-stories .home-compact-body {
    justify-content: center;
    gap: var(--grid-gap-dense);
    padding: var(--grid-gap-dense);
  }
  .front-page .home-latest-list .home-compact-title,
  .front-page .home-topic-stories .home-compact-title {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .guide-start-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-masthead {
    padding: var(--grid-gap) 0;
  }
  .home-masthead .page-title {
    font-size: 36px;
  }
  .home-intro-lead {
    margin-top: var(--grid-gap-dense);
    font-size: 16px;
  }
  .home-intro-summary,
  .home-intro-more p {
    font-size: 15px;
  }
  .home-offer-terms {
    font-size: 7px;
  }
  .home-offer-strip .signup--home-offer {
    min-height: 0;
    padding: var(--grid-gap-compact);
  }
  .home-offer-strip-kicker {
    font-size: 10px;
  }
  .home-offer-strip-reward {
    gap: 5px 7px;
    font-size: 15px;
  }
  .home-offer-strip-reward strong {
    font-size: clamp(27px, 9vw, 34px);
  }
  .home-offer-strip-hook {
    font-size: 13px;
  }
  .home-offer-strip-hook strong {
    display: block;
    margin-top: 2px;
    font-size: 17px;
  }
  .home-offer-strip .signup-strip-button {
    width: 100%;
    min-width: 0;
  }
  .home-lead-content {
    gap: 9px;
    padding: var(--grid-gap-compact);
  }
  .home-lead-title {
    font-size: 28px;
  }
  .home-lead-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
  }
  .home-popular-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-popular-list li {
    border-left: 0;
  }
  .home-popular-list a {
    min-height: 0;
    flex-direction: row;
    padding: var(--grid-gap-compact) 0;
  }
  .home-popular-rank {
    min-width: 38px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-lead-media img,
  .home-compact-media img {
    transition: none;
  }
  .home-lead-story:hover .home-lead-media img,
  .home-compact-story:hover .home-compact-media img {
    transform: none;
  }
}

.rail { position: sticky; top: calc(var(--sticky-header-height) + var(--sticky-cta-height) + var(--sticky-stack-gap)); display: flex; flex-direction: column; gap: 24px; }
.promo, .rail-card {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
}
.promo { padding: 22px 18px; text-align: center; border-color: #fa114f66; background: radial-gradient(120% 100% at 50% 0, #2a0030, #0a0010); }
.promo .pj-title { font-size: 19px; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.promo .ph { width: 150px; height: 120px; min-height: 120px; margin: 16px auto; border-radius: var(--r-md); }
.promo-logo { height: 22px; width: auto; margin: 14px auto 0; }
.promo .terms { margin-top: 12px; color: var(--fg-dimmer); font-size: 9px; line-height: 1.3; }
.rail-card { padding: 20px; }
.rail-card h4 { margin: 0 0 14px; font-size: 16px; }
.rail-list { display: flex; flex-direction: column; gap: 2px; }
.rail-list a { display: flex; gap: 12px; align-items: flex-start; padding: 10px 8px; border-radius: var(--r-sm); }
.rail-list a:hover { background: var(--surface-control); }
.rail-rank { width: 22px; color: var(--accent); font-size: 18px; font-weight: 900; line-height: 1.3; flex-shrink: 0; }
.rail-list .t { font-size: 13.5px; font-weight: 500; line-height: 1.35; }

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--fg-dimmer); font-size: 13px; }
.page-shell--hub .crumb,
.page-shell--single .crumb { margin-bottom: 14px; }
.crumb a { color: var(--accent); }
.crumb a:hover { text-decoration: underline; }
.article-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin: 4px 0 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: linear-gradient(135deg, #171717 0%, #0f0f0f 52%, #090909 100%);
}
[data-ahero="split"].article-head {
  gap: var(--grid-gap);
  min-height: 328px;
  padding: var(--grid-gap);
}
.article-deck {
  max-width: 620px;
  margin: 14px 0 0;
  color: #e4e4e6;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  text-wrap: pretty;
}
.article-head .eyebrow .bar { background: var(--primary); }
.article-meta-rule {
  display: block;
  width: 100%;
  max-width: 620px;
  height: 1px;
  margin: 26px 0 0;
  background: #ffffff1a;
}
.ah-media {
  --media-fit: cover;
  --media-position: center center;
  position: relative;
  aspect-ratio: 16 / 9;
  align-self: center;
  max-height: none;
  margin: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #050505;
}
[data-ahero="split"] .ah-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
[data-ahero="split"] .ah-media {
  margin: 0;
}
[data-ahero="cover"].article-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
[data-ahero="cover"] .ah-media {
  --media-fit: cover;
  --media-position: center center;
  position: absolute;
  inset: 0;
  z-index: 0;
  max-height: none;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
}
[data-ahero="cover"].article-head:after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, #000000f2 8%, #00000055 55%, transparent 88%); }
[data-ahero="cover"] .ah-text { position: relative; z-index: 2; width: 100%; padding: 40px; }
[data-ahero="minimal"].article-head { display: block; max-width: 820px; padding: var(--grid-gap); }
[data-ahero="minimal"] .ah-media { display: none; }
[data-ahero="card"].article-head { overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface-raised); gap: 0; }
[data-ahero="card"] .ah-text { padding: 38px; }
[data-ahero="card"] .ah-media { max-height: none; min-height: 320px; border: 0; border-radius: 0; }
[data-ahero="compact"].article-head { grid-template-columns: 140px minmax(0, 1fr); gap: 26px; }
[data-ahero="compact"] .ah-media { order: -1; width: 140px; max-height: 140px; aspect-ratio: 1; }
[data-ahero="banner"].article-head { display: block; }
[data-ahero="banner"] .ah-text { max-width: 760px; margin: 0 auto; text-align: center; }
[data-ahero="banner"] .article-meta { justify-content: center; }
[data-ahero="banner"] .ah-media { width: 100%; height: 200px; max-height: 200px; margin-top: 24px; aspect-ratio: auto; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 16px; color: var(--fg-dim); font-size: 14px; }
.article-head .article-meta {
  gap: 13px;
  margin-top: 18px;
  color: #bdbdc2;
  font-size: 14px;
  line-height: 1.25;
}
.article-author,
.article-date {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}
.article-author:hover .it { color: var(--accent); }
.article-author-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: hidden;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  background: #050505;
}
.article-author-mark img {
  width: 96px;
  max-width: none;
  height: 32px;
  object-fit: contain;
  object-position: left center;
  transform: translate(1px, 1px);
}
.article-author-mark--photo img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}
.article-author-mark--logo {
  box-sizing: border-box;
  padding: 3px;
}
.article-author-mark--logo img {
  object-fit: contain;
  border-radius: 50%;
}
.article-meta-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--primary);
}
.article-meta-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #8f9097;
}
.last-updated { display: flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--fg-dimmer); font-size: 13px; font-style: italic; }

.cat-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; column-gap: var(--grid-gap-wide); row-gap: var(--grid-gap); align-items: start; }
.cat-layout > .sidenav { grid-column: 2; grid-row: 1; }
.cat-layout > .article-sidebar-stack { grid-column: 2; grid-row: 1; min-width: 0; }
.cat-layout > .gl-body,
.cat-layout > .article-main { grid-column: 1; grid-row: 1; min-width: 0; }
.cat-layout > .pager-full { grid-column: 1; margin-top: 0; }
.cat-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--grid-gap);
  padding: 46px 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: radial-gradient(130% 170% at 100% 0, var(--accent-soft), transparent 55%), radial-gradient(100% 150% at 0 100%, #ffffff08, transparent 52%), var(--surface-raised);
}
.page-shell--hub .cat-hero { margin-bottom: var(--grid-gap); }
.cat-hero .page-title { margin: 12px 0 14px; font-size: clamp(30px, 3.6vw, 44px); }
.cat-hero-sub { position: relative; z-index: 2; max-width: 640px; margin: 0; color: #e2e2e2; font-size: 16.5px; line-height: 1.65; }

.page-shell--reviews .crumb { margin-bottom: 14px; }
.rv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--grid-gap-wide);
  align-items: center;
}
.rv-hero .article-meta { justify-content: flex-start; }
.rv-score {
  position: relative;
  z-index: 2;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #0d0d0d;
  text-align: center;
}
.rv-score-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}
.rv-score .rv-stars { justify-content: center; margin: 8px 0 6px; }
.rv-score-count { margin-bottom: 14px; color: var(--fg-dimmer); font-size: 12.5px; }
.rv-bars { display: flex; flex-direction: column; gap: 6px; }
.rv-bar-row { display: flex; align-items: center; gap: 8px; }
.rv-bar-label {
  width: 28px;
  flex-shrink: 0;
  color: var(--fg-dimmer);
  font-size: 11px;
  text-align: right;
}
.rv-bar-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: var(--r-full);
  background: var(--surface-control);
}
.rv-bar-fill {
  display: block;
  height: 100%;
  border-radius: var(--r-full);
  background: var(--grad-gold);
}
.rv-bar-pct {
  width: 34px;
  flex-shrink: 0;
  color: var(--fg-dimmer);
  font-size: 11px;
  text-align: right;
}
.rv-stars {
  display: inline-flex;
  gap: 2px;
  flex-shrink: 0;
  color: var(--surface-control-hi);
}
.rv-stars .on { color: var(--gold-lite); }
.rv-stars .off { color: var(--surface-control-hi); }
.rv-reviews .section-head { margin-bottom: var(--gap); }
.rv-grid {
  columns: 3;
  column-gap: var(--gap);
}
.rv-card {
  display: inline-flex;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 var(--gap);
  padding: 20px;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rv-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.rv-head { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-pink);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}
.rv-id { flex: 1; min-width: 0; }
.rv-name {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--fg);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.rv-date { margin-top: 2px; color: var(--fg-dimmer); font-size: 12px; }
.rv-text { color: var(--fg-dim); font-size: 14.5px; line-height: 1.6; }
.rv-text p { margin: 0 0 12px; }
.rv-text p:last-child { margin-bottom: 0; }
.rv-foot {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.rv-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-dimmer);
  font-size: 12px;
  font-weight: 600;
}
a.rv-source:hover { color: var(--accent); }
.rv-empty { column-span: all; }
.sidenav {
  position: sticky;
  top: calc(var(--sticky-header-height) + var(--sticky-cta-height) + var(--sticky-stack-gap));
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #0d0d0d;
}
.article-sidebar-stack {
  position: sticky;
  top: calc(var(--sticky-header-height) + var(--sticky-cta-height) + var(--sticky-stack-gap));
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--grid-gap-compact);
}
.article-sidebar-stack > .sidenav {
  position: static;
  min-width: 0;
  max-width: 100%;
}
.sidebar-offer {
  max-width: none;
}
.sidebar-offer .home-offer-link {
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-compact);
}
.sidebar-offer .home-offer-link:after {
  top: var(--grid-gap-compact);
  right: var(--grid-gap-compact);
  width: 40px;
  height: 40px;
}
.sidebar-offer .home-offer-kicker {
  max-width: calc(100% - 56px);
  font-size: 9px;
}
.sidebar-offer .home-offer-reward strong {
  font-size: 30px;
}
.sidebar-offer .home-offer-extra {
  font-size: 11px;
}
.sidebar-offer .home-offer-extra strong {
  font-size: 18px;
}
.sidebar-offer .home-offer-button {
  padding: 10px 14px;
  font-size: 13px;
}
.sidebar-offer .home-offer-terms {
  margin-right: 0;
  margin-left: 0;
  font-size: 7px;
  white-space: normal;
}
body.admin-bar .rail,
body.admin-bar .sidenav {
  top: calc(var(--sticky-header-height) + var(--sticky-cta-height) + var(--sticky-stack-gap) + 32px);
}
body.admin-bar .article-sidebar-stack {
  top: calc(var(--sticky-header-height) + var(--sticky-cta-height) + var(--sticky-stack-gap) + 32px);
}
.sidenav-mobile-details { margin: 0; }
.sidenav-mobile-summary { display: none; }
.sidenav-mobile-body { display: contents; }
.mobile-tail-widget { display: none; }
.sidenav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  color: var(--fg-dim);
  font-size: 14px;
  cursor: pointer;
}
.sidenav-item:hover:not(.active) { background: #ffffff12; color: var(--fg); }
.sidenav-item.active { background: var(--primary); color: #ffffff; font-weight: 700; }
.sidenav-item > span:first-child { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.count-pill {
  flex-shrink: 0;
  min-width: 22px;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg-dim);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.sidenav-item.active .count-pill { background: #ffffff2e; color: #ffffff; }
.sidenav-sep { height: 1px; margin: 12px 6px 10px; background: var(--border); }
.sidenav-popular .rail-list a { padding: 9px 8px; color: var(--fg-dim); }
.sidenav-popular .rail-list a:hover { color: var(--fg); }
.sidenav-note { margin: 0; padding: 0 14px 6px; color: var(--fg-dimmer); font-size: 12.5px; line-height: 1.5; }
.toc-head { padding: 6px 14px 10px; color: var(--fg-dimmer); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.toc-item, .toc-subitem {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-md);
  color: var(--fg-dim);
  font-size: 14px;
}
.toc-item-label { display: grid; min-width: 0; }
.toc-item-label > span,
.toc-item-label:after { grid-area: 1 / 1; min-width: 0; }
.toc-item-label:after {
  content: attr(data-active-label);
  visibility: hidden;
  font-weight: 700;
  pointer-events: none;
}
.toc-subitem { padding-left: 26px; color: var(--fg-dimmer); font-size: 13px; }
.toc-item:hover, .toc-subitem:hover { background: #ffffff12; color: var(--fg); }
.toc-item.active, .toc-subitem.active { background: var(--primary); color: #ffffff; font-weight: 700; }
.toc-section-details { margin: 0; }
.toc-section-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}
.toc-section-summary::-webkit-details-marker { display: none; }
.toc-section-summary:after {
  content: "+";
  flex-shrink: 0;
  color: var(--fg-dimmer);
  font-weight: 800;
}
.toc-section-details[open] > .toc-section-summary:after,
.guide-chapter-details[open] > .toc-section-summary:after { content: "-"; }
.toc-section-summary span { min-width: 0; }
.toc-section-summary:hover { color: var(--fg); }
.toc-section-list { display: flex; flex-direction: column; gap: 1px; }
.guide-chapter-block { margin: 0; }
.guide-chapter-details { margin: 0; }
.guide-chapter-heading {
  margin: 0 0 6px;
  cursor: default;
}
.guide-chapter-heading:after { display: none; }
.guide-chapter-heading a,
.guide-chapter-heading span {
  min-width: 0;
  flex: 1;
  color: inherit;
}
.guide-chapter-heading a { display: block; }
.guide-chapter-heading a:hover { color: inherit; }
.guide-chapter-heading a:focus-visible { outline: 2px solid var(--fg); outline-offset: -4px; }
.guide-chapter-tree { padding: 0; }
.guide-chapter-list { margin: 0; padding: 0; list-style: none; }
.guide-chapter-list .guide-chapter-list {
  margin: 1px 0 4px 12px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}
.guide-chapter-node { margin: 0; padding: 0; }
.guide-chapter-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--r-md);
}
.guide-chapter-row > .guide-chapter-link {
  min-width: 0;
  flex: 0 1 auto;
}
.guide-chapter-node--main.is-active-branch > .guide-chapter-row { background: var(--primary); }
.guide-chapter-node--main.is-active-branch > .guide-chapter-row .guide-chapter-link,
.guide-chapter-node--main.is-active-branch > .guide-chapter-row .guide-chapter-toggle {
  color: var(--fg);
  font-weight: 700;
}
.guide-chapter-node--main.is-active-branch > .guide-chapter-row .guide-chapter-link { background: transparent; }
.guide-chapter-node:not(.guide-chapter-node--main) > .toc-subitem.active {
  background: transparent;
  color: var(--fg);
  font-weight: 700;
}
.guide-chapter-toggle {
  display: grid;
  width: 28px;
  height: 32px;
  flex: 0 0 28px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--fg-dim);
  cursor: pointer;
}
.guide-chapter-toggle:hover { color: var(--fg); }
.guide-chapter-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.guide-chapter-toggle .nav-ico { transition: transform 160ms ease; }
.guide-chapter-node--main.is-expanded > .guide-chapter-row .guide-chapter-toggle .nav-ico { transform: rotate(180deg); }
.guide-chapter-children[hidden] { display: none; }
.guide-chapter-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-compact);
  margin-top: var(--section-gap-compact);
  padding-top: var(--grid-gap);
  border-top: 1px solid var(--border);
}
.guide-chapter-nav__link {
  display: flex;
  min-width: 0;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-compact);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-raised);
  color: var(--fg);
}
.guide-chapter-nav__link--next { grid-column: 2; text-align: right; }
.guide-chapter-nav__link:hover { border-color: var(--accent); color: var(--accent); }
.guide-chapter-nav__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.guide-chapter-nav__direction {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-dimmer);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guide-chapter-nav__link--next .guide-chapter-nav__direction { justify-content: flex-end; }
.guide-chapter-nav__title { font-size: 16px; font-weight: 700; line-height: 1.35; }
.guide-inline-toc {
  position: static;
  margin: 4px 0 var(--grid-gap);
}
.guide-inline-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}
.prose .guide-inline-toc .toc-item,
.prose .guide-inline-toc .toc-subitem {
  color: var(--fg-dim);
  text-decoration: none;
}
.prose .guide-inline-toc .toc-item:hover,
.prose .guide-inline-toc .toc-subitem:hover { color: var(--fg); }
.prose .guide-inline-toc .toc-item.active,
.prose .guide-inline-toc .toc-subitem.active { color: var(--fg); }
.mcluck-key-takeaways {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid #ffffff14;
  border-radius: var(--r-md);
  background: var(--surface-raised);
  box-shadow: 0 12px 30px -28px #000000dd;
}
.mcluck-key-takeaways__title {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}
.mcluck-key-takeaways__title strong { font-weight: 700; }
.mcluck-key-takeaways__verdict {
  margin: 0;
  color: #e2e2e2;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}
.mcluck-key-takeaways__faq {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ffffff14;
}
.mcluck-key-takeaways__faq h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
.mcluck-key-takeaways__faq dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.mcluck-key-takeaways__faq dt {
  color: var(--accent);
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
}
.mcluck-key-takeaways__faq dd {
  margin: 0 0 8px;
  color: #dddddd;
  font-size: 15.5px;
  line-height: 1.6;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 28px; }
.chip { padding: 7px 13px; border-radius: var(--r-full); background: var(--surface-control); color: var(--fg-dim); font-size: 12px; font-weight: 600; white-space: nowrap; }

.prose { max-width: var(--article-prose-width); }
.prose :is(h2, h3, h4, h5) { color: var(--fg); letter-spacing: 0; }
.prose h2, .gl-table-title { margin: 40px 0 14px; color: var(--accent); font-size: clamp(28px, 3vw, 30px); font-weight: 700; line-height: 1.15; letter-spacing: 0; }
.prose h3 { margin: 30px 0 10px; font-size: 22px; font-weight: 600; line-height: 1.2; }
.prose h4 { margin: 24px 0 8px; font-size: 18px; font-weight: 700; line-height: 1.3; }
.prose h5 { margin: 20px 0 8px; font-size: 16px; font-weight: 700; line-height: 1.35; }
.article-main .prose .mcluck-pattern .mcluck-pattern__title { display: block; color: var(--accent); }
.article-main .prose .mcluck-pattern .mcluck-pattern__title::before { content: none; }
.prose p, .prose li { color: #e2e2e2; font-size: 17px; line-height: 1.75; }
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose a, .inline { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 26px 0; padding: 18px 22px; border-left: 3px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0; background: var(--surface-raised); color: #ffffff; font-size: 18px; font-style: italic; }
.prose-section {
  max-width: var(--article-prose-width);
  margin-top: var(--section-gap-compact);
  padding-top: var(--grid-gap);
  border-top: 1px solid var(--border);
}
.prose-section :is(h2, h3, h4, h5):first-child { margin-top: 0; }
.hub-copy { margin: 0 auto var(--section-gap); }
.hub-grid-block { margin-top: var(--grid-gap); }
.hub-subsection { margin-top: var(--section-gap); }
.hub-subsection .section-head { margin-bottom: 12px; }
.hub-subsection-intro { max-width: 720px; margin: 0 0 var(--grid-gap); color: var(--fg-dim); font-size: 15.5px; line-height: 1.65; }
.empty-state { color: var(--fg-dim); font-size: 16px; }
.related-block { margin-top: var(--section-gap-compact); }
.article-main > .gl-bio { margin-top: var(--section-gap-compact); }

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: var(--grid-gap);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.archive-count { color: var(--fg-dim); font-size: 14px; }
.archive-sort { display: flex; align-items: center; gap: 9px; color: var(--fg-dimmer); font-size: 13px; }
.archive-sort select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 142px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  background-color: var(--surface-control);
  color: #ffffff;
  padding: 8px 32px 8px 13px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}
.archive-sort select:hover { background-color: var(--surface-control-hi); }
.arch-feature {
  overflow: hidden;
  margin-bottom: var(--grid-gap);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.arch-feature:hover { border-color: var(--accent); box-shadow: 0 18px 40px -22px #000000, 0 0 0 1px var(--accent); }
.arch-feature-link { display: grid; grid-template-columns: 1fr 1fr; min-height: 240px; }
.arch-feature-media {
  --media-fit: cover;
  --media-position: center center;
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #050505;
}
.arch-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit, cover);
  object-position: var(--media-position, center center);
}
.arch-feature-body { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 26px; }
.arch-feature-title { margin: 0; font-size: 23px; font-weight: 700; line-height: 1.22; text-wrap: pretty; }
.arch-feature:hover .arch-feature-title { color: var(--accent); }
.arch-feature-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.archive-grid { margin-top: 0; }
.archive-empty {
  padding: 48px 24px;
  border: 1px dashed var(--border-hi);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  color: var(--fg-dim);
  font-size: 15px;
  text-align: center;
}

.page-shell--compact-hub .cat-hero {
  margin-bottom: 0;
  padding: 32px 36px;
}
.page-shell--compact-hub .cat-hero .page-title {
  max-width: 760px;
  margin: 10px 0 10px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.08;
}
.page-shell--compact-hub .cat-hero-sub {
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.55;
}
.pill-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  margin: 24px 0;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.pill-nav::-webkit-scrollbar { display: none; }
.pill-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 7px;
  min-height: 32px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pill-nav-item .pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
  padding: 2px 6px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  background: #ffffff14;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.pill-nav-item:hover,
.pill-nav-item.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}
.pill-nav-item:hover .pill-count,
.pill-nav-item.active .pill-count {
  border: 1px solid #ffffff99;
  background: #ffffff;
  color: #171717;
}
.compact-hub-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.compact-hub-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  margin: 24px 0;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.compact-hub-nav::-webkit-scrollbar { display: none; }
.compact-hub-nav-item {
  flex-shrink: 0;
  padding: 8px 13px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.compact-hub-nav-item .pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
  padding: 2px 6px;
  border-radius: var(--r-full);
  background: #ffffff14;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.compact-hub-nav-item:hover,
.compact-hub-nav-item.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}
.compact-hub-nav-item:hover .pill-count,
.compact-hub-nav-item.active .pill-count {
  border: 1px solid #ffffff99;
  background: #ffffff;
  color: #171717;
}
.page-shell--compact-hub .archive-toolbar {
  margin-bottom: var(--grid-gap-compact);
  padding-bottom: 14px;
}
.page-shell--compact-hub .arch-feature {
  margin-bottom: var(--grid-gap-compact);
  border-radius: var(--r-md);
}
.page-shell--compact-hub .arch-feature-link {
  min-height: 196px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
.page-shell--compact-hub .arch-feature-media { min-height: 196px; }
.page-shell--compact-hub .arch-feature-body {
  gap: 9px;
  padding: 20px;
}
.page-shell--compact-hub .arch-feature-title {
  font-size: 20px;
  line-height: 1.2;
}
.page-shell--compact-hub .arch-feature .card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page-shell--compact-hub .archive-grid {
  gap: var(--grid-gap-compact);
}
.page-shell--compact-hub .archive-grid .card {
  border-radius: var(--r-md);
}
.page-shell--compact-hub .archive-grid .card-body {
  gap: 8px;
  padding: 15px;
}
.page-shell--compact-hub .archive-grid .card-title {
  font-size: 16px;
  line-height: 1.24;
}
.page-shell--compact-hub .archive-grid .card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.influencer-cornerstone-directory {
  margin-bottom: var(--section-gap);
}
.influencer-cornerstone-head {
  margin-bottom: var(--grid-gap-dense);
}
.influencer-cornerstone-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.influencer-cornerstone-title {
  margin: var(--grid-gap-dense) 0 0;
  color: var(--fg);
  font-size: var(--home-section-title-size, clamp(28px, 3.4vw, 42px));
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.influencer-cornerstone-intro {
  max-width: 68ch;
  margin: 0 0 var(--grid-gap);
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
}
.page-shell--influencers .influencer-cornerstone-intro {
  max-width: none;
}
.front-page .home-section-intro,
.front-page .guide-start-intro,
.front-page .influencer-cornerstone-intro {
  max-width: 80ch;
}
.influencer-cornerstone-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--grid-gap-compact);
}
.influencer-cornerstone-footer .nav-ico {
  width: 14px;
  height: 14px;
}
.influencer-latest-head {
  margin-bottom: var(--grid-gap-dense);
}
.influencer-latest-head h2 {
  margin: 0;
  color: var(--fg);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.1;
}
.inf-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}
.inf-directory-grid--cornerstone {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.inf-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.inf-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 40px -22px #000000, 0 0 0 1px var(--accent); }
.inf-card-link {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 220px;
  height: 100%;
}
.inf-card-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #050505;
}
.inf-card-media img,
.profile-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inf-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 22px;
}
.inf-card-title {
  margin: 0;
  color: var(--fg);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  text-wrap: pretty;
}
.inf-card:hover .inf-card-title { color: var(--accent); }
.inf-card-body .btn { margin-top: auto; }
.inf-card--cornerstone .inf-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.inf-card--cornerstone .inf-card-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.inf-card--cornerstone .inf-card-body {
  flex: 1;
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-compact);
}
.inf-card--cornerstone .inf-card-title {
  font-size: 20px;
  font-weight: 900;
}
.inf-card--cornerstone .card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1100px) {
  .inf-directory-grid--cornerstone {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.profile-hero {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--grid-gap-wide);
  align-items: center;
  margin-bottom: var(--grid-gap);
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: radial-gradient(130% 170% at 100% 0, var(--accent-soft), transparent 55%), radial-gradient(100% 150% at 0 100%, #ffffff08, transparent 52%), var(--surface-raised);
}
.profile-hero-media {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-card);
  background: #050505;
}
.author-hero-media--logo {
  display: grid;
  place-items: center;
  padding: 28px;
}
.author-hero-media--logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.profile-hero-body { min-width: 0; }
.profile-hero .page-title { margin: 12px 0 14px; font-size: clamp(30px, 3.6vw, 44px); }
.inf-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.inf-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 8px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-full);
  background: var(--surface-control);
  color: var(--fg);
}
.social-icon { display: block; width: 18px; height: 18px; flex: 0 0 18px; }
.social-icon--facebook { transform: translate(3px, -1px); }
.inf-socials .social-icon { width: 17px; height: 17px; }
.inf-socials a:hover { border-color: var(--accent); color: var(--accent); }
.profile-section .section-head { margin-bottom: var(--grid-gap); }
.page-shell--author .archive-toolbar { margin-bottom: 20px; }
.best-games-section { margin-top: var(--section-gap); }
.gl-body > .best-games-section:first-of-type { margin-top: var(--section-gap); }
.best-games-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.best-games-term-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface-raised);
  scroll-margin-top: 110px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.best-games-term-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -24px #000000, 0 0 0 1px var(--accent);
}
.best-games-term-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.best-games-term-title {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: pretty;
}
.best-games-term-title a { color: var(--fg); }
.best-games-term-title a:hover { color: var(--accent); }
.best-games-term-card .count-pill {
  min-width: fit-content;
  margin-top: 1px;
  padding: 4px 8px;
}
.best-games-term-intro {
  margin: 0;
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
}
.best-games-term-posts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.best-games-term-post {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #05050566;
}
.best-games-term-post:hover {
  border-color: var(--border-hi);
  background: var(--surface-control);
}
.best-games-term-thumb {
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 44px;
  border-radius: var(--r-sm);
  background: #050505;
}
.best-games-term-thumb img,
.best-games-term-thumb .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.best-games-term-thumb .ph-label { font-size: 8px; padding: 0 3px; }
.best-games-term-post-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.best-games-term-post-title {
  overflow: hidden;
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.best-games-term-post:hover .best-games-term-post-title { color: var(--accent); }
.best-games-term-post-date {
  color: var(--fg-dimmer);
  font-size: 12px;
}
.best-games-term-all {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.page-shell--best-games .best-games-section { margin-top: var(--section-gap-compact); }
.page-shell--best-games .gl-body > .best-games-section:first-of-type { margin-top: 0; }
.page-shell--best-games .best-games-latest .section-head { margin-bottom: var(--grid-gap-compact); }
.page-shell--best-games .best-games-taxonomy-overview { margin-top: var(--section-gap-compact); }
.page-shell--best-games .best-games-taxonomy-overview .section-head { margin-bottom: var(--grid-gap-dense); }
.page-shell--best-games .hub-subsection-intro {
  max-width: 68ch;
  margin-bottom: var(--grid-gap-compact);
  font-size: 14px;
  line-height: 1.55;
}
.page-shell--best-games .best-games-term-grid { gap: var(--grid-gap-compact); }
.page-shell--best-games .best-games-term-card {
  gap: var(--grid-gap-dense);
  padding: var(--grid-gap-compact);
  border-radius: var(--r-md);
}
.page-shell--best-games .best-games-term-title { font-size: 18px; }
.page-shell--best-games .best-games-term-card .count-pill {
  padding: 4px 9px;
  border: 1px solid var(--border-hi);
  background: var(--surface-control);
  color: var(--fg-dim);
}
.page-shell--best-games .best-games-term-intro {
  font-size: 13px;
  line-height: 1.45;
}
.page-shell--best-games .best-games-term-posts { gap: var(--grid-gap-dense); }
.page-shell--best-games .best-games-term-post {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: var(--grid-gap-dense);
  padding: 7px;
}
.page-shell--best-games .best-games-term-thumb {
  width: 52px;
  height: 40px;
}
.page-shell--best-games .best-games-term-post-title { font-size: 12.5px; }
.page-shell--best-games .best-games-term-post-date { font-size: 11px; }
.page-shell--best-games .sidenav .toc-head:not(:first-child) { margin-top: var(--grid-gap-dense); }
.page-shell--best-games .gl-toc { padding: var(--grid-gap-dense); }
.page-shell--best-games .gl-toc .toc-head {
  padding: 6px 10px 8px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.page-shell--best-games .gl-toc .sidenav-item {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
}
.page-shell--best-games .gl-toc .sidenav-item:not(.active) { color: var(--fg-dim); }
.page-shell--best-games .gl-toc .sidenav-item:not(.active):hover { background: var(--surface-control); }
.page-shell--best-games .gl-toc .count-pill {
  min-width: 30px;
  padding: 2px 8px;
  font-size: 11px;
}
.page-shell--best-games .sidenav-popular .toc-head {
  padding-left: 10px;
  padding-right: 10px;
}
.page-shell--best-games .sidenav-popular .rail-list { gap: 3px; }
.page-shell--best-games .sidenav-popular .rail-list a {
  gap: 10px;
  align-items: center;
  padding: 8px 6px;
}
.page-shell--best-games .sidenav-popular .rail-rank {
  width: 26px;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.page-shell--best-games .sidenav-popular .rail-list .t {
  font-size: 13px;
  line-height: 1.35;
}

.gl-body { min-width: 0; }
.gl-bullets { margin: 0 0 18px; padding-left: 20px; }
.gl-bullets li { margin-bottom: 10px; color: #e2e2e2; font-size: 16.5px; line-height: 1.65; }
.gl-bullets li::marker { color: var(--accent); }
.gl-bullets strong { color: #ffffff; }
.gl-alts { margin: 10px 0 8px; }
.gl-alt { margin-bottom: 38px; }
.gl-alt-name { margin: 0 0 14px; color: var(--accent); font-size: 22px; font-weight: 700; }
.gl-alt-media { display: grid; grid-template-columns: minmax(0, 1fr) 136px; gap: 22px; align-items: start; margin-bottom: 18px; }
.gl-shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-card); }
.gl-thumb-col { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.gl-thumb { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-md); }
.gl-thumb .ph-label { font-size: 14px; }
.gl-play { color: var(--accent); font-size: 12.5px; font-style: italic; font-weight: 600; line-height: 1.3; text-align: center; }
.gl-provider { color: var(--fg-dim); }
.gl-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-card); }
.gl-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
.gl-table th { padding: 14px 16px; border-bottom: 1px solid var(--border-hi); background: var(--surface-control); color: #ffffff; text-align: left; white-space: nowrap; }
.gl-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--fg-dim); line-height: 1.5; vertical-align: top; }
.gl-table tr:last-child td { border-bottom: 0; }
.gl-table td.first { color: #ffffff; font-weight: 600; white-space: nowrap; }
.gl-table tr.hl td { background: var(--accent-soft); color: #ffffff; font-weight: 600; }
.gl-table tr.hl td.first { color: var(--accent); }
.gl-cta { margin: 34px 0; text-align: center; }
.gl-promo-strip { position: relative; height: 96px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-card); margin: 30px 0; }
.gl-bio { display: flex; align-items: center; gap: 24px; padding: 28px; border: 1px solid var(--border); border-radius: var(--r-card); background: radial-gradient(140% 120% at 0 0, #fa114f1a, transparent 55%), #0a0a0a; }
.gl-bio-logo-wrap { flex-shrink: 0; width: 96px; height: 96px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: var(--r-card); background: #000000; }
.gl-bio-logo { width: 70px; height: auto; }
.gl-bio-logo.gl-bio-photo { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-card) - 2px); }
.gl-bio-kicker { color: var(--fg-dimmer); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.gl-bio h3 { margin: 4px 0 8px; color: var(--accent); font-size: 21px; }
.gl-bio h3 a { color: inherit; }
.gl-bio h3 a:hover { color: var(--fg); }
.gl-bio p { margin: 0 0 15px; color: var(--fg-dim); font-size: 15px; line-height: 1.6; }
.gl-bio-social { display: flex; gap: 9px; }
.gl-bio-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--r-full); background: var(--surface-control); color: var(--fg); text-decoration: none; }
.gl-bio-social a:hover { color: var(--accent); }

.page-404 { padding-top: 64px; }
.nf-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 54px;
  background:
    radial-gradient(90% 120% at 88% 10%, #fa114f24, transparent 54%),
    radial-gradient(90% 100% at 5% 100%, #00ff4112, transparent 48%),
    linear-gradient(135deg, #0d0d0d, #050505 58%, #13030a);
}
.nf-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, #ffffff08 0 1px, transparent 1px 14px);
  opacity: 0.42;
  pointer-events: none;
}
.nf-copy, .nf-machine { position: relative; z-index: 1; }
.nf-copy { max-width: 680px; }
.nf-copy h1 { margin: 16px 0 16px; font-size: clamp(42px, 6vw, 76px); font-weight: 900; line-height: 0.98; letter-spacing: 0; text-wrap: balance; }
.nf-copy p { max-width: 620px; margin: 0 0 26px; color: var(--fg-dim); font-size: 19px; line-height: 1.62; }
.not-found-search { max-width: 640px; margin-bottom: 0; }
.nf-actions { margin-top: 18px; }
.nf-ghost { border: 1px solid var(--border-hi); background: #ffffff10; color: #ffffff; }
.nf-ghost:hover { background: var(--surface-control-hi); }
.nf-machine {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-card);
  background: linear-gradient(180deg, #202020, #090909);
  box-shadow: inset 0 1px 0 #ffffff1a, 0 24px 60px -32px #000000;
}
.nf-score {
  color: var(--primary);
  font-size: 92px;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 0 32px #fa114f55;
}
.nf-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.nf-reels span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid #ffffff24;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #111111;
  font-size: 52px;
  font-weight: 900;
}
.nf-ticket {
  padding: 16px;
  border: 1px dashed #ffffff40;
  border-radius: var(--r-md);
  background: #00000080;
  text-align: center;
}
.nf-ticket span { display: block; color: var(--fg-dimmer); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.nf-ticket strong { display: block; margin-top: 4px; color: var(--secondary); font-size: 18px; }
.nf-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.nf-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-raised);
  color: #ffffff;
  font-weight: 700;
}
.nf-links a:hover { border-color: var(--accent); color: var(--accent); }
.nf-links span { color: var(--accent); }
.pagination, .nav-links, .pager { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pager-full { grid-column: 1 / -1; width: 100%; }
.page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-raised);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
}
.page-numbers:hover:not(.current) { border-color: var(--accent); color: var(--accent); }
.page-numbers.current { background: var(--primary); border-color: var(--primary); color: #ffffff; }

.foot {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(80% 100% at 8% 0, color-mix(in srgb, var(--primary) 8%, transparent), transparent 62%),
    var(--bg);
}
.foot-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: var(--grid-gap-wide) 24px; }
.foot-top { display: grid; grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr); gap: var(--grid-gap-wide); align-items: start; }
.foot-brand { display: inline-flex; width: fit-content; border-radius: var(--r-sm); }
.foot-logo { width: auto; height: 36px; }
.foot-heading { margin: 0 0 var(--grid-gap-compact); color: var(--fg); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.foot-links ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap-dense) var(--grid-gap); margin: 0; padding: 0; list-style: none; }
.foot-links li { min-width: 0; }
.foot-links a { color: var(--fg-dim); font-size: 14px; font-weight: 500; line-height: 1.4; transition: color var(--dur) var(--ease); }
.foot-links a:hover { color: var(--primary); }
.foot-brand:focus-visible,
.foot-links a:focus-visible,
.foot-service:focus-visible,
.foot-partners a:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
.foot-services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap-compact); margin-top: var(--grid-gap-wide); }
.foot-service {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--grid-gap-compact);
  align-items: center;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--grid-gap-compact);
  background: color-mix(in srgb, var(--surface-raised) 84%, transparent);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.foot-service:hover { border-color: var(--border-hi); background: var(--surface-raised); transform: translateY(-2px); }
.foot-service-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--r-md); background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); }
.foot-service-icon .nav-ico { width: 20px; height: 20px; }
.foot-service-copy { min-width: 0; }
.foot-service-label { display: block; margin-bottom: 4px; color: var(--fg-dim); font-size: 13px; line-height: 1.35; }
.foot-service strong { display: block; overflow-wrap: anywhere; color: var(--fg); font-size: 17px; line-height: 1.3; }
.foot-service-arrow { color: var(--fg-dimmer); transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.foot-service-arrow .nav-ico { width: 18px; height: 18px; }
.foot-service:hover .foot-service-arrow { color: var(--primary); transform: translateX(3px); }
.foot-service--payment .foot-service-icon { background: color-mix(in srgb, var(--secondary) 12%, transparent); color: var(--secondary); }
.foot-service--payment:hover .foot-service-arrow { color: var(--secondary); }
.foot-legal { margin-top: var(--grid-gap); border-top: 1px solid var(--border); padding-top: var(--grid-gap); }
.foot-notice { margin: 0; color: var(--fg); font-size: 15px; font-weight: 700; line-height: 1.5; }
.foot-eligibility { margin: var(--grid-gap-dense) 0 0; color: var(--fg-dim); font-size: 14px; font-weight: 600; line-height: 1.5; }
.foot-partners { display: flex; flex-wrap: wrap; gap: 5px; margin: var(--grid-gap-compact) 0 0; color: var(--fg-dim); font-size: 14px; line-height: 1.5; }
.foot-partners a { color: var(--fg); font-weight: 700; text-decoration: underline; text-decoration-color: var(--border-hi); text-underline-offset: 3px; }
.foot-partners a:hover { color: var(--primary); text-decoration-color: currentColor; }
.foot-disclosure { max-width: 1000px; margin: var(--grid-gap-compact) 0 0; color: var(--fg-dimmer); font-size: 13px; line-height: 1.65; }
.foot-copy { margin: var(--grid-gap-compact) 0 0; color: var(--fg-dimmer); font-size: 12px; line-height: 1.5; }

@media (min-width: 934px) {
  .page-shell { padding-bottom: 48px; }
  .page-shell--home { padding-bottom: var(--grid-gap); }
  .page-shell--hub .cat-layout > .pager-full { margin-top: var(--grid-gap); }
  .page-shell--single .cat-layout {
    grid-template-columns: minmax(0, 760px) 300px;
    justify-content: center;
    column-gap: var(--grid-gap);
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  .anim { animation: fadeUp 0.5s var(--ease) both; }
}

@media screen and (max-width: 782px) {
  body.admin-bar .hdr { top: 46px; }
}

@media (max-width: 933px) {
  :root {
    --grid-gap-wide: 28px;
    --grid-gap: 24px;
    --grid-gap-compact: 16px;
    --sticky-header-height: 64px;
    --section-gap-compact: 34px;
  }
  .hdr-inner { position: relative; height: var(--sticky-header-height); padding: 0 14px; gap: 10px; }
  .global-signup--strip { top: var(--sticky-header-height); }
  body.admin-bar .global-signup--strip { top: calc(var(--sticky-header-height) + 32px); }
  .burger { display: grid; }
  .brand { order: 1; min-width: 0; margin-right: auto; }
  .brand-logo { height: 28px; }
  .hdr-actions { order: 2; gap: 8px; }
  .burger { order: 3; flex-shrink: 0; }
  .nav { display: none; }
  .menu-is-open .menu-open { display: none; }
  .menu-is-open .menu-close { display: grid; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-raised);
    box-shadow: 0 20px 40px -16px #000000dd;
  }
  .menu-is-open .mobile-menu { display: grid; }
  .mm-group {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: #0d0d0d;
  }
  .mm-group.has-children { grid-column: 1 / -1; }
  .mm-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px;
    color: var(--fg);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .mm-item .nav-ico { width: 16px; height: 16px; }
  .mm-item.active { background: var(--primary); color: #ffffff; }
  .mm-sub { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 10px 12px; }
  .mm-sub a { padding: 7px 10px; border-radius: var(--r-full); background: var(--surface-control); color: var(--fg-dim); font-size: 12.5px; font-weight: 600; }
  .hdr-search-form.search-is-open {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface-raised);
    box-shadow: 0 14px 30px -16px #000000dd;
  }
  .hdr-search-form.search-is-open .hdr-search { flex: 1; width: auto; }
  .crumb { flex-wrap: nowrap; gap: 6px; overflow: hidden; white-space: nowrap; }
  .crumb a,
  .crumb span { flex-shrink: 0; }
  .crumb > span:last-child {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .with-rail, .cat-layout { grid-template-columns: 1fr; }
  .cat-layout { row-gap: var(--grid-gap); }
  .cat-layout > .sidenav,
  .cat-layout > .article-sidebar-stack,
  .cat-layout > .gl-body,
  .cat-layout > .article-main,
  .cat-layout > .pager-full { grid-column: auto; grid-row: auto; }
  .cat-layout > .sidenav {
    order: 0;
    min-width: 0;
    max-width: 100%;
  }
  .cat-layout > .article-sidebar-stack {
    position: static;
    order: 0;
    min-width: 0;
    max-width: 100%;
  }
  .cat-layout > .gl-body,
  .cat-layout > .article-main { order: 1; }
  .cat-layout > .pager-full { order: 2; margin-top: 0; }
  .cat-layout > .sidenav-mobile-tail,
  .cat-layout > .mobile-tail-widget {
    order: 3;
    margin-top: 6px;
  }
  .desktop-sidebar-only { display: none; }
  .sidebar-offer,
  .article-sidebar-stack--offer-only { display: none; }
  .mobile-tail-widget { display: block; }
  .nf-hero { grid-template-columns: 1fr; min-height: 0; padding: 38px; }
  .nf-machine { min-height: 300px; }
  .nf-links { grid-template-columns: repeat(2, 1fr); }
  .rail { display: none; }
  .sidenav, .hs-intro { position: static; }
  .sidenav-mobile-collapsible {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }
  .sidenav-mobile-details,
  .sidenav-mobile-body,
  .toc-section-details,
  .toc-section-list {
    min-width: 0;
    max-width: 100%;
  }
  .sidenav-mobile-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    padding: 13px 14px;
    color: var(--fg);
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
  }
  .sidenav-mobile-summary::-webkit-details-marker { display: none; }
  .sidenav-mobile-summary span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sidenav-mobile-summary:after {
    content: "";
    display: grid;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    place-items: center;
    border-radius: var(--r-full);
    color: var(--fg-dim);
    background:
      linear-gradient(currentColor 0 0) center / 10px 2px no-repeat,
      linear-gradient(currentColor 0 0) center / 2px 10px no-repeat,
      var(--surface-control);
  }
  .sidenav-mobile-details[open] > .sidenav-mobile-summary:after {
    background:
      linear-gradient(currentColor 0 0) center / 10px 2px no-repeat,
      var(--surface-control);
  }
  .sidenav-mobile-body {
    display: block;
    padding: 0 10px 10px;
    overflow-x: hidden;
  }
  .sidenav-mobile-body > .toc-head:first-child { display: none; }
  .sidenav-mobile-body > .sidenav-popular:first-child > .toc-head:first-child { display: none; }
  .sidenav-mobile-body .toc-item,
  .sidenav-mobile-body .toc-subitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .sidenav-mobile-body .toc-item > span:first-child,
  .sidenav-mobile-body .toc-subitem > span:first-child {
    flex: 1;
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sidenav--guide .toc-section-summary:not(.guide-chapter-heading) {
    min-height: 48px;
    padding: 13px 14px;
    color: var(--fg);
    font-size: 12.5px;
  }
  .sidenav--guide .guide-chapter-heading { margin: 0 10px 6px; }
  .sidenav--guide .guide-chapter-heading:after {
    display: block;
    margin-right: 14px;
    color: var(--fg);
  }
  .sidenav--guide .toc-section-list,
  .sidenav--guide .guide-chapter-tree {
    padding: 0 10px 10px;
  }
  .rv-grid { columns: 2; }
}

@media (max-width: 760px) {
  :root {
    --h1-size: 38px;
    --grid-gap-wide: 24px;
    --grid-gap: 18px;
    --grid-gap-compact: 14px;
    --grid-gap-dense: 10px;
    --section-gap-compact: 30px;
  }
  .wrap {
    padding-right: 16px;
    padding-left: 16px;
  }
  .page-shell { padding-bottom: 28px; }
  .guide-chapter-nav { grid-template-columns: 1fr; }
  .guide-chapter-nav__link--next { grid-column: auto; }
  .guide-inline-toc__list { grid-template-columns: 1fr; }
  .page-shell--home { padding-bottom: var(--grid-gap); }
  .cat-layout { row-gap: var(--grid-gap-compact); }
  .foot { margin-top: 20px; }
  .foot-inner { padding: var(--grid-gap) 16px; }
  .foot-top { grid-template-columns: 1fr; gap: var(--grid-gap); }
  .foot-logo { height: 32px; }
  .foot-links ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap-dense) var(--grid-gap-compact); }
  .foot-links a { font-size: 13px; }
  .foot-services { grid-template-columns: 1fr; margin-top: var(--grid-gap); }
  .foot-service { padding: var(--grid-gap-compact); }
  .foot-legal { margin-top: var(--grid-gap); padding-top: var(--grid-gap); }
  .foot-disclosure { line-height: 1.6; }
  .post-grid, .post-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .global-signup { margin-top: 12px; margin-bottom: 16px; }
  .global-signup .signup { flex-wrap: nowrap; gap: 10px; padding: 12px; border-radius: var(--r-md); }
  .global-signup .signup-copy { min-width: 0; }
  .global-signup .signup-copy .lead { font-size: 9px; letter-spacing: 0.1em; }
  .global-signup .signup-copy .big { font-size: 19px; }
  .global-signup .signup .terms { margin-top: 4px; font-size: 8px; line-height: 1.25; white-space: normal; }
  .global-signup .btn { flex-shrink: 0; padding: 8px 11px; font-size: 11px; }
  .global-signup--strip { margin: 0; }
  .global-signup--strip .signup--top-strip { flex-wrap: wrap; gap: 10px 14px; padding: 10px 14px; border-radius: 0; }
  .global-signup--strip .signup-strip-copy { font-size: 12px; }
  .global-signup--strip .signup-strip-button { padding: 8px 14px; font-size: 11.5px; }
  .hero-split, .article-head { grid-template-columns: 1fr; }
  .inf-directory-grid { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; gap: var(--grid-gap); padding: var(--grid-gap); }
  .profile-hero-media { max-width: 260px; }
  .rv-hero { grid-template-columns: 1fr; gap: var(--grid-gap); }
  .hero-split .feature { min-height: 320px; }
  .hero-split .stack { grid-template-rows: auto; }
  .arch-feature-link { grid-template-columns: 1fr; }
  [data-ahero="split"].article-head {
    gap: var(--grid-gap-compact);
    margin-bottom: var(--grid-gap);
    min-height: 0;
    padding: var(--grid-gap-compact);
  }
  [data-ahero="split"] .ah-text { padding: 0; }
  .article-head .ah-media {
    width: 100%;
    max-height: none;
    margin: 0;
    aspect-ratio: 16 / 9;
  }
  [data-ahero="card"].article-head, [data-ahero="compact"].article-head { grid-template-columns: 1fr; }
  [data-ahero="card"] .ah-text { padding: 24px; }
  [data-ahero="card"] .ah-media { min-height: 200px; }
  [data-ahero="compact"] .ah-media { order: 0; width: 100%; max-height: 200px; aspect-ratio: 16 / 9; }
  [data-ahero="cover"] .ah-text { padding: 26px; }
  .best-games-term-grid { grid-template-columns: 1fr; }
  .page-shell--best-games .best-games-section { margin-top: var(--section-gap-compact); }
  .page-shell--best-games .hub-subsection { margin-top: var(--section-gap-compact); }
  .page-shell--best-games .hub-subsection-intro {
    margin-bottom: var(--grid-gap-dense);
    font-size: 12.5px;
    line-height: 1.45;
  }
  .page-shell--best-games .best-games-term-grid { gap: var(--grid-gap-dense); }
  .page-shell--best-games .best-games-term-card {
    gap: var(--grid-gap-dense);
    padding: var(--grid-gap-dense);
  }
  .page-shell--best-games .best-games-term-title { font-size: 15.5px; }
  .page-shell--best-games .best-games-term-card .count-pill {
    padding: 4px 7px;
    font-size: 10px;
  }
  .page-shell--best-games .best-games-term-intro {
    font-size: 12px;
    line-height: 1.35;
  }
  .page-shell--best-games .best-games-term-post {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: var(--grid-gap-dense);
    padding: 6px;
  }
  .page-shell--best-games .best-games-term-thumb {
    width: 48px;
    height: 36px;
  }
  .page-shell--best-games .best-games-term-all { font-size: 12px; }
}

@media (max-width: 600px) {
  .wrap.front-page { padding-right: 14px; padding-left: 14px; }
  .signup .terms { white-space: normal; }
  .cat-hero,
  .page-shell--compact-hub .cat-hero {
    padding: 20px 16px;
  }
  .arch-feature-media { min-height: 180px; aspect-ratio: 16 / 9; }
  .arch-feature-body { padding: 16px; }
  .gl-alt-media { grid-template-columns: 1fr; }
  .gl-thumb-col { flex-direction: row; }
  .gl-thumb { width: 120px; }
  .page-404 { padding-top: 32px; }
  .nf-hero { padding: 28px 22px; }
  .content-search__controls { align-items: stretch; flex-direction: column; }
  .content-search__controls .btn,
  .nf-actions .btn { width: 100%; }
  .nf-links { grid-template-columns: 1fr; }
  .rv-grid { columns: 1; }
}

@media (max-width: 520px) {
  .post-grid, .post-grid.cols-2 { grid-template-columns: 1fr; }
  .article-deck {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.48;
  }
  .article-meta-rule {
    margin-top: 18px;
  }
  .article-head .article-meta {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .article-author,
  .article-date {
    gap: 6px;
  }
  .article-author {
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .article-date {
    flex: 0 0 auto;
  }
  .article-author-mark {
    display: none;
  }
  .article-meta-dot {
    width: 4px;
    height: 4px;
    flex-basis: 4px;
  }
  .article-meta-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
  .mcluck-key-takeaways { padding: 15px 16px; }
  .mcluck-key-takeaways__title { font-size: 19px; }
  .mcluck-key-takeaways__verdict { font-size: 15.5px; }
  .mcluck-key-takeaways__faq dt,
  .mcluck-key-takeaways__faq dd { font-size: 15px; }
  .inf-card-link { grid-template-columns: 1fr; }
  .inf-card-media { min-height: 210px; aspect-ratio: 16 / 10; }
  .hero-split .stack .card-link { flex-direction: column; }
  .hero-split .stack .card-media { width: 100%; aspect-ratio: 16 / 10; }
  .gl-bio { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 460px) {
  .hdr-inner { padding: 0 10px; gap: 8px; }
  .brand-logo { height: 24px; }
  .icon-btn { width: 36px; height: 36px; }
  .btn-play { padding: 9px 12px; font-size: 13px; }
  .page-shell { padding-bottom: 20px; }
  .foot { margin-top: 12px; }
  .foot-inner { padding: var(--grid-gap) 14px; }
  .foot-services { gap: var(--grid-gap-dense); }
  .foot-service { grid-template-columns: auto minmax(0, 1fr); gap: var(--grid-gap-dense); padding: var(--grid-gap-dense); }
  .foot-service-arrow { display: none; }
  .page-shell--best-games .best-games-term-post-date { display: none; }
  .global-signup .signup-copy .big { font-size: 17px; }
}

@media (max-width: 933px) {
  .page-shell--compact-hub { padding-bottom: 36px; }
  .page-shell--compact-hub .cat-hero {
    margin-bottom: 0;
    padding: 24px 20px;
  }
  .page-shell--compact-hub .cat-hero .page-title {
    margin: 8px 0;
    font-size: 30px;
  }
  .page-shell--compact-hub .cat-hero-sub {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .compact-hub-nav-item {
    min-height: 29px;
    font-size: 11px;
  }
  .compact-hub-nav {
    gap: 6px;
    justify-content: flex-start;
    margin: 18px 0;
  }
  .compact-hub-nav-item { padding: 7px 10px; }
}

@media (max-width: 760px) {
  .page-shell--compact-hub .cat-hero {
    padding: 20px 16px;
  }
  .page-shell--compact-hub .archive-toolbar {
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .page-shell--compact-hub .archive-count { font-size: 12px; }
  .page-shell--compact-hub .archive-sort {
    gap: 6px;
    font-size: 12px;
  }
  .page-shell--compact-hub .archive-sort select {
    min-width: 116px;
    padding: 7px 28px 7px 10px;
    font-size: 12px;
  }
  .page-shell--compact-hub .arch-feature {
    margin-bottom: 12px;
  }
  .page-shell--compact-hub .arch-feature-link {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 132px;
  }
  .page-shell--compact-hub .arch-feature-media {
    min-height: 132px;
    aspect-ratio: auto;
  }
  .page-shell--compact-hub .arch-feature-body {
    justify-content: center;
    min-width: 0;
    gap: 6px;
    padding: 12px;
  }
  .page-shell--compact-hub .arch-feature-body .eyebrow {
    font-size: 9px;
  }
  .page-shell--compact-hub .arch-feature-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .page-shell--compact-hub .arch-feature .card-excerpt {
    font-size: 11.5px;
    line-height: 1.35;
    -webkit-line-clamp: 1;
  }
  .page-shell--compact-hub .arch-feature-actions {
    margin-top: 0;
    gap: 8px;
  }
  .page-shell--compact-hub .arch-feature-actions .btn { display: none; }
  .page-shell--compact-hub .arch-feature-actions .meta { font-size: 10.5px; }
  .article-strip-grid,
  .article-strip-grid.cols-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .article-strip-grid > .card,
  .article-strip-grid > .card:nth-child(n+5) {
    grid-column: auto;
  }
  .article-strip-grid .card {
    border-radius: var(--r-md);
  }
  .article-strip-grid .card:hover {
    transform: none;
  }
  .article-strip-grid .card-link {
    display: flex;
    flex-direction: row;
    min-height: 104px;
  }
  .article-strip-grid .card-media {
    flex: 0 0 108px;
    width: 108px;
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 0;
  }
  .article-strip-grid .card-badges {
    top: 7px;
    left: 7px;
  }
  .article-strip-grid .badge {
    padding: 4px 6px;
    font-size: 8px;
  }
  .article-strip-grid .card-body {
    min-width: 0;
    gap: 5px;
    padding: 10px 11px;
  }
  .article-strip-grid .card-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .article-strip-grid .card-excerpt {
    font-size: 11.5px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }
  .article-strip-grid .card-foot { padding-top: 0; }
  .article-strip-grid .meta { font-size: 10.5px; }
  .article-strip-grid .ph-label { font-size: 16px; }
}

@media (max-width: 600px) {
  .wrap.page-shell--compact-hub {
    padding-right: 14px;
    padding-left: 14px;
  }
  .page-shell--compact-hub .cat-hero {
    padding: 20px 16px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .global-signup--strip { top: 110px; }
}

@media (max-width: 460px) {
  .page-shell--compact-hub .cat-hero .page-title {
    font-size: 26px;
  }
  .page-shell--compact-hub .cat-hero-sub {
    font-size: 12.5px;
  }
  .page-shell--compact-hub .arch-feature-link {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 118px;
  }
  .page-shell--compact-hub .arch-feature-media {
    min-height: 118px;
  }
  .page-shell--compact-hub .arch-feature-title {
    font-size: 14px;
  }
  .article-strip-grid .card-link {
    min-height: 94px;
  }
  .article-strip-grid .card-media {
    flex-basis: 94px;
    width: 94px;
  }
  .article-strip-grid .card-title {
    font-size: 13.5px;
  }
  .article-strip-grid .card-excerpt {
    -webkit-line-clamp: 1;
  }
}
