/* ======================================================
   Growth Academy — Blog Article Stylesheet
   Light editorial design system
   Shared across all blog article pages
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

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

:root {
  --cream: #221c17;
  --cream-alt: #fffaf3;
  --ivory: #fbf7ef;
  --dark: #221c17;
  --dark-bg: #fbf7ef;
  --dark-card: #fbf7ef;
  --text-1: #221c17;
  --text-2: rgba(34,28,23,0.72);
  --text-3: rgba(34,28,23,0.46);
  --mid: #7d6d5d;
  --muted: #7d6d5d;
  --body-text: rgba(34,28,23,0.72);
  --body-muted: rgba(34,28,23,0.46);
  --gold: #C4A95B;
  --gold-on-light: #C4A95B;
  --gold-dark: #a8903d;
  --border: rgba(34,28,23,0.12);
  --border-light: rgba(34,28,23,0.12);
  --border-dark: rgba(34,28,23,0.12);
  --line: rgba(34,28,23,0.12);
  --font-display: 'Inter Tight', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- NAV BAR ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251,247,239,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s;
}
.nav.scrolled { box-shadow: 0 1px 18px rgba(34,28,23,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.nav-logo {
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  margin: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: rgba(34,28,23,0.52);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links .quiet-emphasis { font-weight: 600; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-1);
  cursor: pointer;
  padding: 8px;
}

/* ---- ARTICLE HEADER ---- */
.article-breadcrumb {
  max-width: 1120px;
  margin: 92px auto 0;
  padding: 0 24px;
  color: var(--text-3);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.article-breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
}

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

.article-breadcrumb span {
  margin-left: 8px;
}

.article-footer .back-to-learn {
  margin-bottom: 10px;
}

.article-footer .back-to-learn a {
  color: var(--gold);
}

.article-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px clamp(24px, 5vw, 80px) 32px;
}
.article-header .tag {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 24px;
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 900px;
  font-weight: 500;
  color: var(--text-1);
}
.article-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-2);
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

/* Meta row */
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0 0;
  border-top: none;
  margin-bottom: 0;
}
.article-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  cursor: pointer;
}
.share-btn:hover { color: var(--gold); }
.share-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ---- ARTICLE BODY REGION ---- */
.article-body {
  background: var(--dark-card);
}

/* ---- SINGLE-COLUMN LAYOUT ---- */
.article-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px) 80px;
  display: block;
}

/* Legacy sidebar — hidden */
.author-sidebar { display: none; }

/* ---- AUTHOR STRIP ---- */
.author-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  margin-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
}
.author-strip-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-1);
}
.author-strip-proof {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-3);
}
.author-strip-sep {
  color: var(--text-3);
  font-size: 0.75rem;
}

.author-snippet {
  margin: 0 0 28px;
  padding: 16px 0 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.65;
}
.author-snippet strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ---- BOTTOM AUTHOR CARD ---- */
.article-author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  margin: 56px 0 10px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-author-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.article-author-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.article-author-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-1);
  margin: 0 0 10px;
}
.article-author-card p {
  margin: 0 0 14px;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.65;
}
.article-author-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.article-author-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.article-author-links a:hover {
  color: var(--gold);
}

/* ---- ARTICLE OFFER CARD ---- */
.article-offer-card {
  margin: 52px 0 14px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-offer-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.article-offer-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-1);
  margin: 0 0 12px;
}
.article-offer-card p {
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.7;
}
.article-offer-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.article-offer-link:hover {
  color: var(--gold);
}

/* ---- ARTICLE CONTENT ---- */
.article-content {
  max-width: 100%;
  padding-bottom: 0;
}

/* Hero image */
.article-content .hero-video {
  display: block;
  overflow: hidden;
  border: none;
  margin-bottom: 40px;
  text-decoration: none;
}
.article-content .hero-video img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.article-content .hero-video {
  position: relative;
}
.article-content .hero-video .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
}
.article-content .hero-video .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196,169,91,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.article-content .hero-video:hover .play-btn {
  transform: scale(1.06);
}
.article-content .hero-video .video-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.article-content .hero-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
  background: #000;
}

