/* ═══════════════ News & Events page ═══════════════ */

.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { width: 100%; }

.news-hero {
  min-height: 70vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3.5rem 4.5rem;
  position: relative; overflow: hidden;
}
.news-hero-bg { position: absolute; inset: 0; z-index: 0; }
.news-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top;
  opacity: 0.62; filter: grayscale(25%) contrast(1.1);
}
.news-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 40%,
    rgba(10,10,10,0.9) 85%, var(--black) 100%);
}
.news-hero-content {
  position: relative; z-index: 2; max-width: 900px;
  animation: heroIn 1.2s cubic-bezier(0.23,1,0.32,1) forwards;
}
.news-hero-content h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem,6.5vw,5.5rem); font-weight: 400;
  line-height: 0.98; color: var(--white-true);
  margin-bottom: 1.6rem; letter-spacing: -0.03em;
}
.news-hero-content h1 em { font-style: italic; color: var(--yellow); }
.news-hero-content .hero-sub {
  display: inline-block;
  font-size: 1.1rem; line-height: 1.8; color: var(--grey-100);
  max-width: 620px; font-weight: 400; margin-bottom: 0;
  background: rgba(8,8,8,0.72);
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  border-left: 2px solid var(--yellow);
}

/* Latest news feature cards */
.news-feature { background: var(--black); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.news-card {
  background: var(--black-mid); border: 1px solid var(--grey-800);
  overflow: hidden; transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.news-card:hover { border-color: var(--yellow); transform: translateY(-5px); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; }
.news-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 6s ease, filter 0.8s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); filter: grayscale(0%) contrast(1.1); }
.news-card-body { padding: 2.2rem 2rem 2.4rem; }
.news-card-body .tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; display: block;
}
.news-card-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem; font-weight: 400; line-height: 1.2;
  margin-bottom: 0.9rem; color: var(--white-true);
}
.news-card-body .desc { font-size: 0.98rem; line-height: 1.75; color: var(--grey-500); margin-bottom: 1.4rem; }
.news-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--yellow); text-decoration: none; border-bottom: 1px solid rgba(242,199,68,0.4);
  padding-bottom: 2px; transition: border-color 0.3s;
}
.news-link:hover { border-color: var(--yellow); }

/* Gallery mosaic reuses .showcase / .showcase-img, just allows wrap to more rows */
.gallery-section { background: var(--black); padding-top: 0; }
.gallery-mosaic { margin: 0; }

/* Event films */
.video-section { background: var(--black-soft); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  overflow: hidden; border: 1px solid var(--grey-800); background: var(--black);
  transition: border-color 0.4s;
}
.video-card:hover .video-frame { border-color: var(--yellow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption {
  margin-top: 1rem; font-size: 0.92rem; color: var(--grey-300);
  line-height: 1.6; text-align: center;
}

/* Press coverage */
.press-section { background: var(--white); color: var(--black); }
.press-section .sec-title { color: var(--black); }
.press-section .sec-desc { color: var(--grey-700); }
.press-section .sec-tag { color: var(--yellow-deep); }
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.press-card {
  display: block; text-decoration: none; color: var(--black);
  border: 1px solid var(--grey-200); background: var(--white-true);
  overflow: hidden; transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.press-card:hover { border-color: var(--yellow-deep); transform: translateY(-4px); }
.press-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
}
.press-card-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.press-card-body { padding: 1.4rem 1.5rem 1.7rem; }
.press-card-body .tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow-deep); display: block; margin-bottom: 0.6rem;
}
.press-card-body h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem; font-weight: 400; line-height: 1.3; color: var(--black);
}
/* Blog */
.blog-section { background: var(--black-soft); }
.blog-article { max-width: 720px; margin: 0 auto; }
.blog-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 2.2rem;
}
.blog-article p {
  font-size: 1.08rem; line-height: 1.9; color: var(--grey-300);
  margin-bottom: 1.5rem;
}
.blog-article .blog-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1.9rem; line-height: 1.35;
  color: var(--yellow); text-align: center;
  margin: 3rem auto; max-width: 560px;
}
.blog-article .blog-lines {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem; line-height: 1.7; color: var(--white-true);
  text-align: center; margin: 2.5rem auto; max-width: 520px;
}
.blog-article .blog-lines-close { color: var(--yellow); font-size: 1.6rem; }
.blog-list {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  border-top: 1px solid var(--grey-800);
}
.blog-list li {
  font-size: 1rem; line-height: 1.6; color: var(--grey-300);
  padding: 1rem 0; border-bottom: 1px solid var(--grey-800);
}

@media (max-width: 1024px) {
  .news-hero { padding: 0 2.5rem 3.5rem; min-height: 60vh; }
  .news-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .news-hero { padding: 0 1.5rem 3rem; }
  .press-grid { grid-template-columns: 1fr; }
  .blog-article .blog-quote { font-size: 1.5rem; }
  .blog-article .blog-lines { font-size: 1.15rem; }
}
