/* ============================================================
   BUSINESS HERALD — "THE DISPATCH" DESIGN SYSTEM
   Palette:  ink #1B1B18   parchment #EDE7D8   card #F7F4EC
             bottle green #14432F   brass #B9862F   stamp red #8C2F22
   Type:     Newsreader (display) / Work Sans (body) / Space Mono (labels)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,500&family=Work+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink: #1B1B18;
  --ink-soft: #4A473E;
  --parchment: #EDE7D8;
  --card: #F7F4EC;
  --card-line: #DCD4BE;
  --green: #14432F;
  --green-deep: #0D2E20;
  --brass: #B9862F;
  --brass-light: #D9AE5F;
  --stamp: #8C2F22;
  --stamp-deep: #6E2116;
  --cream-text: #F3EEE0;

  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max: 1300px;
  --radius: 2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stamp);
}

/* ============================= TOP STRIP ============================= */
.top-strip {
  background: var(--green-deep);
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .03em;
}

.top-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}

.top-strip .dateline {
  opacity: .75;
  white-space: nowrap;
}

.top-strip .ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.top-strip .ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 38s linear infinite;
}

.top-strip .ticker-track span {
  margin-right: 48px;
  opacity: .9;
}


@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-strip .ticker-track {
    animation: none;
  }
}

/* ============================= HEADER ============================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--green);
  z-index: 99999;

  box-shadow: 0 2px 0 rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;

}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--cream-text);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo .mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--brass-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass-light);
  flex-shrink: 0;
}

.logo .tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

nav.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav.primary-nav>ul {
  display: flex;
  gap: 2px;
}

nav.primary-nav>ul>li {
  position: relative;
}

.nav-top-link {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-text);
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-top-link:hover,
.nav-top-link:focus-visible,
li.open>.nav-top-link {
  background: rgba(243, 238, 224, .1);
  color: var(--brass-light);
}

.nav-top-link .caret {
  font-size: 9px;
  transition: transform .15s ease;
}

li.open>.nav-top-link .caret {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.subscribe-btn {
  background: var(--brass);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border: none;
  border-radius: var(--radius);
}

.subscribe-btn:hover {
  background: var(--brass-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(243, 238, 224, .4);
  color: var(--cream-text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

/* -------- mega dropdown (desktop) -------- */
.mega {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 22px 26px;
  min-width: 220px;
  box-shadow: 0 12px 28px rgba(13, 46, 32, .18);
  display: none;
  z-index: 50;
}

li.open>.mega {
  display: block;
}

.mega-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 12px;
}

.mega ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega a {
  display: block;
  padding: 6px 8px;
  margin: 0 -8px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: var(--radius);
}

.mega a:hover,
.mega a:focus-visible {
  background: var(--parchment);
  color: var(--green);
}

/* ============================= MOBILE DRAWER ============================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 46, 32, .45);
  z-index: 600;
  display: none;
}

.drawer-overlay.show {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--green-deep);
  z-index: 700;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 20px 0 60px;
}

.drawer.show {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(243, 238, 224, .15);
  margin-bottom: 8px;
}

.drawer-head .logo {
  font-size: 19px;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--cream-text);
  font-size: 22px;
  width: 36px;
  height: 36px;
}

.drawer-group {
  border-bottom: 1px solid rgba(243, 238, 224, .1);
}

.drawer-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--cream-text);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 20px;
}

.drawer-group-btn .caret {
  font-size: 10px;
  color: var(--brass-light);
  transition: transform .18s ease;
}

.drawer-group.open .drawer-group-btn .caret {
  transform: rotate(180deg);
}

.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: rgba(0, 0, 0, .15);
}

.drawer-group.open .drawer-sub {
  max-height: 400px;
}

.drawer-sub a {
  display: block;
  padding: 11px 20px 11px 34px;
  font-size: 14px;
  color: rgba(243, 238, 224, .82);
}

.drawer-sub a:active {
  color: var(--brass-light);
}

/* ============================= HERO ============================= */
.hero {
  padding: 150px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 36px;
  align-items: start;
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 4px;
  overflow: hidden;
}

