/* Snapdec 2026 — Newsroom (Media) page styles */

/* ─── Page header band ─── */
.nr-head {
  background: var(--paper);
  color: var(--bone);
  padding: 150px 0 64px;
}
.nr-head h1 { color: var(--bone); }
.nr-head-lead {
  color: var(--muted-dark);
  font-size: 15px;
  max-width: 520px;
}

/* ─── Article shell ─── */
.nr-article { padding: 72px 0 40px; }
.nr-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .nr-narrow { padding: 0 20px; } }

.nr-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nr-title {
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: pretty;
}
.nr-eventline {
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 20px;
  margin-bottom: 32px;
}
.nr-eventline strong { font-size: 14px; font-weight: 600; }
.nr-eventline span { font-size: 13px; color: var(--muted); }

/* ─── Figures ─── */
.nr-figure { position: relative; margin: 0 0 12px; border-radius: var(--radius-m); overflow: hidden; background: #141414; }
.nr-figure img { width: 100%; height: 460px; object-fit: cover; }
.nr-figure.is-hero img { object-position: 50% 30%; filter: brightness(1.12); }
.nr-figure-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 40%, rgba(20,20,20,.82) 100%);
  display: flex; align-items: flex-end;
  padding: 28px 32px;
}
.nr-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.nr-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ─── Body copy ─── */
.nr-body p { font-size: 16px; line-height: 1.7; color: #4A4742; margin-bottom: 16px; }
.nr-body p strong { color: var(--ink); }

/* ─── "Shared on stage" case grid ─── */
.nr-cases-label { margin: 34px 0 16px; }
.nr-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .nr-cases { grid-template-columns: 1fr; } }
.nr-case {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
}
.nr-case::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--snap), rgba(230,57,70,0));
}
.nr-case-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #7A7671; }
.nr-case-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.nr-case-name em { font-style: normal; color: var(--snap); }
.nr-case-desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ─── Photo strip ─── */
.nr-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}
@media (max-width: 720px) { .nr-photos { grid-template-columns: 1fr; } }
.nr-photos img {
  width: 100%; height: 250px; object-fit: cover;
  border-radius: var(--radius-m);
}

/* ─── Speaker card ─── */
.nr-speaker {
  display: flex;
  gap: 26px;
  align-items: center;
  background: #7A1E14;
  border-radius: var(--radius-m);
  padding: 30px;
  margin-bottom: 40px;
}
.nr-speaker img {
  width: 150px; height: 190px;
  object-fit: cover; object-position: 72% 20%;
  border-radius: var(--radius-s);
  flex-shrink: 0;
}
.nr-speaker-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; color: #F2C879;
  margin-bottom: 8px;
}
.nr-speaker-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.nr-speaker-bio { font-size: 13.5px; line-height: 1.6; color: #EFD8D1; text-align: justify; }
@media (max-width: 720px) {
  .nr-speaker { flex-direction: column; align-items: stretch; }
  .nr-speaker img { width: 100%; height: 260px; object-position: 50% 20%; }
}

/* ─── Group photo ─── */
.nr-group img { width: 100%; height: 380px; object-fit: cover; object-position: 50% 35%; border-radius: var(--radius-m); }
@media (max-width: 720px) {
  .nr-figure img, .nr-group img { height: 260px; }
}

/* ─── CTA ─── */
.nr-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
  padding: 44px 32px;
  text-align: center;
  margin-bottom: 24px;
}
.nr-cta h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 10px; text-wrap: pretty; }
.nr-cta p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