.article-content .article-diagram {
  margin: 34px 0 46px;
  border: none;
}
.article-content .article-diagram img {
  display: block;
  width: 100%;
  height: auto;
}
.article-content .article-diagram figcaption {
  border-top: none;
  padding: 10px 0 0;
  color: var(--text-3);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Typography */
.article-content p {
  color: var(--text-2);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-content strong { color: var(--text-1); }

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 56px 0 20px;
  color: var(--text-1);
  font-weight: 500;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.3;
  margin: 40px 0 14px;
  color: var(--text-1);
  font-weight: 500;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
  color: var(--text-2);
}
.article-content li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Links */
.article-content a {
  color: var(--gold);
  text-decoration-color: rgba(196,169,91,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.article-content a:hover {
  text-decoration-color: var(--gold);
}

/* Blockquote */
.article-content .quote,
.article-content .quote-block,
.article-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(196,169,91,0.06);
  color: var(--text-2);
  border-radius: 0;
  font-style: italic;
}

/* Box / callout */
.article-content .box {
  background: transparent;
  border: none;
  padding: 0;
  margin: 32px 0;
}
.article-content .box h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-1);
}

/* TOC */
.article-content .toc ul { margin-left: 18px; }
.article-content .toc li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.5;
}
.article-content .toc a {
  color: var(--gold);
  text-decoration: none;
}
.article-content .toc a:hover { text-decoration: underline; }

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
}
.article-content th {
  text-align: left;
  font-weight: 600;
  color: var(--gold);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(196,169,91,0.2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}
.article-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.article-content td:first-child {
  font-weight: 600;
  color: var(--text-1);
}
.article-content tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.article-content .faq {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 8px;
}
.article-content .faq-item {
  padding: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.article-content .faq-item:last-child { border-bottom: none; }
.article-content .faq-q {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-1);
  margin-bottom: 0;
  padding: 18px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  letter-spacing: 0;
  text-transform: none;
}
.article-content .faq-q:hover {
  color: var(--gold);
}
.article-content .faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  font-family: var(--font-body);
}
.article-content .faq-item.open .faq-q::after {
  content: '\2212';
}
.article-content .faq-a {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 0 20px;
  background: transparent;
  border: none;
  display: none;
}
.article-content .faq-item.open .faq-a {
  display: block;
}

/* Sources */
.article-content .sources {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* Link placeholders (dev) */
.article-content .link-placeholder {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-3);
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(245,240,235,0.12);
  padding: 8px 12px;
  margin: 8px 0 22px;
  display: inline-block;
}

