/* ═══════════════════════════════════════════
   ARTICOLO — single post layout
═══════════════════════════════════════════ */

.article-hero {
  min-height: 45vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 40px 48px; position: relative;
}
.article-hero::after {
  content: ''; position: absolute; bottom: 0; left: 40px; right: 40px;
  height: 1px; background: rgba(255,255,255,0.06);
}
.article-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.article-date {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  color: var(--steel-faint);
}
.article-category {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  padding: 3px 10px; border: 1px solid var(--red);
}
.article-reading {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em;
  color: var(--steel-faint);
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  text-transform: uppercase; max-width: 800px;
}
.article-title .accent { color: var(--red); }
.article-subtitle {
  margin-top: 16px; max-width: 560px;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.75;
  color: var(--steel-dim); font-weight: 300;
}

/* Article body */
.article-body {
  max-width: 680px; margin: 0 auto;
  padding: 64px 40px 80px;
}
.article-body h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em; margin: 48px 0 20px; color: var(--steel);
  position: relative; padding-left: 20px;
}
.article-body h2::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 3px; height: 18px; background: var(--red);
}
.article-body p {
  font-family: var(--font-display); font-size: 15px; line-height: 1.85;
  color: var(--steel-dim); margin-bottom: 24px; font-weight: 300;
}
.article-body p:first-child { margin-top: 0; }
.article-body .lead {
  font-size: 17px; line-height: 1.8; color: var(--steel);
  font-weight: 400; margin-bottom: 32px;
}
.article-body blockquote {
  margin: 40px 0; padding: 24px 0 24px 24px;
  border-left: 2px solid var(--red);
  font-family: var(--font-display); font-size: 16px; font-weight: 400;
  line-height: 1.7; color: var(--steel); font-style: italic;
}
.article-body .section-break {
  margin: 48px 0; height: 1px;
  background: rgba(255,255,255,0.04);
}

/* Pull quote */
.article-pull {
  max-width: 680px; margin: 0 auto;
  padding: 0 40px 48px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.article-pull p {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  line-height: 1.6; color: var(--steel); letter-spacing: -0.01em;
}
.article-pull .accent { color: var(--red); }

/* Article nav (prev/next) */
.article-nav {
  max-width: 680px; margin: 0 auto;
  padding: 48px 40px; display: flex; justify-content: space-between; align-items: center;
}
.article-back {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--steel-dim); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.3s;
}
.article-back::before { content: '←'; transition: transform 0.3s var(--ease-expo); }
.article-back:hover { color: var(--red); }
.article-back:hover::before { transform: translateX(-4px); }

/* Responsive */
@media (max-width: 768px) {
  .article-hero { padding: 0 20px 36px; min-height: 35vh; }
  .article-body { padding: 40px 20px 60px; }
  .article-pull { padding: 0 20px 36px; }
  .article-nav { padding: 36px 20px; }
}
