:root {
  --sitrep-reading-width: 680px;
  --sitrep-green: #2a9d6e;
  --sitrep-green-wash: rgba(42,157,110,0.10);
  --sitrep-green-border: rgba(42,157,110,0.42);
}

main {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.article-wrap {
  width: 100%;
  max-width: var(--sitrep-reading-width);
  margin: 0 auto;
  padding: 72px 52px 100px;
}

.breadcrumb {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 0 40px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.breadcrumb a,
.breadcrumb-current {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--white-35);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--sitrep-green); }
.breadcrumb-sep { font-size: 11px; color: var(--white-12); }
.breadcrumb-current { color: var(--white-35); }

.article-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sitrep-green);
  margin-bottom: 16px;
}

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.article-byline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--white-35);
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: 28px;
}

.article-body p strong {
  color: var(--white);
  font-weight: 600;
}

.article-body a {
  color: var(--sitrep-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover { color: var(--amber); }

.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 52px 0 20px;
}

.article-body h2.is-signal {
  color: var(--amber);
}

.article-body blockquote {
  border-left: 3px solid var(--sitrep-green);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}

.article-body blockquote p {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 0;
}

.article-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.article-cta-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.article-cta > p,
.article-cta-choice p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-70);
}

.article-cta > p {
  max-width: 520px;
  margin-bottom: 20px;
}

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

.article-cta-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.article-cta-choice {
  min-width: 0;
  padding: 24px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
}

.article-cta-choice.is-primary {
  border-color: rgba(232,160,32,0.55);
}

.article-cta-stage {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.article-cta-choice h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.article-cta-choice p { margin-bottom: 18px; }

.article-cta-btn {
  display: inline-block;
  max-width: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 13px 22px;
  border: 1px solid var(--amber);
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.article-cta-btn:hover { opacity: 0.88; }

.article-cta-btn.is-secondary {
  color: var(--white-70);
  background: transparent;
  border-color: var(--border-hi);
}

.article-cta-btn.is-secondary:hover {
  color: var(--white);
  background: var(--sitrep-green-wash);
  border-color: var(--sitrep-green);
}

.decision-step.is-evidence {
  border-color: var(--sitrep-green-border);
  background: var(--sitrep-green-wash);
}

.decision-step.is-evidence .decision-step-number {
  color: var(--sitrep-green);
}

.article-cta-fine {
  margin-top: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--white-35);
}

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

  .breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 32px !important;
  }

  .article-title {
    font-size: clamp(30px, 10vw, 38px);
  }

  .article-byline {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-body h2 {
    font-size: 24px;
    margin-top: 44px;
  }

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

  .article-cta-choice {
    padding: 22px 20px;
  }
}
