:root {
  --bg: #070808;
  --panel: #0d1010;
  --panel-2: #121414;
  --line: #3c3429;
  --line-soft: #27231e;
  --gold: #d9b879;
  --gold-bright: #f2d59a;
  --ivory: #f1e6d2;
  --muted: #aaa297;
  --red: #d83a35;
  --red-dark: #641918;
  --display: "Cinzel", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;
  --shadow: 0 18px 55px #0009;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: #7b5a34 #090a0a;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: #090a0a;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b673c, #52221f);
  border: 2px solid #090a0a;
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d0a866, #8d2928);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.55;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 12px;
  top: -80px;
  background: var(--gold-bright);
  color: #111;
  padding: 10px 16px;
  border-radius: 4px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #070808ed;
  border-bottom: 1px solid #6e5230;
  backdrop-filter: blur(15px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #9a733f;
  background: radial-gradient(circle, #7c191b33, transparent 68%);
  clip-path: polygon(50% 0, 90% 20%, 100% 70%, 50% 100%, 0 70%, 10% 20%);
}
.brand b {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: #9c8f7e;
  font: 600 8px/1.4 var(--body);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.header-actions {
  display: flex;
  gap: 6px;
}
.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  font-size: 26px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 555px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid #4d3423;
}
.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #05060611 22%, #070808 98%),
    linear-gradient(90deg, #0506064d, #05060600 50%, #05060666),
    url("assets/hero-skyline.png") center 24% / cover no-repeat;
  filter: saturate(1.08);
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, #c72d2533, transparent 24%),
    linear-gradient(180deg, transparent 42%, #070808 94%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 170px 20px 42px;
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font: 700 11px/1 var(--body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow:before,
.eyebrow:after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.hero h1,
.section-heading h2 {
  font-family: var(--display);
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(35px, 10vw, 62px);
  line-height: 1.03;
  margin: 14px 0 10px;
  text-shadow: 0 4px 24px #000;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero-copy > p {
  margin: 0 0 26px;
  color: #d6cabb;
}
.search-box {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: #090b0bea;
  border: 1px solid #6e5a40;
  border-radius: 7px;
  padding: 0 16px;
  box-shadow: var(--shadow);
}
.search-box > span {
  font-size: 28px;
  color: var(--gold);
}
.search-box input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ivory);
  font-size: 15px;
}
.search-box input::placeholder {
  color: #c7baa8;
}
.search-box kbd {
  display: none;
  color: #7f786f;
  border: 1px solid #3d3934;
  border-radius: 4px;
  padding: 2px 7px;
}
.page-shell {
  max-width: 1320px;
  margin: auto;
}
.desktop-nav {
  display: none;
}
.content {
  padding: 34px 18px 70px;
}
.section-heading h2 {
  font-size: 30px;
  line-height: 1.15;
  margin: 8px 0 12px;
  color: var(--gold-bright);
}
.section-heading > p {
  color: var(--muted);
  margin: 0 0 24px;
}
.quick-path {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 4px 2px 16px;
  scrollbar-color: #65523a #171717;
  scroll-snap-type: x mandatory;
}
.quick-path a {
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: linear-gradient(135deg, #141717, #0b0d0d);
  border: 1px solid var(--line);
  border-radius: 7px;
  scroll-snap-align: start;
}
.quick-path b {
  width: 34px;
  height: 34px;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-family: var(--display);
}
.quick-path span {
  font-family: var(--display);
  font-size: 14px;
}
.quick-path small {
  display: block;
  color: #8f887e;
  font: 600 9px/1.5 var(--body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.quick-path i {
  align-self: center;
  color: var(--red);
  font: normal 30px/1 var(--display);
}
.guide-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.guide-card {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #101212;
  isolation: isolate;
  box-shadow: 0 8px 30px #0004;
  transition: 0.22s ease;
}
.guide-card:hover,
.guide-card:focus-visible {
  border-color: #a87b44;
  transform: translateY(-2px);
}
.guide-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.guide-card img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  z-index: -2;
}
.guide-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #0d0f0f 36%, #0d0f0fd9 58%, #0d0f0f00),
    linear-gradient(0deg, #0708089e, transparent);
}
.guide-card .card-copy {
  display: block;
  padding: 25px 22px;
  width: 72%;
}
.guide-card .card-icon {
  color: var(--gold);
  font-size: 23px;
}
.guide-card h3 {
  font: 600 20px/1.2 var(--display);
  margin: 8px 0 6px;
  color: #f0dfbd;
}
.guide-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #aca398;
  margin: 0;
}
.guide-card .arrow {
  position: absolute;
  right: 13px;
  bottom: 12px;
  color: var(--red);
  font-size: 28px;
}
.drawer {
  position: fixed;
  z-index: 60;
  inset: 0 0 0 auto;
  width: min(88vw, 370px);
  padding: 22px;
  background: #090b0b;
  box-shadow: -25px 0 70px #000;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  border-left: 1px solid #69432c;
  display: flex;
  flex-direction: column;
}
.drawer.open {
  transform: none;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 600 20px var(--display);
  color: var(--gold-bright);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer nav {
  display: grid;
  padding: 14px 0;
  overflow: auto;
}
.drawer nav a {
  padding: 13px 10px;
  border-bottom: 1px solid #1d1f1f;
  color: #d5c9b8;
}
.drawer nav a:hover {
  color: var(--gold-bright);
  background: #251214;
}
.drawer-foot {
  margin-top: auto;
  display: flex;
  gap: 20px;
  color: #948c83;
  font-size: 13px;
}
.scrim {
  position: fixed;
  z-index: 50;
  inset: 0;
  border: 0;
  background: #000b;
}
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-results span {
  font-size: 48px;
  color: var(--gold);
}
.no-results h3 {
  font: 600 24px var(--display);
  color: var(--ivory);
  margin: 8px;
}
.no-results p {
  margin: 0;
}
footer {
  border-top: 1px solid #352b21;
  padding: 40px 20px 36px;
  background: #050606;
  display: grid;
  gap: 28px;
}
.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #b8afa3;
  font-size: 13px;
}
footer p {
  color: #716d67;
  font-size: 11px;
  margin: 0;
}
@media (min-width: 720px) {
  .site-header {
    height: 78px;
    padding: 0 32px;
  }
  .brand b {
    font-size: 20px;
  }
  .hero {
    min-height: 610px;
  }
  .hero-copy {
    padding-bottom: 60px;
  }
  .content {
    padding: 52px 32px 90px;
  }
  .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
  }
  .section-heading > p {
    max-width: 500px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .guide-card {
    min-height: 205px;
  }
  .guide-card .card-copy {
    padding: 32px;
  }
  .guide-card h3 {
    font-size: 24px;
  }
  .guide-card p {
    font-size: 13px;
  }
  .search-box kbd {
    display: block;
  }
  footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 46px 32px;
  }
  footer p {
    grid-column: 1/-1;
  }
}
@media (min-width: 1080px) {
  .menu-button {
    display: none;
  }
  .site-header {
    padding: 0 46px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-copy {
    margin-left: calc((100vw - 1220px) / 2 + 280px);
    text-align: left;
    max-width: 700px;
  }
  .hero-copy .eyebrow:before {
    display: none;
  }
  .page-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 48px;
    padding: 0 40px;
  }
  .desktop-nav {
    display: block;
    position: sticky;
    top: 108px;
    align-self: start;
    padding: 50px 0;
  }
  .desktop-nav > p {
    font: 700 11px var(--body);
    letter-spacing: 0.18em;
    color: #746f68;
    text-transform: uppercase;
  }
  .desktop-nav nav {
    display: grid;
  }
  .desktop-nav nav a {
    padding: 11px 10px;
    border-left: 1px solid #35302a;
    color: #aaa297;
    font-size: 13px;
  }
  .desktop-nav nav a:hover,
  .desktop-nav nav a.active {
    border-left: 2px solid var(--red);
    color: var(--gold-bright);
    background: linear-gradient(90deg, #5f18172e, transparent);
  }
  .nav-help {
    margin-top: 30px;
    padding: 18px;
    border: 1px solid var(--line-soft);
    background: #0d0f0f;
  }
  .nav-help span {
    display: block;
    color: #89827a;
    font-size: 11px;
  }
  .nav-help a {
    display: block;
    color: var(--gold);
    font-size: 12px;
    margin-top: 7px;
  }
  .content {
    padding: 60px 0 100px;
  }
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .guide-card {
    min-height: 220px;
  }
  .quick-path a {
    flex: 1;
  }
  .quick-path {
    overflow: visible;
  }
  .drawer,
  .scrim {
    display: none !important;
  }
}

/* Game discovery and press pages */
.game-discovery {
  padding: 44px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(115, 10, 18, .14), rgba(8, 9, 9, .98) 55%), #080909;
}
.game-discovery-inner {
  width: min(1160px, 100%);
  margin: auto;
  display: grid;
  gap: 24px;
  align-items: center;
}
.game-discovery-inner > img {
  width: min(320px, 70vw);
  height: auto;
  object-fit: contain;
  justify-self: center;
}
.game-discovery h2,
.marketing-page h1,
.marketing-page h2 {
  font-family: var(--display);
  color: var(--gold-bright);
}
.game-discovery h2 { margin: 8px 0 12px; font-size: clamp(28px, 7vw, 48px); line-height: 1.08; }
.game-discovery p { max-width: 720px; color: #bbb3aa; line-height: 1.7; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #8d6a3f;
  background: #17130f;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .03em;
}
.cta-button.primary { border-color: #d03b3f; background: #991f29; color: #fff8ec; }
.marketing-page { max-width: 1120px; margin: auto; padding: 34px 20px 80px; }
.marketing-hero { position: relative; overflow: hidden; min-height: 520px; display: grid; align-items: end; border: 1px solid #4b3b28; background: #0b0c0c; }
.marketing-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.marketing-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 5%, rgba(5,6,6,.24) 34%, #070808 100%); }
.marketing-hero-copy { position: relative; z-index: 1; max-width: 800px; padding: clamp(28px, 7vw, 70px); }
.marketing-hero h1 { margin: 8px 0 16px; font-size: clamp(42px, 10vw, 78px); line-height: .98; }
.marketing-hero p { max-width: 680px; color: #d2cbc2; font-size: clamp(17px, 3vw, 21px); line-height: 1.55; }
.marketing-section { padding: 54px 0; border-bottom: 1px solid var(--line-soft); }
.marketing-section > h2 { margin: 0 0 16px; font-size: clamp(28px, 6vw, 42px); }
.marketing-section > p { max-width: 820px; color: #b8b0a7; line-height: 1.75; }
.feature-grid, .facts-grid, .press-assets { display: grid; gap: 14px; margin-top: 26px; }
.feature-card, .fact-card, .press-asset { padding: 24px; border: 1px solid #3e3529; background: #0d0f0f; }
.feature-card h3, .fact-card b, .press-asset h3 { color: var(--gold-bright); font-family: var(--display); }
.feature-card p, .fact-card span, .press-asset p { color: #aaa299; line-height: 1.65; }
.cinematic-video { width: 100%; margin-top: 24px; border: 1px solid #5b422a; background: #000; box-shadow: 0 25px 80px rgba(0,0,0,.45); }
.keyword-copy { columns: 1; column-gap: 36px; }
.keyword-copy p { break-inside: avoid; margin-top: 0; color: #b8b0a7; line-height: 1.75; }
.store-note { margin-top: 14px; color: #827b74; font-size: 13px; }
.press-asset img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 18px; }
@media (min-width: 720px) {
  .game-discovery-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .facts-grid { grid-template-columns: repeat(4, 1fr); }
  .press-assets { grid-template-columns: repeat(3, 1fr); }
  .keyword-copy { columns: 2; }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Guide articles */
.article {
  max-width: 920px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #837d75;
  font-size: 12px;
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: var(--gold);
}
.article-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: end;
  background: #0d0f0f;
  margin-bottom: 30px;
}
.article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}
.article-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #080909 3%, #080909b8 42%, #08090919 100%),
    linear-gradient(90deg, #080909c9, transparent);
}
.article-hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: min(100%, 730px);
}
.article-hero h1 {
  font: 600 clamp(33px, 8vw, 58px)/1.05 var(--display);
  color: var(--gold-bright);
  margin: 10px 0;
}
.article-hero p {
  color: #d2c5b4;
  margin: 0;
  max-width: 62ch;
}
.article-layout {
  display: grid;
  gap: 28px;
}
.article-body {
  min-width: 0;
}
.article-body section {
  scroll-margin-top: 100px;
  margin: 0 0 42px;
}
.article-body h2 {
  font: 600 28px/1.2 var(--display);
  color: #ead1a2;
  margin: 0 0 14px;
}
.article-body h3 {
  font: 600 18px/1.3 var(--display);
  color: #d8bc86;
  margin: 26px 0 8px;
}
.article-body p,
.article-body li {
  color: #bbb2a6;
  font-size: 15px;
}
.article-body ul,
.article-body ol {
  padding-left: 21px;
}
.article-body li {
  margin: 8px 0;
}
.article-body strong {
  color: #e9ddca;
}
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0b0d0d;
}
.guide-table {
  width: 100%;
  min-width: 570px;
  border-collapse: collapse;
  font-size: 13px;
  color: #c8beb0;
}
.guide-table th {
  position: sticky;
  top: 0;
  padding: 12px 14px;
  background: #211614;
  color: var(--gold-bright);
  font: 600 12px var(--display);
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}
.guide-table td {
  padding: 11px 14px;
  border-top: 1px solid #29251f;
  vertical-align: top;
}
.guide-table tbody tr:nth-child(even) {
  background: #121414;
}
.guide-table tbody tr:hover {
  background: #241716;
}
.guide-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}
.directory-table {
  min-width: 760px;
}
.directory-table td:first-child {
  color: #e4c98f;
  white-space: nowrap;
}
.article-toc {
  display: none;
}
.steps {
  display: grid;
  gap: 10px;
  counter-reset: steps;
  margin: 18px 0;
}
.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 16px;
  background: linear-gradient(135deg, #121515, #0c0e0e);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
}
.step:before {
  content: counter(steps);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--red);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font: 600 17px var(--display);
}
.step h3 {
  margin: 1px 0 5px;
  font-size: 16px;
}
.step p {
  margin: 0;
  font-size: 13px;
}
.callout {
  position: relative;
  margin: 22px 0;
  padding: 18px 18px 18px 58px;
  border: 1px solid #6a4d2c;
  background: linear-gradient(135deg, #2b1716, #111313);
  border-radius: 7px;
}
.callout:before {
  content: "✦";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--red);
  font-size: 22px;
}
.callout b {
  display: block;
  font: 600 14px var(--display);
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.callout p {
  margin: 0;
  font-size: 13px;
}
.image-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.image-tile {
  min-width: 0;
  padding: 14px;
  background: #101212;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  text-align: center;
}
.image-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px #000);
}
.image-tile b {
  display: block;
  font: 600 12px/1.3 var(--display);
  color: #dcc18f;
}
.image-tile small {
  display: block;
  color: #8e877e;
  font-size: 10px;
  margin-top: 5px;
}
.compare-grid,
.set-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.compare-card,
.set-card {
  padding: 18px;
  background: #101212;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
}
.compare-card img,
.set-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  float: right;
  margin: -7px -4px 5px 12px;
}
.compare-card h3,
.set-card h3 {
  margin: 0 0 7px;
}
.compare-card p,
.set-card p {
  font-size: 13px;
  margin: 0;
}
.set-card ul {
  clear: both;
  margin-bottom: 0;
}
.related {
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.related > span {
  font: 700 10px var(--body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.related h2 {
  font: 600 24px var(--display);
  color: var(--gold-bright);
  margin: 6px 0 15px;
}
.related-links {
  display: grid;
  gap: 9px;
}
.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #101212;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: #d8c8ae;
  text-decoration: none;
}
.related-links a span {
  color: var(--red);
  font-size: 22px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}
.article-meta span {
  font-size: 10px;
  color: #928b82;
  padding: 5px 8px;
  border: 1px solid #3a342d;
  border-radius: 20px;
  background: #0a0b0b;
}
.back-home {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
}
@media (min-width: 620px) {
  .image-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .compare-grid,
  .set-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-hero-copy {
    padding: 42px;
  }
  .related-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1080px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 46px;
  }
  .article-toc {
    display: block;
    position: sticky;
    top: 112px;
    align-self: start;
    padding: 18px;
    border-left: 1px solid var(--line-soft);
  }
  .article-toc b {
    font: 600 12px var(--display);
    color: var(--gold-bright);
  }
  .article-toc nav {
    display: grid;
    margin-top: 10px;
  }
  .article-toc a {
    padding: 7px 0;
    color: #88827a;
    font-size: 11px;
  }
  .article-toc a:hover {
    color: var(--gold);
  }
  .article-hero {
    min-height: 390px;
  }
  .article-body h2 {
    font-size: 32px;
  }
}

/* Whole-game guide groups */
.guide-grid {
  display: block;
}
.guide-grid.search-results {
  display: grid;
}
.guide-group {
  margin: 28px 0 38px;
}
.guide-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.guide-group > header span {
  font: 600 17px var(--display);
  color: var(--gold-bright);
}
.guide-group > header small {
  font-size: 10px;
  color: #817a72;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.guide-group > div {
  display: grid;
  gap: 12px;
}
.nav-category {
  display: block;
  margin: 17px 10px 5px;
  color: #6f6962;
  font: 700 9px var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.drawer .nav-category {
  margin-top: 20px;
  color: #9b7749;
}
.drawer nav a {
  padding-left: 14px;
}
@media (min-width: 720px) {
  .guide-group > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .guide-grid.search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .guide-group > div {
    grid-template-columns: repeat(3, 1fr);
  }
  .guide-grid.search-results {
    grid-template-columns: repeat(3, 1fr);
  }
  .desktop-nav {
    max-height: calc(100vh - 130px);
    overflow: auto;
    padding-right: 8px;
    scrollbar-color: #7b5a34 #090a0a;
    scrollbar-width: thin;
  }
  .desktop-nav nav a {
    padding-block: 8px;
  }
}