/* ---- WORKSHEET CTA (shared editorial component) ---- */
.worksheet-cta {
  margin: 32px 0;
  padding: 32px 0;
  border-top: none;
  border-bottom: none;
  text-align: center;
}
.worksheet-cta .worksheet-cta-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.article-content .worksheet-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #F5F5F5;
  margin: 0 0 8px;
}
.article-content .worksheet-cta p {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.worksheet-cta-btn,
.article-content .worksheet-cta-btn,
.article-content a.worksheet-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #111;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.worksheet-cta-btn:hover,
.article-content .worksheet-cta-btn:hover,
.article-content a.worksheet-cta-btn:hover {
  opacity: 0.85;
  color: #111;
  text-decoration: none;
}

.follow-up-kit-cta {
  margin: 42px 0;
  padding: 28px;
  border: 1px solid rgba(194, 151, 77, 0.58);
  background: linear-gradient(135deg, rgba(194, 151, 77, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.article-content .follow-up-kit-cta h3 {
  margin: 0 0 12px;
}

.article-content .follow-up-kit-cta p {
  margin: 0 0 18px;
}

.article-content .follow-up-kit-cta a {
  border-bottom: 0;
}

/* ---- SUBSCRIBE CTA (inline editorial) ---- */
.subscribe-cta {
  margin: 32px 0;
  padding: 32px 0;
  border-top: none;
  border-bottom: none;
  text-align: center;
}
.subscribe-cta-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.subscribe-cta-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.subscribe-cta-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-1);
  outline: none;
}
.subscribe-cta-form input::placeholder { color: var(--text-3); }
.subscribe-cta-form input:focus { border-color: var(--gold); }
.subscribe-cta-form button {
  padding: 12px 24px;
  background: var(--gold);
  color: #111;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.subscribe-cta-form button:hover { opacity: 0.85; }

/* ---- BOTTOM CTA SECTION ---- */
.article-cta {
  background: var(--dark-bg);
  padding: 80px 24px;
  text-align: center;
}
.article-cta .cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.article-cta .cta-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.article-cta h2, .article-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #F5F5F5;
  font-weight: 500;
}
.article-cta p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-family: var(--font-body);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta .btn-primary,
.article-cta .cta-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.article-cta .btn-primary:hover,
.article-cta .cta-primary:hover { opacity: 0.85; }
.article-cta .btn-secondary,
.article-cta .cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(245,240,235,0.2);
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.article-cta .btn-secondary:hover,
.article-cta .cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- NEWSLETTER SECTION ---- */
.article-newsletter {
  background: var(--dark-bg);
  padding: 64px 24px;
  text-align: center;
}
.article-newsletter .nl-inner {
  max-width: 500px;
  margin: 0 auto;
}
.article-newsletter .nl-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.article-newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: #F5F5F5;
  margin-bottom: 10px;
}
.article-newsletter p {
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.article-newsletter .nl-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.article-newsletter .nl-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.article-newsletter .nl-input::placeholder { color: var(--text-3); }
.article-newsletter .nl-input:focus { border-color: var(--gold); }
.article-newsletter .nl-submit {
  padding: 12px 24px;
  background: var(--gold);
  color: #111;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.article-newsletter .nl-submit:hover { opacity: 0.85; }

/* ---- FOOTER ---- */
.article-footer {
  background: var(--dark-bg);
  padding: 24px;
  text-align: center;
}
.article-footer p {
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 0.78rem;
}
.article-footer a { color: var(--gold); text-decoration: none; }

/* ---- CUSTOM ARTICLE COMPONENTS ---- */

/* Executive Summary */
.article-content .exec-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 32px;
}
.article-content .exec-summary h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-content .exec-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-content .exec-summary li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.6;
}
.article-content .exec-summary li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.article-content .exec-summary li strong { color: var(--text-1); }

/* ICP / Who This Is For box */
.article-content .icp-box {
  background: transparent;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}
.article-content .icp-box strong { color: var(--text-1); }

/* Key Insight cards */
.article-content .key-insight {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.article-content .key-insight h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.article-content .key-insight p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Stat Banner */
.article-content .stat-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 28px;
  margin: 32px 0;
}
.article-content .stat-item { text-align: center; }
.article-content .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
}
.article-content .stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Stat Grid (card variant) */
.article-content .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.article-content .stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}
.article-content .stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.article-content .stat-desc {
  font-size: 0.85rem;
  color: var(--text-3);
}

/* Action Steps */
.article-content .action-steps {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 28px;
  margin: 32px 0;
}
.article-content .action-steps h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 20px;
}
.article-content .action-step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.article-content .action-step:last-child { margin-bottom: 0; }
.article-content .action-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(196,169,91,0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.article-content .action-step p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Pitfall List */
.article-content .pitfall-list { margin: 24px 0; }
.article-content .pitfall-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.article-content .pitfall-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}
.article-content .pitfall-item p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Highlight Box */
.article-content .highlight-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 24px;
  margin: 24px 0;
}
.article-content .highlight-box .box-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

