/* =============================================================
   NEWS.CSS — News & updates: featured card + secondary stack + briefs
   ============================================================= */

.news {
  background: var(--c-bg-warm);   /* subtle warm shift from events section */
  padding: 7rem 0;
}

.news__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* =============================================
   SECTION HEADER
   ============================================= */

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.news__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.625rem;
}

.news__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-text);
  line-height: 1;
}

.news__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text-mid);
  border-bottom: 1px solid var(--c-border-warm);
  padding-bottom: 0.125rem;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 0.25rem;
  transition:
    color        0.22s var(--ease-expo),
    border-color 0.22s var(--ease-expo);
}

.news__all-link:hover { color: var(--c-text); border-color: var(--c-accent-lt); }

.news__all-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.22s var(--ease-expo);
}

.news__all-link:hover .news__all-arrow { transform: translateX(3px) translateY(-1px); }

.news-page__archive-link {
  margin-top: 2.5rem;
  align-self: auto;
}


/* =============================================
   SHARED: tags + dates
   ============================================= */

.news__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  border: 1px solid transparent;
  line-height: 1;
}

.news__tag--foundation   { color: var(--c-accent);    border-color: rgba(122,92,46,.28);  background: rgba(122,92,46,.06);  }
.news__tag--museum       { color: #5C7A5A;             border-color: rgba(92,122,90,.28);  background: rgba(92,122,90,.06);  }
.news__tag--statement    { color: var(--c-text-mid);   border-color: var(--c-border-warm); background: rgba(196,163,90,.07); }
.news__tag--press        { color: #4A5A7A;             border-color: rgba(74,90,122,.28);  background: rgba(74,90,122,.06);  }
.news__tag--partnership  { color: #8B4A3A;             border-color: rgba(139,74,58,.28);  background: rgba(139,74,58,.06);  }
.news__tag--call         { color: var(--c-accent);     border-color: rgba(122,92,46,.28);  background: rgba(196,163,90,.10); }
.news__tag--archive      { color: var(--c-text-light); border-color: var(--c-border-warm); background: rgba(168,152,133,.08); }

.news__date {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--c-text-light);
  letter-spacing: 0.04em;
}

.news__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-accent);
  transition: gap 0.22s var(--ease-expo), color 0.22s var(--ease-expo);
}

.news__read-more:hover { gap: 0.625rem; color: var(--c-text); }
.news__read-more--dark { color: var(--c-text-mid); }
.news__read-more--dark:hover { color: var(--c-text); }


/* =============================================
   PINNED BANNER — open call/competition (see isPinned in scripts/build.js).
   Kept out of the image-hero featured slot so a no-image announcement
   doesn't dominate the grid — a compact full-width notice instead.
   ============================================= */

.news__pinned {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid var(--c-border-warm);
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  transition: background 0.22s var(--ease-expo), transform 0.22s var(--ease-expo);
}

.news__pinned:hover {
  background: rgba(196, 163, 90, 0.18);
  transform: translateY(-1px);
}

.news__pinned + .news__pinned { margin-top: 0.75rem; }

.news__pinned-icon {
  display: flex;
  align-items: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.news__pinned-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  line-height: 1.3;
  flex: 1;
}

.news__pinned-arrow {
  display: flex;
  align-items: center;
  color: var(--c-text-mid);
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-expo);
}

.news__pinned:hover .news__pinned-arrow { transform: translateX(3px); }

.news-page__pinned { margin-bottom: 2rem; }

@media (max-width: 560px) {
  .news__pinned { flex-wrap: wrap; }
  .news__pinned-title { flex-basis: 100%; order: 3; }
}


/* =============================================
   PRIMARY GRID: featured (58) + stack (42)
   ============================================= */

.news__primary-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 1.5rem;
  align-items: start;
}

/* --- FEATURED ARTICLE --- */

.news__featured {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--c-text);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow:
    0 20px 48px rgba(28, 20, 16, 0.12),
    0 4px 12px  rgba(28, 20, 16, 0.06);
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
}

.news__featured:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 64px rgba(28, 20, 16, 0.16),
    0 8px 20px  rgba(28, 20, 16, 0.08);
}

