/* ============================================================
   news.css — page-specific styles for news.html
   ============================================================ */

/* PAGE */
.page { padding: calc(var(--ticker-h) + 80px) 64px 96px; max-width: 1100px; margin: 0 auto; }
.page-label { font-family: var(--font-mono); font-size: 11px; color: var(--purple); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.page-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--lime); }
.page-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: .92; letter-spacing: -.02em; margin-bottom: 56px; }

/* POSTS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91,43,204,.1);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* 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(28px, 5vw, 52px);
  font-weight: 700;
  color: rgba(255,255,255,.15);
  text-align: center;
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
}

.news-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.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;
  background: rgba(91,43,204,.08);
  color: var(--purple);
}
.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); }

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

.news-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.news-card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  transition: gap .2s;
}
.news-card-link:hover { gap: 10px; }
.news-card-link::after { content: '→'; }

/* FEATURED (first post wider) */
.news-card.featured {
  grid-column: span 2;
  flex-direction: row;
}
.news-card.featured .news-card-img {
  width: 48%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.news-card.featured .news-card-body {
  padding: 40px;
}
.news-card.featured .news-card-title {
  font-size: clamp(24px, 3vw, 36px);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .news-card.featured { flex-direction: column; grid-column: span 2; }
  .news-card.featured .news-card-img { width: 100%; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .page { padding: calc(var(--ticker-h) + 80px) 24px 72px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
}
