/* Erymanthian Media — AI News page styles (ai-news.html) */

/* Journal head -------------------------------------------------------------- */
.news-journal { background: var(--surface); }
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.news-head .lead { max-width: 520px; }
.news-head .eyebrow { margin-bottom: 18px; }
.news-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.news-head .aside { max-width: 340px; }
.news-head .aside p { color: var(--body); font-size: 15px; line-height: 1.6; margin: 0; }

/* Article cards -------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(22px, 2.5vw, 28px);
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -32px rgba(27, 22, 18, .4);
}
.news-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--hairline);
}
.news-card-img--sky { background-image: url('../assets/sky-section.webp'); }
.news-card-img--columns {
  background-image: url('../assets/columns-statuary.webp');
  background-position: 30% center;
}
.news-card-img--olympus { background-image: url('../assets/mount-olympus.webp'); }
.news-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card-body .tag {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
  color: var(--ink);
}
.news-card-body .date {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--faint);
}

/* CTA band -------------------------------------------------------------------- */
.news-cta {
  padding: clamp(80px, 11vw, 128px) 0;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.news-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--surface);
  margin: 0 0 36px;
}
.news-cta h2 em { font-style: italic; color: var(--gold); }
.news-cta .btn--primary { padding: 17px 34px; font-size: 15px; }
.news-cta .btn--primary span[aria-hidden] { font-size: 16px; }