.news__featured-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.news__featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-expo);
}

.news__featured:hover .news__featured-img { transform: scale(1.04); }

/* No image — skip the reserved 16/10 image slot entirely instead of showing an empty bleed */
.news__featured--no-image .news__featured-content {
  padding-top: 2.25rem;
}

/* Full gradient overlay — image bleeds into dark content area */
.news__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(28, 20, 16, 0.5) 100%
  );
  pointer-events: none;
}

/* Content sits below the image */
.news__featured-content {
  padding: 1.875rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: var(--c-text);
}

.news__featured-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Tags on dark background */
.news__featured .news__tag--foundation,
.news__featured .news__tag--call {
  color: var(--c-accent-lt);
  border-color: rgba(196, 163, 90, 0.3);
  background: rgba(196, 163, 90, 0.1);
}

.news__featured .news__date { color: rgba(253, 250, 244, 0.35); }

.news__featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.news__featured-title a {
  color: rgba(253, 250, 244, 0.95);
  transition: color 0.22s var(--ease-expo);
}

.news__featured-title a:hover { color: var(--c-accent-lt); }

/* Stretch the title link over the whole card so the entire card is clickable */
.news__featured-title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.news__featured-excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(253, 250, 244, 0.52);
  line-height: 1.75;
  max-width: 54ch;
}

.news__featured .news__read-more {
  color: var(--c-accent-lt);
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

.news__featured .news__read-more:hover { color: rgba(253, 250, 244, 0.9); }


/* --- SECONDARY STACK --- */

.news__secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Article 2 — image + text */
.news__secondary {
  background: var(--c-bg);
  border: 1px solid var(--c-border-warm);
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 16px rgba(122, 92, 46, 0.05);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
}

.news__secondary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 32px rgba(122, 92, 46, 0.09);
}

.news__secondary-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
}

.news__secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}

.news__secondary:hover .news__secondary-img { transform: scale(1.04); }

/* Media slot for articles without an image — keeps the same aspect-ratio slot
   as image cards so a mixed grid doesn't wobble between tall and bare-text cards */
.news__secondary-img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-bg-warm) 0%, var(--c-bg-deep) 100%);
}

.news__secondary-placeholder-icon {
  display: flex;
  color: var(--c-accent-lt);
  opacity: 0.6;
  transition: transform 0.7s var(--ease-expo);
}

.news__secondary:hover .news__secondary-placeholder-icon { transform: scale(1.08); }

.news__secondary-content {
  padding: 1.25rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news__secondary-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.news__secondary-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-top: 0.125rem;
}

.news__secondary-title a {
  color: var(--c-text);
  transition: color 0.22s var(--ease-expo);
}

.news__secondary-title a:hover { color: var(--c-accent); }

/* Stretch the title link over the whole card so the entire card is clickable */
.news__secondary-title a::after {
  content: '';
  position: absolute;
  inset: 0;
}


/* Article 3 — quote/statement, no image */
.news__quote-article {
  background: var(--c-bg-deep);   /* slightly deeper warm cream */
  border: 1px solid var(--c-border-warm);
  border-radius: 1.25rem;
  padding: 1.625rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.4s var(--ease-expo);
}

/* Stretch the "read more" link over the whole card so the entire card is clickable */
.news__quote-article .news__read-more::after {
  content: '';
  position: absolute;
  inset: 0;
}

.news__quote-article:hover { transform: translateY(-2px); }

.news__quote-article-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.news__quote-article-body {
  border-left: 2px solid var(--c-accent-lt);
  padding-left: 1rem;
}

.news__quote-article-body p {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.news__quote-article-source {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--c-text-light);
  letter-spacing: 0.04em;
}


/* =============================================
   BRIEF ITEMS — two-column text strip
   ============================================= */

.news__briefs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--c-border);
}

.news__brief {
  padding: 1.75rem 2rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

/* Vertical divider between the two briefs */
.news__brief:first-child {
  border-right: 1px solid var(--c-border);
  padding-right: 2rem;
}

.news__brief:last-child {
  padding-left: 2rem;
}

.news__brief-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.news__brief-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
}