.feature-media {
  aspect-ratio: 16/9;
  background:
    linear-gradient(160deg, rgba(20, 67, 47, .88), rgba(13, 46, 32, .94)),
    repeating-linear-gradient(45deg, rgba(185, 134, 47, .10) 0 2px, transparent 2px 26px);
  display: flex;
  align-items: flex-end;
  padding: 26px;
  position: relative;
}

.feature-media .eyebrow {
  color: var(--brass-light);
}

.feature-body {
  padding: 26px 28px 30px;
}

.feature-body h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  color: var(--ink);
  margin: 10px 0 12px;
}

.feature-dek {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 16px;
}

.byline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* dispatch stamp — signature element */
.stamp {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 88px;
  height: 88px;
  transform: rotate(-11deg);
  z-index: 5;
}

.stamp svg {
  width: 100%;
  height: 100%;
}

/* -------- The Wire (sidebar) -------- */
.wire {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 4px;
  padding: 22px 22px 8px;
}

.wire-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}

.wire-head h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.wire-head .eyebrow {
  font-size: 10px;
}

.wire-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-line);
}

.wire-item:last-child {
  border-bottom: none;
}

.wire-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  height: fit-content;
  white-space: nowrap;
  margin-top: 2px;
}

.tag-finance {
  background: #E7EFE6;
  color: var(--green);
}

.tag-innovation {
  background: #F3E7D6;
  color: var(--brass-light);
  color: #8A611F;
}

.tag-leadership {
  background: #F2E4E0;
  color: var(--stamp);
}

.tag-industry {
  background: #E4E9F0;
  color: #2C4A70;
}

.tag-strategy {
  background: #EFEAF2;
  color: #5B3E73;
}

.wire-item h3 {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.wire-item h3:hover {
  color: var(--stamp);
}

.wire-item time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  opacity: .7;
}

/* ============================= SECTION STRIP ============================= */
.section-block {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}

.section-head a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--stamp);
  white-space: nowrap;
}

.section-head a:hover {
  text-decoration: underline;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.story-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-thumb {
  aspect-ratio: 4/3;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.story-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 46, 32, .15) 0%, rgba(13, 46, 32, .75) 100%),
    repeating-linear-gradient(transparent 2px 22px);
}

.story-thumb .eyebrow {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: var(--brass-light);
  z-index: 2;
}

.story-copy {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-copy h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.story-copy h3:hover {
  color: var(--stamp);
}

.story-copy p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex: 1;
}

.story-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  opacity: .75;
  border-top: 1px solid var(--card-line);
  padding-top: 10px;
}

.section-block.alt {
  background: var(--card);
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
}

/* -------- category tiles (nav overview) -------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  border: 1px solid var(--card-line);
  background: var(--parchment);
  border-radius: 3px;
  padding: 20px;
}

.section-block.alt .tile {
  background: var(--card);
}

.tile-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-light);
  color: #8A611F;
  margin-bottom: 10px;
}

.tile h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tile ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tile a {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.tile a:hover {
  color: var(--stamp);
}

/* ============================= NEWSLETTER BAND ============================= */
.newsletter {
  background: var(--green);
  color: var(--cream-text);
  padding: 46px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.newsletter p {
  font-size: 14px;
  opacity: .82;
  max-width: 44ch;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  background: rgba(243, 238, 224, .08);
  border: 1px solid rgba(243, 238, 224, .3);
  color: var(--cream-text);
  padding: 11px 14px;
  border-radius: 2px;
  font-size: 14px;
  width: 260px;
  max-width: 60vw;
}

.newsletter-form input::placeholder {
  color: rgba(243, 238, 224, .55);
}

.newsletter-form button {
  background: var(--brass);
  color: var(--green-deep);
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 2px;
}

.newsletter-form button:hover {
  background: var(--brass-light);
}

/* ============================= FOOTER ============================= */
footer {
  background: var(--green-deep);
  color: rgba(243, 238, 224, .85);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(243, 238, 224, .12);
}

.footer-brand .logo {
  font-size: 21px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  opacity: .75;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-size: 13.5px;
  opacity: .82;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: .6;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 16px;
}

/* ============================= FOCUS / A11Y ============================= */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* ============================= RESPONSIVE ============================= */
@media (max-width:1080px) {
  nav.primary-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .subscribe-btn {
    display: none;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px;
  }

  .top-strip .dateline {
    display: none;
  }

  .logo {
    font-size: 20px;
  }

  .logo .tag {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stamp {
    width: 66px;
    height: 66px;
    top: 14px;
    right: 14px;
  }

  .feature-body h1 {
    font-size: 24px;
  }
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  padding: 150px 0 0 120px;
  background-color: #DCD4BE;
  margin-bottom: 20px;


}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--stamp);
}

