.article-page #contentPage { padding-top: var(--header-h); }

.article-progress {
  position: fixed;
  left: 0;
  top: var(--header-h);
  z-index: 90;
  width: 100%;
  height: 3px;
  background: rgba(11,42,91,.08);
}

.article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.article-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 72px;
}

.article-header {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(11,42,91,.1);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #70849A;
  font-size: .72rem;
  font-weight: 700;
}

.article-breadcrumb a { color: var(--navy); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--gold-dark); }

.article-header__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: end;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #647A92;
  font-size: .66rem;
  font-weight: 800;
}

.article-meta span:first-child {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(200,155,60,.11);
}

.article-meta > * + *::before { content: ""; display: inline-block; width: 3px; height: 3px; margin-right: 9px; border-radius: 50%; background: #A8B5C2; vertical-align: middle; }

.article-header h1 {
  max-width: 940px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.15rem,4.6vw,3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.article-deck {
  max-width: 900px;
  margin: 16px 0 0;
  color: #57708A;
  font-size: clamp(.94rem,1.4vw,1.08rem);
  line-height: 1.7;
}

.article-header__actions { display: flex; gap: 8px; }
.article-header__actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(11,42,91,.13);
  border-radius: 7px;
  color: var(--navy);
  background: #fff;
  font: 800 .68rem/1 var(--font-body);
  transition: .2s ease;
}
.article-header__actions button:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,42,91,.08); }
.article-header__actions svg { width: 16px; height: 16px; }

.article-featured {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 24px 0 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #EAF0F5;
  box-shadow: 0 20px 45px rgba(11,42,91,.12);
}
.article-featured img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-layout {
  display: block;
}