.news__brief-title a {
  color: var(--c-text);
  transition: color 0.22s var(--ease-expo);
}

.news__brief-title a:hover { color: var(--c-accent); }

/* Stretch the title link over the whole card so the entire card is clickable */
.news__brief-title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.news__brief-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-border-warm);
  color: var(--c-text-mid);
  align-self: flex-start;
  margin-top: 0.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    background   0.22s var(--ease-expo),
    color        0.22s var(--ease-expo),
    border-color 0.22s var(--ease-expo),
    transform    0.22s var(--ease-expo);
}

.news__brief-link:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
  transform: translateX(2px) translateY(-2px);
}

/* Put the link to the right by using flex-row on the brief */
.news__brief {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  row-gap: 0.625rem;
}

.news__brief-top  { grid-column: 1 / -1; }
.news__brief-title { grid-column: 1; grid-row: 2; align-self: start; }
.news__brief-link  { grid-column: 2; grid-row: 2; align-self: start; }


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 900px) {
  .news__primary-grid {
    grid-template-columns: 1fr;
  }

  .news__secondary-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 5rem 0;
  }

  .news__inner {
    padding: 0 1.25rem;
    gap: 2rem;
  }

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .news__all-link {
    align-self: flex-start;
    margin-bottom: 0;
  }

  .news__secondary-stack {
    grid-template-columns: 1fr;
  }

  .news__briefs {
    grid-template-columns: 1fr;
  }

  .news__brief:first-child {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 1.75rem;
  }

  .news__brief:last-child {
    padding-left: 0;
    padding-top: 1.75rem;
  }
}

@media (max-width: 480px) {
  .news__featured-content { padding: 1.5rem 1.25rem; }
}


/* =============================================================
   NEWS LISTING PAGE (/news/) — generated by scripts/build.js
   ============================================================= */

.news-page {
  background: var(--c-bg);
  padding: calc(var(--nav-height) + 3rem) 0 7rem;
  min-height: 100dvh;
}

.news-page__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.news-page__header {
  margin-bottom: 3rem;
  max-width: 46ch;
}

.news-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-page__grid .news__secondary { height: 100%; }

.news-page__grid .news__secondary.is-filtered-out,
.news-page__grid .news__secondary.is-year-filtered-out,
.news-page__grid .news__secondary.is-more-hidden { display: none; }

/* =============================================
   ARCHIVE — progressive "load more" reveal (see main.js)
   ============================================= */

.news-page__load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  margin-top: 3rem;
}

.news-page__load-more-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--c-text-light);
  letter-spacing: 0.02em;
}

/* =============================================
   LISTING FILTERS — simple tag pills (see main.js)
   ============================================= */

.news-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.news-page__filter {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text-mid);
  background: var(--c-bg);
  border: 1px solid var(--c-border-warm);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition:
    color        0.22s var(--ease-expo),
    background   0.22s var(--ease-expo),
    border-color 0.22s var(--ease-expo),
    transform    0.22s var(--ease-expo);
}

.news-page__filter:hover {
  color: var(--c-text);
  border-color: var(--c-accent-lt);
  transform: translateY(-1px);
}

.news-page__filter.is-active {
  color: var(--c-bg);
  background: var(--c-accent);
  border-color: var(--c-accent);
}

/* =============================================
   ARCHIVE — year range slider (see main.js)
   ============================================= */

.news-page__year-range {
  background: var(--c-bg);
  border: 1px solid var(--c-border-warm);
  border-radius: 1.25rem;
  padding: 1.375rem 1.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.news-page__year-range-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.375rem;
}

.news-page__year-range-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

.news-page__year-range-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.news-page__year-range-sep {
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--c-text-light);
  font-weight: 300;
}

/* Track: a hairline with a highlighted fill between the two handles */
.news-page__year-range-track {
  position: relative;
  height: 2px;
  background: var(--c-border-warm);
  border-radius: 2px;
  margin: 0 0.5rem;
}

.news-page__year-range-fill {
  position: absolute;
  inset: 0 auto;
  top: 0;
  bottom: 0;
  background: var(--c-accent-lt);
  border-radius: 2px;
}