.article-header {
  padding: 20px 0 10px;
  z-index: 1;



}

.article-header .eyebrow {
  display: inline-block;
  margin-bottom: 14px;

}

.article-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
  margin-bottom: 16px;
}

.article-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 70ch;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
  padding: 14px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  padding-bottom: 56px;
  align-items: start;
}

.article-lead-media {
  aspect-ratio: 16/9;
  border-radius: 3px;
  margin-bottom: 10px;
  background:
    linear-gradient(160deg, rgba(20, 67, 47, .9), rgba(13, 46, 32, .95)),
    repeating-linear-gradient(45deg, rgba(185, 134, 47, .10) 0 2px, transparent 2px 26px);
  position: relative;
}

.article-lead-media .stamp {
  top: 18px;
  right: 18px;
}

.article-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .75;
  margin-bottom: 30px;
}

.article-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 70ch;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 36px 0 16px;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--green);
  border-left: 3px solid var(--brass);
  padding: 4px 0 4px 24px;
  margin: 32px 0 34px;
}

.pull-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 32px;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 12px;
  border: 1px solid var(--card-line);
  border-radius: 20px;
  color: var(--ink-soft);
}

.tag-pill:hover {
  border-color: var(--stamp);
  color: var(--stamp);
}

.author-box {
  display: flex;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 3px;
  padding: 22px;
}

.author-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.author-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-box p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 3px;
  padding: 20px 20px 6px;
  margin-bottom: 22px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 6px;
}

.related-item {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--card-line);
}

.related-item:last-child {
  border-bottom: none;
}

.related-item .eyebrow {
  display: block;
  margin-bottom: 5px;
}

.related-item h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.related-item:hover h4 {
  color: var(--stamp);
}

@media (max-width:900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width:640px) {
  .pull-quote {
    font-size: 20px;
  }

  .author-box {
    flex-direction: column;
    text-align: left;
  }
}

/* ============================================================
   CATEGORY HUB ("browse this desk" index list)
   ============================================================ */
.hub-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 8px 0 22px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
}

.hub-section-title h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.hub-section-title .count {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stamp);
}

.index-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 50px;
}

.index-list__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 14px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 3px;
}

.index-list__row+.index-list__row {
  margin-top: 10px;
}

.index-list__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass);
  font-weight: 700;
  width: 28px;
  flex-shrink: 0;
}

.index-list__thumb {
  width: 64px;
  height: 64px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.index-list__row .index-list__body {
  flex: 1;
  min-width: 0;
}

.index-list__row h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.index-list__row p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

.index-list__row .preview {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--stamp);
  opacity: .85;
}

.index-list__row:hover h3 {
  color: var(--stamp);
}

.index-list__arrow {
  font-size: 18px;
  color: var(--brass);
  flex-shrink: 0;
}

.hub-hero-media {
  aspect-ratio: 21/9;
  border-radius: 4px;
  margin-bottom: 32px;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width:640px) {
  .index-list__thumb {
    display: none;
  }

  .index-list__row {
    padding: 14px 12px;
  }
}