:root {
  --article-frame: 1180px;
  --article-rail: 220px;
  --article-gap: 24px;
}

/* Audience-Owned editorial emphasis */
.articles-main .article-prose .article-key-question {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(212, 175, 106, 0.55);
  border-left: 4px solid #d4af6a;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 106, 0.16), rgba(212, 175, 106, 0.05));
  color: #f4dfad;
  font-weight: 750;
  line-height: 1.65;
}

@media (max-width: 620px) {
  .articles-main .article-prose .article-key-question {
    padding: 1.1rem 1.15rem;
  }
}

.articles-main .article-header-new,
.articles-main .article-hero-new,
.articles-main .article-executive-access,
.articles-main .article-reading-layout,
.articles-main .article-related {
  width: min(var(--article-frame), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.articles-main .article-hero-new {
  margin-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.articles-main .article-hero-new img {
  width: 100%;
  aspect-ratio: 16 / 8.35;
  object-fit: cover;
}

.article-executive-access {
  border: 1px solid rgba(212, 175, 106, .42);
  border-top: 0;
  background: #090909;
}

.article-executive-trigger {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  border: 0;
  background: transparent;
  color: #f5f1e8;
  cursor: pointer;
  text-align: left;
  transition: background-color .28s ease, color .28s ease;
}

.article-executive-trigger:hover,
.article-executive-trigger:focus-visible {
  background: #111;
  outline: none;
}

.article-executive-trigger::before {
  content: "Executive Note";
  color: #D4AF6A;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-executive-trigger span {
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -.02em;
}

.article-executive-trigger small {
  margin-left: auto;
  color: #a9a298;
  font-size: .76rem;
}

.article-executive-trigger b {
  color: #D4AF6A;
  font-size: 1.2rem;
  font-weight: 400;
}

.article-reading-layout {
  display: grid;
  grid-template-columns: var(--article-rail) minmax(0, 1fr);
  gap: var(--article-gap);
  align-items: start;
  padding: 28px 0 90px;
}

.article-section-nav {
  position: sticky;
  top: calc(var(--header, 74px) + 20px);
  max-height: calc(100vh - var(--header, 74px) - 40px);
  overflow: auto;
  border: 1px solid rgba(212, 175, 106, .32);
  border-radius: 14px;
  background: #090909;
  scrollbar-width: thin;
  scrollbar-color: #D4AF6A #111;
}

.article-section-nav-title {
  margin: 0;
  padding: 16px 18px 13px;
  border-bottom: 1px solid rgba(212, 175, 106, .22);
  color: #D4AF6A;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.article-section-nav ol {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.article-section-nav a {
  display: block;
  padding: 10px 18px;
  border-left: 1px solid transparent;
  color: #a9a298;
  font-size: .76rem;
  line-height: 1.42;
  transition: color .28s ease, background-color .28s ease, border-color .28s ease;
}

.article-section-nav a:hover,
.article-section-nav a:focus-visible,
.article-section-nav a[aria-current="true"] {
  border-left-color: #D4AF6A;
  background: #050505;
  color: #f5f1e8;
  outline: none;
}

.articles-main .article-reading-layout .article-prose {
  width: 100%;
  margin: 0;
  padding: clamp(48px, 5vw, 72px) clamp(36px, 5vw, 72px);
}

.articles-main .article-prose :is(p, ul, ol, h2, h3, blockquote) {
  max-width: 78ch;
}

.articles-main .article-prose :is(h2, h3) {
  scroll-margin-top: calc(var(--header, 74px) + 28px);
}

.article-executive-modal {
  width: min(720px, calc(100% - 36px));
  max-height: min(720px, calc(100vh - 48px));
  padding: 0;
  border: 1px solid rgba(212, 175, 106, .58);
  border-radius: 18px;
  background: #0a0a0a;
  color: #f5f1e8;
  box-shadow: none;
}

.article-executive-modal::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(7px);
}

.article-executive-modal-inner {
  position: relative;
  padding: clamp(30px, 6vw, 56px);
}

.article-executive-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 106, .42);
  border-radius: 50%;
  background: #050505;
  color: #D4AF6A;
  cursor: pointer;
  font-size: 1.1rem;
}

.article-executive-modal .articles-kicker {
  display: block;
  margin: 0 48px 10px 0;
}

.article-executive-modal h2 {
  margin: 0 48px 20px 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.article-executive-modal p {
  color: #c9c2b8;
  font-size: .98rem;
  line-height: 1.7;
}

.article-executive-modal .executive-sections {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 106, .28);
  border-left: 3px solid #D4AF6A;
  background: #050505;
}

.article-executive-modal .executive-sections strong {
  display: block;
  margin-bottom: 8px;
  color: #D4AF6A;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-executive-modal .executive-sections p {
  margin: 0;
  color: #f5f1e8;
}

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

  .article-section-nav {
    z-index: 20;
    top: var(--header, 74px);
    max-height: none;
    border-radius: 12px;
    overflow: hidden;
  }

  .article-section-nav-title {
    padding: 12px 16px 8px;
  }

  .article-section-nav ol {
    display: flex;
    gap: 6px;
    padding: 8px 10px 11px;
    overflow-x: auto;
  }

  .article-section-nav li {
    flex: 0 0 auto;
  }

  .article-section-nav a {
    max-width: 230px;
    padding: 8px 11px;
    border: 1px solid rgba(212, 175, 106, .24);
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 620px) {
  .articles-main .article-header-new,
  .articles-main .article-hero-new,
  .articles-main .article-executive-access,
  .articles-main .article-reading-layout,
  .articles-main .article-related {
    width: min(100% - 24px, var(--article-frame));
  }

  .articles-main .article-hero-new img {
    aspect-ratio: 16 / 9;
  }

  .article-executive-trigger {
    min-height: 64px;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 13px 16px;
  }

  .article-executive-trigger::before {
    width: 100%;
  }

  .article-executive-trigger small {
    display: none;
  }

  .article-reading-layout {
    gap: 14px;
    padding-top: 16px;
  }

  .articles-main .article-reading-layout .article-prose {
    padding: 40px 22px;
  }
}
