/* Reader-facing editorial surfaces: press, news, about. */

.editorial-page main {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.editorial-page .hero {
  min-height: 22rem;
}

.editorial-section {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}

.editorial-section--narrow {
  width: min(52rem, calc(100% - 2rem));
}

.editorial-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.editorial-section h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.editorial-section p,
.editorial-section li {
  color: var(--text);
  line-height: 1.72;
}

.editorial-section p + p {
  margin-top: 1rem;
}

.editorial-section a:not(.button):not(.press-asset) {
  color: var(--accent-strong);
  text-underline-offset: 0.2em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border);
  background: var(--surface);
}

.editorial-card .eyebrow {
  margin-bottom: 0.65rem;
}

.press-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-block: 1px solid var(--border);
}

.press-facts > div {
  padding: 1.25rem;
}

.press-facts > div + div {
  border-left: 1px solid var(--border);
}

.press-facts dt {
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.press-asset {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}

.press-asset:hover {
  border-color: var(--accent);
  background: var(--surface-strong);
}

.press-asset img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 0.08);
}

.press-asset strong {
  font-size: 1rem;
}

.press-asset small {
  color: var(--muted);
  line-height: 1.45;
}

.news-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border);
  background: var(--surface);
}

.news-item time {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-item h2,
.news-item h3 {
  margin: 0;
}

.news-item p {
  margin: 0;
  color: var(--muted);
}

.notice {
  padding: 1rem 1.15rem;
  border-left: 0.2rem solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 48rem) {
  .editorial-grid,
  .press-assets,
  .press-facts {
    grid-template-columns: 1fr;
  }

  .press-facts > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media print {
  .press-assets {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .press-asset img {
    display: none;
  }

  .editorial-card,
  .news-item,
  .press-asset,
  .notice {
    background: white;
    color: black;
  }
}