/* Video Link (thumbnail with play) */
.article-content .video-link {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 32px 0;
  overflow: hidden;
  text-decoration: none;
}
.article-content .video-link img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-content .video-link .play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
}
.article-content .video-link .play-btn {
  width: 60px; height: 60px;
  background: rgba(196,169,91,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.article-content .video-link:hover .play-btn { transform: scale(1.08); }
.article-content .video-link .video-label {
  position: absolute; bottom: 14px; left: 14px;
  font-weight: 600; font-size: 0.82rem; color: rgba(245,240,235,0.9);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Quote block with author */
.article-content .quote-author {
  font-style: normal;
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* PDF Download Form */
.article-content .pdf-download-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  align-items: stretch;
}
.article-content .pdf-download-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-1);
  outline: none;
}
.article-content .pdf-download-form input::placeholder { color: var(--text-3); }
.article-content .pdf-download-form input:focus { border-color: var(--gold); }
.article-content .pdf-download-form button {
  white-space: nowrap;
  background: var(--gold);
  color: #111;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.article-content .pdf-download-form button:hover { opacity: 0.85; }

.article-content .resource-download-card {
  margin: 48px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.article-content .resource-download-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.article-content .resource-download-card h2 {
  margin-top: 0;
}
.article-content .resource-download-card .pdf-download-form {
  margin: 0;
}
.article-content .resource-download-note {
  margin: 12px 0 0;
  color: var(--text-3);
  font-size: 0.78rem;
}

/* Scorecard (comparison table) */
.article-content .scorecard {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 32px 0;
}
.article-content .scorecard-header {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.article-content .scorecard-header.tool { text-align: center; }
.article-content .scorecard-cell {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-2);
}
.article-content .scorecard-cell.tool { text-align: center; font-weight: 700; }
.article-content .scorecard-cell.winner { color: var(--gold); }

/* FAQ Section (legacy static style) */
.article-content .faq-section { margin: 48px 0; }

/* Stats Grid (case study) */
.article-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.active,
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .nav-links.active a,
  .nav-links.open a {
    padding: 14px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }
  .nav-mobile-toggle { display: block; }

  .article-header { padding: 100px 18px 36px; }
  .article-header h1 { font-size: 2rem; }

  .article-layout { padding: 0 18px 60px; }

  .author-strip { gap: 6px; }
  .author-strip-sep { display: none; }
  .author-strip-proof { font-size: 0.75rem; }
  .article-author-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .article-author-card img {
    width: 78px;
    height: 78px;
  }

  .article-content h2 { margin-top: 40px; }

  .subscribe-cta-form { flex-direction: column; }
  .article-newsletter .nl-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .article-header h1 { font-size: 1.7rem; }
  .article-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .article-share { margin-left: 0; }
  .article-header { padding: 88px 16px 32px; }
}

/* Global */
img { max-width: 100%; height: auto; }

@media (max-width: 768px) {
  iframe { max-width: 100%; }
}

/* ---- LIGHT BLOG MODE OVERRIDES ---- */
.article-content .worksheet-cta-title,
.article-cta h2,
.article-cta h3,
.article-newsletter h3 {
  color: var(--text-1);
}

.article-content .quote,
.article-content .quote-block,
.article-content blockquote,
.article-content .exec-summary,
.article-content .key-insight,
.article-content .stat-banner,
.article-content .stat-card,
.article-content .action-steps,
.article-content .highlight-box,
.article-content .scorecard {
  background: rgba(255,255,255,0.58);
  border-color: rgba(34,28,23,0.12);
}

.article-cta,
.article-newsletter,
.article-footer {
  background: #f3ecdf;
  border-top: 1px solid rgba(34,28,23,0.1);
}

.article-cta .btn-secondary,
.article-cta .cta-secondary {
  border-color: rgba(34,28,23,0.18);
  color: rgba(34,28,23,0.72);
}

.subscribe-cta-form input[type="email"],
.article-newsletter .nl-input,
.article-content .pdf-download-form input[type="email"] {
  background: rgba(255,255,255,0.72);
  color: var(--text-1);
  border-color: rgba(34,28,23,0.16);
}

.article-content .link-placeholder {
  background: rgba(255,255,255,0.6);
  border-color: rgba(34,28,23,0.16);
}

.article-content .video-link .video-label {
  color: rgba(255,255,255,0.94);
}

@media (max-width: 768px) {
  .nav-links.active,
  .nav-links.open {
    background: rgba(251,247,239,0.98);
    box-shadow: 0 8px 24px rgba(34,28,23,0.1);
  }

  .nav-links.active a,
  .nav-links.open a {
    color: rgba(34,28,23,0.78);
  }
}

/* 2026-05-28 blog page redesign: align legacy article pages with the ChatGPT export mockup. */
:root {
  --ga-redesign-bg: #f7f8fb;
  --ga-redesign-ink: #070b14;
  --ga-redesign-muted: #505866;
  --ga-redesign-faint: #7a8391;
  --ga-redesign-line: #d8dee8;
  --ga-redesign-card: #ffffff;
  --ga-redesign-blue: #0a72ff;
  --ga-redesign-blue-bright: #1fb6ff;
  --ga-redesign-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

body {
  background: var(--ga-redesign-bg);
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.nav {
  position: static;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-inner {
  width: min(1400px, calc(100% - 40px));
  max-width: none;
  height: auto;
  min-height: 34px;
  margin: 20px auto 0;
  padding: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-logo,
.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ga-redesign-line);
  border-radius: 0;
  background: var(--ga-redesign-card);
  color: var(--ga-redesign-ink);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0 12px;
}

.nav-logo {
  width: 34px;
  justify-content: center;
  color: transparent;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.nav-logo::before {
  content: "";
  width: 15px;
  height: 15px;
  background: var(--ga-redesign-blue-bright);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

.nav-links {
  gap: 4px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links .nav-cta-item {
  margin-left: auto;
}

.nav-mobile-toggle,
.nav-dropdown-menu {
  display: none !important;
}

.nav-links a::before {
  content: "[";
  color: var(--ga-redesign-faint);
  margin-right: 4px;
}

.nav-links a::after {
  content: "]";
  color: var(--ga-redesign-faint);
  margin-left: 4px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ga-redesign-blue);
  border-color: var(--ga-redesign-blue);
  background: #edf4ff;
}

.nav-links a.nav-cta {
  min-width: max-content;
  border-color: rgba(31, 182, 255, .86);
  background: linear-gradient(90deg, var(--ga-redesign-blue), var(--ga-redesign-blue-bright));
  color: #050505;
  font-weight: 800;
  box-shadow:
    0 0 0 1px rgba(31, 182, 255, .18),
    0 0 24px rgba(31, 182, 255, .48);
}

.nav-links a.nav-cta::before,
.nav-links a.nav-cta::after {
  content: none;
  margin: 0;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  border-color: var(--ga-redesign-blue-soft);
  background: linear-gradient(90deg, #1fb6ff, #78ddff);
  color: #050505;
  box-shadow:
    0 0 0 1px rgba(31, 182, 255, .28),
    0 0 34px rgba(31, 182, 255, .68);
}

.article-breadcrumb {
  max-width: 1180px;
  margin: 30px auto 0;
  color: var(--ga-redesign-muted);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.article-breadcrumb a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--ga-redesign-line);
  background: var(--ga-redesign-card);
  color: var(--ga-redesign-blue);
  padding: 0 12px;
}

.article-breadcrumb a::before {
  content: "[";
  color: var(--ga-redesign-faint);
  margin-right: 4px;
}

.article-breadcrumb a::after {
  content: " /]";
  color: var(--ga-redesign-faint);
  margin-left: 4px;
}

.article-header {
  max-width: 1180px;
  padding: 64px 24px 48px;
}

.article-header .tag {
  color: var(--ga-redesign-blue);
  font-family: var(--ga-redesign-mono);
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.article-header .tag::before {
  content: "/ ";
}

.article-header h1 {
  max-width: 980px;
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}

.article-subtitle {
  max-width: 820px;
  color: var(--ga-redesign-muted);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-style: normal;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.article-meta {
  gap: 8px;
  padding-top: 0;
}

.article-meta > *,
.article-date {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--ga-redesign-line);
  background: var(--ga-redesign-card);
  color: var(--ga-redesign-muted);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  letter-spacing: 0;
  padding: 0 12px;
  text-transform: uppercase;
}

.article-date time:last-child {
  margin-left: .45ch;
}

.article-body {
  background: var(--ga-redesign-bg);
  border-top: 1px solid var(--ga-redesign-line);
}

.article-layout {
  max-width: 1180px;
  padding: 44px 24px 86px;
}

.author-strip {
  color: var(--ga-redesign-faint);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.author-strip-name,
.author-strip-proof {
  color: var(--ga-redesign-muted);
}

.article-content {
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
}

.article-content p,
.article-content li {
  color: var(--ga-redesign-ink);
  font-size: 18px;
  line-height: 1.68;
}

.article-content h2,
.article-content h3 {
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.article-content h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
}

.article-content a {
  color: var(--ga-redesign-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-content .quote-block,
.article-content .short-answer,
.article-content blockquote {
  border-left: 3px solid var(--ga-redesign-blue);
  border-radius: 0;
  background: var(--ga-redesign-card);
  color: var(--ga-redesign-ink);
  box-shadow: none;
}

.article-content .quote-block strong,
.article-content .short-answer strong {
  color: var(--ga-redesign-blue);
}

.article-content table,
.article-content pre {
  background: var(--ga-redesign-card);
  border: 1px solid var(--ga-redesign-line);
  border-radius: 0;
}

.article-content th,
.article-content td {
  border-color: var(--ga-redesign-line);
}

.article-content .article-diagram,
.article-content figure {
  background: var(--ga-redesign-card);
  border: 1px solid var(--ga-redesign-line);
  border-radius: 0;
  box-shadow: none;
}

.article-content .article-diagram img,
.article-content figure img {
  border-radius: 0;
}

.article-content .article-diagram figcaption,
.article-content figure figcaption {
  color: var(--ga-redesign-muted);
}

.article-offer-card,
.article-author-card {
  border: 1px solid var(--ga-redesign-line);
  border-radius: 0;
  background: var(--ga-redesign-card);
  box-shadow: none;
}

.article-offer-kicker,
.article-author-kicker,
.article-author-card h2,
.article-offer-card h2 {
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
}

.article-offer-link,
.article-author-links a {
  color: var(--ga-redesign-blue);
}

.article-footer {
  background: var(--ga-redesign-bg);
  border-top: 1px solid var(--ga-redesign-line);
  color: var(--ga-redesign-muted);
}

.article-footer a {
  color: var(--ga-redesign-blue);
}

.pdf-download-form {
  flex-wrap: wrap !important;
  max-width: 100% !important;
}

.pdf-download-form input[type="email"] {
  min-width: 0 !important;
  flex: 1 1 220px !important;
}

.pdf-download-form button {
  max-width: 100% !important;
  border-radius: 0 !important;
  background: var(--ga-redesign-blue) !important;
  color: #fff !important;
  font-family: var(--ga-redesign-mono) !important;
}

@media (max-width: 720px) {
  .nav-inner,
  .article-header,
  .article-layout,
  .article-breadcrumb {
    width: auto;
    max-width: none;
  }

  .nav-inner {
    width: calc(100% - 24px);
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    flex-wrap: wrap !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .nav-links .nav-cta-item {
    margin-left: 0;
  }

  .nav-links a {
    font-size: 11px;
    padding: 0 10px;
  }

  .article-date {
    display: block;
    max-width: calc(100vw - 32px);
    min-height: 0;
    padding: 8px 12px;
    line-height: 1.45;
    white-space: normal;
  }

  .article-header {
    padding: 54px 24px 34px;
  }

  .article-header h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .article-subtitle {
    font-size: 22px;
  }
}

/* 2026-05-28 reference-match pass:
   Keep legacy article markup, but align its visual system with
   /blog/export-chatgpt-data-codex and blog/blog.css. */
.article-breadcrumb {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  padding: 0;
}

.article-header {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  padding: 54px 0 42px;
  border-bottom: 1px solid var(--ga-redesign-line);
}

.article-header .tag {
  color: var(--ga-redesign-blue-bright);
  font-size: 13px;
  line-height: 1;
}

.article-header h1 {
  max-width: 1080px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .94;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.article-subtitle {
  max-width: 850px;
  color: var(--ga-redesign-muted);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
  font-weight: 500;
}

.article-body {
  border-top: 0;
}

.article-layout {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 40px 0 72px;
}

.author-strip,
.author-snippet,
.article-content {
  width: min(760px, 100%);
  max-width: 760px;
}

.author-strip {
  padding: 0 0 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--ga-redesign-line);
  color: var(--ga-redesign-muted);
}

.article-content p,
.article-content li {
  font-size: 17px;
  line-height: 1.76;
}

.article-content h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.05;
  margin: 54px 0 18px;
}

.article-content h3 {
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.12;
  margin: 38px 0 14px;
}

.article-content .hero-video {
  border: 1px solid var(--ga-redesign-line);
  background: var(--ga-redesign-card);
  margin: 0 0 36px;
}

.article-content .hero-video iframe {
  background: #050505;
}

.article-content table {
  background: var(--ga-redesign-card);
}

.article-content th {
  color: var(--ga-redesign-muted);
  font-family: var(--ga-redesign-mono);
}

.article-content td,
.article-content td:first-child {
  color: var(--ga-redesign-ink);
}

.worksheet-cta {
  margin: 32px 0;
  padding: 24px 26px;
  border: 1px solid var(--ga-redesign-line);
  background: var(--ga-redesign-card);
  text-align: left;
  box-shadow:
    0 1px 2px rgba(7, 11, 20, .04),
    0 12px 30px rgba(7, 11, 20, .05);
}

.worksheet-cta .worksheet-cta-label {
  color: var(--ga-redesign-blue);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
}

.article-content .worksheet-cta-title {
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.article-content .worksheet-cta p {
  color: var(--ga-redesign-muted);
  font-size: 16px;
  line-height: 1.55;
}

.worksheet-cta-btn,
.article-content .worksheet-cta-btn,
.article-content a.worksheet-cta-btn {
  border: 1px solid #095fe0;
  border-radius: 0;
  background: linear-gradient(180deg, var(--ga-redesign-blue-bright), var(--ga-redesign-blue));
  color: #ffffff;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 10px 22px rgba(10, 95, 224, .22);
}

.worksheet-cta-btn:hover,
.article-content .worksheet-cta-btn:hover,
.article-content a.worksheet-cta-btn:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.article-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.article-cta .cta-inner {
  max-width: 760px;
  margin: 0;
  padding: clamp(30px, 5vw, 44px);
  border: 1px solid var(--ga-redesign-line);
  background:
    radial-gradient(circle at 0 0, rgba(10, 114, 255, .14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(237, 244, 255, .72)),
    var(--ga-redesign-card);
  box-shadow:
    0 1px 2px rgba(7, 11, 20, .04),
    0 18px 44px rgba(10, 114, 255, .08);
}

.article-cta .cta-label {
  color: var(--ga-redesign-blue);
  font-family: var(--ga-redesign-mono);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
}

.article-cta h2,
.article-cta h3 {
  max-width: 560px;
  color: var(--ga-redesign-ink);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.article-cta p {
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
  color: #3b4456;
  font-size: 1rem;
  line-height: 1.62;
}

.article-cta .cta-buttons {
  justify-content: flex-start;
}

.article-cta .btn-primary,
.article-cta .cta-primary {
  border: 1px solid #095fe0;
  border-radius: 0;
  background: linear-gradient(180deg, var(--ga-redesign-blue-bright), var(--ga-redesign-blue));
  color: #ffffff;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 10px 22px rgba(10, 95, 224, .22);
}

.article-cta .btn-secondary,
.article-cta .cta-secondary {
  border: 0;
  border-bottom: 1px solid var(--ga-redesign-blue);
  color: var(--ga-redesign-blue);
  background: transparent;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
}

.article-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 40px;
  padding: 22px 0 42px;
  border-top: 1px solid var(--ga-redesign-line);
  background: transparent;
  text-align: left;
}

.article-footer p {
  color: var(--ga-redesign-muted);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 600;
}

.article-footer a {
  color: var(--ga-redesign-blue);
}

@media (max-width: 720px) {
  .article-breadcrumb,
  .article-header,
  .article-layout,
  .article-cta,
  .article-footer {
    width: calc(100% - 24px);
  }

  .article-header {
    padding: 48px 0 34px;
  }

  .article-header h1 {
    font-size: clamp(48px, 13vw, 58px);
    line-height: .95;
  }

  .article-subtitle {
    font-size: 22px;
  }

  .article-layout {
    padding-top: 32px;
  }

  .worksheet-cta,
  .article-cta .cta-inner {
    padding: 24px;
  }

  .article-content table,
  .article-content thead,
  .article-content tbody,
  .article-content tr,
  .article-content th,
  .article-content td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .article-content table {
    overflow: hidden;
  }

  .article-content tr {
    border-bottom: 1px solid var(--ga-redesign-line);
  }

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

  .article-content th,
  .article-content td {
    border-bottom: 0;
  }
}
