.article-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(42px, 6vw, 78px) 0 clamp(72px, 8vw, 120px);
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 182, 109, .10), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(111, 143, 108, .10), transparent 32rem),
    #080c0a;
  color: #f5f1e8;
}

.article-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.article-hero {
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(12, 16, 13, .74);
  box-shadow:
    0 34px 90px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.article-eyebrow {
  margin: 0 0 14px;
  color: #f2b66d;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #f5f1e8;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: 0;
}

.article-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(245,241,232,.80);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.055);
  color: rgba(245,241,232,.70);
  font-size: .88rem;
  font-weight: 750;
}

.article-section {
  margin-top: clamp(28px, 5vw, 48px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  scroll-margin-top: 90px;
}

.article-section + .article-section {
  margin-top: 24px;
}

.article-section__kicker {
  margin: 0 0 10px;
  color: #f2b66d;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-section h2 {
  margin: 0 0 16px;
  color: #f5f1e8;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-section h3 {
  margin: 22px 0 8px;
  color: #fff7e8;
  font-size: 1.15rem;
  line-height: 1.25;
}

.article-section p,
.article-section li {
  color: rgba(245,241,232,.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-section a {
  color: #f2b66d;
  font-weight: 800;
  text-decoration: none;
}

.article-section a:hover,
.article-section a:focus-visible {
  text-decoration: underline;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(0,0,0,.18);
}

.article-card h3,
.article-card h2 {
  margin-top: 0;
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.article-card p,
.article-card ul {
  margin: 0;
}

.article-callout {
  margin-top: 24px;
  padding: 20px;
  border-left: 3px solid #f2b66d;
  border-radius: 18px;
  background: rgba(242,182,109,.10);
  color: rgba(245,241,232,.82);
}

.article-callout:first-child {
  margin-top: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255,255,255,.055);
  color: rgba(245,241,232,.90);
  font-size: .94rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.article-button:hover,
.article-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242,182,109,.55);
  background: rgba(242,182,109,.10);
  text-decoration: none;
}

.article-button--primary {
  border-color: rgba(242,182,109,.48);
  background: linear-gradient(135deg, rgba(242,182,109,.24), rgba(242,182,109,.08));
  color: #fff3dc;
}

.article-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(0,0,0,.16);
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(245,241,232,.74);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: rgba(255,255,255,.045);
  color: #f5f1e8;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.source-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.045);
  color: rgba(245,241,232,.82);
  font-weight: 800;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: rgba(242,182,109,.5);
  color: #f2b66d;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(242,182,109,.68);
  border-radius: 4px;
  background: rgba(242,182,109,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

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

.article-cta {
  padding: 20px;
  border: 1px solid rgba(242,182,109,.38);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(242,182,109,.12), rgba(255,255,255,.035));
}

@media (max-width: 760px) {
  .article-page {
    padding-top: 28px;
  }

  .article-shell {
    width: min(100% - 24px, 980px);
  }

  .article-hero {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .article-section {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .article-grid,
  .article-grid--checklist {
    grid-template-columns: 1fr;
  }

  .article-actions {
    flex-direction: column;
  }

  .article-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-button {
    transition: none;
  }

  .article-button:hover,
  .article-button:focus-visible {
    transform: none;
  }
}
