/* Article-specific styles. Loaded after styles.css. */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 32px) clamp(60px, 8vw, 100px);
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-dim); transition: color .15s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { padding: 0 4px; opacity: 0.5; }

.article-head {
  text-align: left;
  margin-bottom: 40px;
}
.article-head .eyebrow {
  margin-bottom: 16px;
}
.article-head h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.article-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 18px;
}
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}
.article-body p {
  margin: 0 0 1.2em;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.2em 0 0.6em;
  padding-top: 0.6em;
  border-top: 1px solid var(--border);
}
.article-body h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 1.8em 0 0.5em;
}
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
  color: var(--text);
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  margin: 0.5em 0;
  color: var(--text-dim);
}
.article-body li::marker {
  color: var(--accent);
}
.article-body strong { color: var(--text); font-weight: 700; }
.article-body em { color: var(--text-dim); font-style: italic; }
.article-body a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s, color .15s;
}
.article-body a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.article-cta {
  margin: 3em 0 2em;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background-image: linear-gradient(135deg, rgba(167,139,250,0.08), rgba(34,211,238,0.06));
}
.article-cta h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}
.article-cta p {
  color: var(--text-dim);
  margin: 0 0 16px;
  font-size: 15px;
}

.article-footer-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-footer-nav a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color .15s;
}
.article-footer-nav a:hover {
  color: var(--accent-2);
}
