/* ============================================================
   article.css — single article/post page
   ============================================================ */

.article-wrap {
  padding: calc(var(--ticker-h) + 64px) 0 96px;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* ─── HERO IMAGE ─────────────────────────────────────── */
.article-hero {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── META ───────────────────────────────────────────── */
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.news-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.news-tag.tag-lineup   { background: rgba(191,255,0,.15); color: var(--lime-dark); }
.news-tag.tag-info     { background: rgba(91,43,204,.08); color: var(--purple); }
.news-tag.tag-news     { background: rgba(238,80,238,.08); color: var(--pink); }

.article-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.article-read-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .06em;
}
.article-read-time::before {
  content: '·';
  margin-right: 14px;
  color: var(--border);
}

/* ─── TITLE ──────────────────────────────────────────── */
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.article-lead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* ─── BODY ───────────────────────────────────────────── */
.article-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
}

.article-body p { margin-bottom: 24px; }

.article-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin: 40px 0 16px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}

.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 24px;
}
.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 3px solid var(--purple);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--surface2);
  border-radius: 0 12px 12px 0;
}
.article-body blockquote p {
  font-size: 17px;
  color: var(--text);
  margin: 0;
}

.article-body a { color: var(--purple); }
.article-body strong { color: var(--text); font-weight: 700; }

/* ─── DIVIDER ────────────────────────────────────────── */
.article-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ─── BACK LINK ──────────────────────────────────────── */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color .2s, gap .2s;
}
.article-back:hover { color: var(--purple); gap: 12px; }
.article-back::before { content: '←'; }

/* ─── HERO PLACEHOLDERS ──────────────────────────────── */
.news-ph-lineup   { background: linear-gradient(135deg, #1a1628 0%, #5b2bcc 100%); }
.news-ph-transport{ background: linear-gradient(135deg, #0f2a3d 0%, #1a6b8a 100%); }
.news-ph-stage    { background: linear-gradient(135deg, #1a0a0a 0%, #8a1a4a 60%, #ee50ee 100%); }
.news-ph-app      { background: linear-gradient(135deg, #0d1f0d 0%, #3a6b00 60%, #bfff00 100%); }
.news-ph-camping  { background: linear-gradient(135deg, #0a1a0a 0%, #1e4d1e 60%, #4a8a3a 100%); }

.news-ph-label {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,.12);
  text-align: center;
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .article-wrap { padding: calc(var(--ticker-h) + 64px) 24px 72px; }
  .article-hero { aspect-ratio: 16/9; border-radius: 14px; }
  .article-lead { font-size: 16px; }
  .article-body { font-size: 15px; }
}
