/* NEWS PAGE — local styles. Prefix: n- */

.n-hero {
  background: var(--paper);
  color: var(--ink);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.n-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.n-hero__eyebrow { margin-bottom: 22px; }
.n-hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.026em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.n-hero__title em { font-style: italic; color: var(--petrol); }
.n-hero__lead {
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 46ch;
}
/* --- Hero photograph ---------------------------------------------------- */
/* Replaces the stats panel that stood in this column. The frame is 16:9 and the
   column is narrower than that at desktop width, so the ratio is fixed here and
   object-fit crops rather than letting the image dictate the hero's height.

   align-items on .n-hero__grid is `end`, which suited a panel whose last row
   wanted to sit on the baseline of the lead. An image wants the whole column,
   so it stretches instead — see the override below. */
.n-hero__figure {
  margin: 0;
  align-self: stretch;
  display: flex;
}
.n-hero__figure img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-card-lg);
  border: 1px solid var(--rule);
}

/* ============ RECOGNITION & COVERAGE ============ */
/* Moved from publications.css on 11 August 2026 with the section it styles. */
/* Sits between the hero and the feed, so it opens with less air above than
   it had as the last section of the publications page. */
.n-press {
  padding: 72px 0 80px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.n-press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.n-press-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.n-press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(48,39,27,0.18);
}
.n-press-card__outlet {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
}
.n-press-card__title {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.n-press-card__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.n-press-card__foot__link { color: var(--petrol); text-decoration: none; }

.n-press__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}
.n-press__title { max-width: 22ch; }
.n-press__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 56ch;
}

@media (max-width: 1100px) {
  .n-press__head { grid-template-columns: 1fr; gap: 32px; }
  .n-press__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .n-press__grid { grid-template-columns: 1fr; }
}

.n-feed {
  padding: 64px 0 96px;
  background: var(--paper);
}
.n-feed__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.n-feed__title { max-width: 22ch; }
.n-feed__filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.n-filter {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.n-filter:hover { border-color: var(--ink); }
.n-filter.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.n-feed__list {
  display: flex; flex-direction: column;
}
.n-post {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.n-post:first-child { border-top: 1px solid var(--rule-strong); }
.n-post:last-child  { border-bottom: 1px solid var(--rule-strong); }
.n-post__date {
  display: flex; flex-direction: column;
  gap: 4px;
}
.n-post__date__day {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.n-post__date__rest {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.n-post__body { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.n-post__meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  flex-wrap: wrap;
}
.n-post__meta__kind { color: var(--saffron); }
.n-post__meta .dot { color: var(--rule-strong); }
.n-post__title {
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.n-post__excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 60ch;
}
.n-post__channels {
  display: flex; gap: 14px; align-items: center;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.n-post__channels a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft);
  transition: color .15s;
  text-decoration: none;
}
.n-post__channels a:hover { color: var(--saffron); opacity: 1; }
.n-post__channels svg { width: 12px; height: 12px; }
.n-post__cta { align-self: start; margin-top: 6px; }
.n-post__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.n-post__btn:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  opacity: 1;
}
.n-post__btn svg { width: 11px; height: 11px; }
.n-post.is-hidden { display: none; }

@media (max-width: 1100px) {
  .n-hero__grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .n-post { grid-template-columns: 90px 1fr; }
  .n-post__cta { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .n-post { grid-template-columns: 1fr; gap: 14px; }
  .n-post__date { flex-direction: row; align-items: baseline; gap: 10px; }
}