/* Two overlaid native range inputs — only their thumbs are interactive
   (pointer-events re-enabled on ::-webkit/-moz-range-thumb only) so dragging
   one handle never fights the other for the click. */
.news-page__year-range-input {
  position: absolute;
  inset: -9px 0;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}

.news-page__year-range-input[data-range-input='from'] { z-index: 3; }
.news-page__year-range-input[data-range-input='to']   { z-index: 4; }

.news-page__year-range-input::-webkit-slider-runnable-track { background: transparent; }
.news-page__year-range-input::-moz-range-track { background: transparent; border: none; }

.news-page__year-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-accent);
  box-shadow: 0 1px 4px rgba(122, 92, 46, 0.25);
  cursor: pointer;
  transition: transform 0.18s var(--ease-expo), box-shadow 0.18s var(--ease-expo);
}

.news-page__year-range-input::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-accent);
  box-shadow: 0 1px 4px rgba(122, 92, 46, 0.25);
  cursor: pointer;
  transition: transform 0.18s var(--ease-expo), box-shadow 0.18s var(--ease-expo);
}

.news-page__year-range-input:hover::-webkit-slider-thumb,
.news-page__year-range-input:active::-webkit-slider-thumb,
.news-page__year-range-input:focus-visible::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(122, 92, 46, 0.32);
}

.news-page__year-range-input:hover::-moz-range-thumb,
.news-page__year-range-input:active::-moz-range-thumb,
.news-page__year-range-input:focus-visible::-moz-range-thumb {
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(122, 92, 46, 0.32);
}

.news-page__year-range-input:focus-visible {
  outline: none;
}

.news-page__year-range-scale {
  display: flex;
  justify-content: space-between;
  margin: 0.625rem 0.5rem 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--c-text-light);
  letter-spacing: 0.02em;
}

.news-page__excerpt {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-text-mid);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .news-page { padding: calc(var(--nav-height) + 2rem) 0 5rem; }
  .news-page__inner { padding: 0 1.25rem; }
}


/* =============================================================
   NEWS ARTICLE DETAIL PAGE (/news/:slug/) — generated by scripts/build.js
   ============================================================= */

.news-article {
  background: var(--c-bg);
  padding: calc(var(--nav-height) + 3rem) 0 7rem;
  min-height: 100dvh;
}

.news-article__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.news-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-mid);
  margin-bottom: 2.5rem;
  transition: color 0.22s var(--ease-expo), gap 0.22s var(--ease-expo);
}

.news-article__back:hover { color: var(--c-accent); gap: 0.75rem; }
.news-article__back svg { transform: rotate(180deg); }

.news-article__header {
  max-width: 65ch;
  margin: 0 0 2.5rem;
}

.news-article__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.news-article__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-text);
}

.news-article__image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 48px rgba(28, 20, 16, 0.1);
  transition: transform 0.4s var(--ease-expo);
}

/* Wraps .news-article__image (news detail + reused by event detail) — cropped by
   the aspect-ratio above, so clicking opens the uncropped image in #lightbox. */
.news-article__image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  margin-bottom: 2.5rem;
}

.news-article__image-trigger:hover .news-article__image { transform: scale(1.015); }


/* =============================================================
   IMAGE LIGHTBOX — shared singleton in index.html's BUILD:CHROME
   block, toggled by js/main.js. Full, uncropped view of the image.
   ============================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: rgba(28, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--ease-expo);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.36s var(--ease-expo);
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-bg);
  background: rgba(253, 250, 244, 0.12);
  border: 1px solid rgba(253, 250, 244, 0.25);
  transition: background 0.22s var(--ease-expo), transform 0.22s var(--ease-expo);
}

.lightbox__close:hover {
  background: rgba(253, 250, 244, 0.22);
  transform: scale(1.06);
}

@media (max-width: 480px) {
  .lightbox { padding: 2rem 1.25rem; }
  .lightbox__close { top: 1rem; right: 1rem; }
}

.news-article__body {
  max-width: 65ch;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text-mid);
}

.news-article__body p { margin-bottom: 1.5rem; }
.news-article__body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .news-article { padding: calc(var(--nav-height) + 2rem) 0 5rem; }
  .news-article__inner { padding: 0 1.25rem; }
}