.article-content { width: min(100%, 1000px); min-width: 0; margin: 0 auto; }
.article-section { scroll-margin-top: calc(var(--header-h) + 24px); padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid rgba(11,42,91,.1); }
.article-section:last-child { border-bottom: 0; }
.article-section h2 { margin: 0 0 16px; color: var(--navy); font-family: var(--font-display); font-size: clamp(1.55rem,2.5vw,2.15rem); line-height: 1.2; letter-spacing: 0; }
.article-section h3 { margin: 22px 0 8px; color: var(--navy); font-size: 1.04rem; line-height: 1.35; }
.article-section p { margin: 0 0 16px; color: #425D79; font-size: .96rem; line-height: 1.82; }
.article-section a { color: #9A711D; font-weight: 800; }

.article-table-wrap { margin: 22px 0; overflow-x: auto; border: 1px solid rgba(11,42,91,.1); border-radius: 8px; box-shadow: 0 14px 34px rgba(11,42,91,.07); }
.article-table { width: 100%; min-width: 680px; border-collapse: collapse; background: #fff; }
.article-table th { padding: 12px 14px; color: #fff; background: var(--navy); font-size: .68rem; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.article-table td { padding: 12px 14px; border-top: 1px solid rgba(11,42,91,.08); color: #4F6680; font-size: .78rem; line-height: 1.5; vertical-align: top; }
.article-table td:first-child { color: var(--navy); font-weight: 800; }
.article-table td:nth-child(2) { color: #9A711D; font-weight: 900; white-space: nowrap; }
.article-table tbody tr:nth-child(even) { background: #F8FAFC; }

.article-subsections { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 28px; }
.article-subsections section { padding: 0 0 8px; }

.article-checklist { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.article-checklist > div { position: relative; padding: 18px 18px 14px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; background: #F7F9FC; }
.article-checklist span { color: var(--gold-dark); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.article-checklist h3 { margin: 6px 0; font-size: .95rem; }
.article-checklist p { margin: 0; font-size: .8rem; line-height: 1.6; }

.article-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.article-steps li { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 14px; position: relative; padding: 0 0 22px; }
.article-steps li:not(:last-child)::after { content: ""; position: absolute; left: 20px; top: 40px; bottom: 2px; width: 1px; background: rgba(200,155,60,.36); }
.article-steps > li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; color: var(--navy); background: linear-gradient(135deg,#F0D16B,var(--gold)); font-size: .7rem; font-weight: 900; }
.article-steps h3 { margin: 2px 0 4px; }
.article-steps p { margin: 0; font-size: .85rem; line-height: 1.65; }

.article-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-list li { position: relative; padding: 13px 14px 13px 42px; border-radius: 7px; color: #425D79; background: #F7F9FC; font-size: .86rem; line-height: 1.65; }
.article-list li::before { content: ""; position: absolute; left: 16px; top: 20px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(200,155,60,.12); }
.article-list--warning li::before { background: #D14A40; box-shadow: 0 0 0 5px rgba(209,74,64,.1); }

.flag-compare { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.flag-compare > div { padding: 18px; border-radius: 8px; background: #F3FAF6; }
.flag-compare > div:last-child { background: #FFF5F4; }
.flag-compare h3 { margin: 0 0 10px; color: #196F4B; }
.flag-compare > div:last-child h3 { color: #B33B32; }
.flag-compare ul { display: grid; gap: 7px; margin: 0; padding-left: 18px; color: #46617A; font-size: .8rem; line-height: 1.5; }

.article-cta { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; margin-top: 22px; padding: 22px; border-radius: 8px; color: #fff; background: linear-gradient(135deg,var(--navy),#204E82); }
.article-cta > div > span { color: #F0C85A; font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-cta h3 { margin: 7px 0 5px; color: #fff; font-size: 1.2rem; }
.article-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.5; }
.article-cta > a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border-radius: 7px; color: var(--navy); background: var(--gold); font-size: .72rem; font-weight: 900; text-decoration: none; white-space: nowrap; }

.article-faq details { border-top: 1px solid rgba(11,42,91,.1); }
.article-faq details:last-child { border-bottom: 1px solid rgba(11,42,91,.1); }
.article-faq summary { position: relative; padding: 15px 38px 15px 0; color: var(--navy); font-size: .91rem; font-weight: 800; cursor: pointer; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; color: var(--gold-dark); font-size: 1.3rem; transform: translateY(-50%); }
.article-faq details[open] summary::after { content: "-"; }
.article-faq details p { padding: 0 36px 15px 0; margin: 0; font-size: .86rem; }

.article-conclusion { padding: 24px; border: 1px solid rgba(200,155,60,.24); border-radius: 8px; background: linear-gradient(135deg,#FFF9E9,#fff); }
.article-conclusion h2 { color: var(--navy); }
.article-conclusion p:last-child { margin-bottom: 0; }

.article-sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 14px; }
.article-toc, .article-advisor { padding: 18px; border: 1px solid rgba(11,42,91,.1); border-radius: 8px; background: #fff; box-shadow: 0 14px 35px rgba(11,42,91,.08); }
.article-toc > span, .article-advisor > span { display: block; margin-bottom: 11px; color: var(--gold-dark); font-size: .61rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.article-toc nav { display: grid; }
.article-toc a { position: relative; padding: 8px 10px 8px 13px; border-left: 2px solid rgba(11,42,91,.1); color: #597087; font-size: .72rem; font-weight: 700; text-decoration: none; transition: .18s ease; }
.article-toc a:hover, .article-toc a.is-active { border-left-color: var(--gold); color: var(--navy); background: #FBF7EA; }
.article-advisor { color: #fff; background: linear-gradient(145deg,var(--navy),#1B4E83); }
.article-advisor > span { color: #F0C85A; }
.article-advisor h3 { margin: 0 0 14px; color: #fff; font-size: 1rem; line-height: 1.45; }
.article-advisor a { display: flex; align-items: center; justify-content: center; min-height: 40px; border-radius: 7px; color: var(--navy); background: var(--gold); font-size: .72rem; font-weight: 900; text-decoration: none; }

.article-toast { position: fixed; right: 24px; bottom: 24px; z-index: 200; padding: 11px 15px; border-radius: 7px; color: #fff; background: var(--navy); font-size: .75rem; font-weight: 800; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .22s ease; }
.article-toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .article-shell { width: min(100% - 36px, 920px); }
  .article-featured { aspect-ratio: 16 / 9; }
}

@media (max-width: 820px) {
  .article-shell { width: min(100% - 32px, 760px); padding-top: 22px; }
  .article-header__grid { grid-template-columns: 1fr; gap: 18px; }
  .article-header__actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .article-progress { top: var(--header-h); }
  .article-shell { width: calc(100% - 24px); padding: 18px 0 50px; }
  .article-breadcrumb { margin-bottom: 12px; font-size: .64rem; }
  .article-header h1 { font-size: 2rem; line-height: 1.08; }
  .article-deck { margin-top: 12px; font-size: .88rem; line-height: 1.62; }
  .article-header__actions button span { display: none; }
  .article-header__actions button { width: 38px; padding: 0; justify-content: center; }
  .article-featured { margin: 18px 0 22px; aspect-ratio: 16 / 9; }
  .article-section { margin-bottom: 26px; padding-bottom: 26px; }
  .article-section h2 { font-size: 1.45rem; }
  .article-section h3 { font-size: .98rem; }
  .article-section p { font-size: .88rem; line-height: 1.72; }
  .article-subsections, .article-checklist, .flag-compare { grid-template-columns: 1fr; }
  .article-checklist { gap: 8px; }
  .article-cta { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .article-cta > a { width: 100%; justify-content: center; }
  .article-table th, .article-table td { padding: 10px 11px; }
  .article-conclusion { padding: 18px; }
  .article-toast { right: 12px; bottom: 12px; }
}

@media print {
  .site-topbar, .nav, .footer, .article-sidebar, .article-header__actions, .article-progress { display: none !important; }
  .article-page #contentPage { padding: 0; }
  .article-shell { width: 100%; padding: 0; }
  .article-layout { display: block; }
  .article-featured { box-shadow: none; }
}
