.news-page {
  min-height: 100vh;
}

.news-main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 62px) 0 86px;
}

.news-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.news-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}

.news-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.news-row {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  min-height: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.news-row:hover,
.news-row:focus-visible {
  border-color: var(--line-brand);
  background: var(--surface-2);
  transform: translateY(-1px);
  outline: none;
}

.news-row-image {
  min-height: 96px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.42)),
    var(--surface-3);
  background-position: center;
  background-size: cover;
}

.news-row-copy {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: clamp(11px, 1.6vw, 17px);
}

.news-row-kicker {
  color: var(--brand-teal-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.news-row-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
}

.news-row-summary {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.news-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.news-row-tags span {
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0,0,0,.28);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

:root[data-theme="light"] .news-row-title,
body[data-theme="light"] .news-row-title {
  color: #050608;
}

:root[data-theme="light"] .news-row-summary,
body[data-theme="light"] .news-row-summary,
:root[data-theme="light"] .news-heading p,
body[data-theme="light"] .news-heading p {
  color: #151719;
}

@media (max-width: 820px) {
  .news-row {
    grid-template-columns: 1fr;
  }

  .news-row-image {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
}
