.page-news {
  --news-hero-pad: 48px 0;
  --news-card-shadow: 0 2px 14px rgba(27, 42, 39, 0.07);
  --news-float-shadow: 0 10px 36px rgba(27, 42, 39, 0.16);
}

.page-news .news-hero {
  background: var(--primary);
  color: var(--cream);
  overflow: hidden;
}

.page-news .news-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: var(--news-hero-pad);
}

.page-news .news-hero-content {
  max-width: 680px;
}

.page-news .news-hero-tag {
  margin-bottom: 18px;
}

.page-news .news-hero-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 20px;
}

.page-news .news-hero-title br {
  display: none;
}

.page-news .news-hero-lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(245, 240, 230, 0.88);
  max-width: 60ch;
  margin: 0 0 28px;
}

.page-news .news-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
}

.page-news .news-hero-stats .stat {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.2;
}

.page-news .news-hero-stats .stat small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.82;
}

.page-news .news-hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--news-float-shadow);
  background: var(--primary-deep);
}

.page-news .news-hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 39, 0.7);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08) 25%, transparent 25% 50%, rgba(245, 197, 24, 0.06) 50% 75%, transparent 75%);
  background-size: 22px 22px;
}

.page-news .news-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-categories {
  padding-bottom: 12px;
}

.page-news .news-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-news .news-category-tabs .tabs-tab {
  appearance: none;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 9px 22px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-category-tabs .tabs-tab:hover {
  background: rgba(201, 162, 39, 0.12);
}

.page-news .news-category-tabs .tabs-tab[aria-selected="true"] {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 92, 74, 0.24);
}

.page-news .news-latest {
  padding-top: 8px;
}

.page-news .news-latest-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .tabs-panel {
  display: grid;
  gap: 28px;
  margin-top: 32px;
  border-top: 1px solid var(--mist);
  padding-top: 28px;
}

.page-news .news-article-card {
  display: grid;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--news-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--news-float-shadow);
}

.page-news .news-article-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.page-news .news-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-article-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.page-news .news-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(27, 42, 39, 0.58);
}

.page-news .news-article-title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--ink);
  margin: 0;
}

.page-news .news-article-excerpt {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(27, 42, 39, 0.72);
  margin: 0;
}

.page-news .news-compact {
  display: grid;
  gap: 12px;
}

.page-news .news-compact-item {
  border-left: 3px solid var(--gold);
  padding: 14px 18px 15px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-news .news-compact-item:hover {
  background: var(--white);
  transform: translateX(4px);
}

.page-news .news-compact-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 6px;
}

.page-news .news-compact-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 5px;
}

.page-news .news-compact-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(27, 42, 39, 0.62);
  margin: 0;
}

.page-news .news-tags {
  background: var(--primary-deep);
  color: var(--cream);
  margin-top: 56px;
}

.page-news .news-tags .section-title {
  color: var(--white);
}

.page-news .news-tags .section-description {
  color: rgba(245, 240, 230, 0.7);
}

.page-news .news-tags .eyebrow-vertical {
  color: var(--gold-bright);
}

.page-news .news-tags-cloud {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-news .news-tags-cloud .tag {
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-news .news-tags-cloud .tag:hover {
  border-color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.16);
}

.page-news .news-tags-cloud .tag--gold {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.14);
}

.page-news .news-tags-more {
  margin-top: 22px;
}

.page-news .news-tags-more summary {
  cursor: pointer;
  width: fit-content;
  list-style: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-bright);
  padding: 7px 16px;
  border: 1px dashed rgba(201, 162, 39, 0.6);
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.05);
  transition: background 0.25s ease, color 0.25s ease;
}

.page-news .news-tags-more summary::-webkit-details-marker {
  display: none;
}

.page-news .news-tags-more summary:hover {
  background: rgba(201, 162, 39, 0.14);
  color: var(--white);
}

.page-news .news-tags-more[open] summary {
  margin-bottom: 14px;
}

.page-news .news-subscribe {
  padding-top: 32px;
  padding-bottom: 72px;
}

.page-news .news-subscribe-card {
  display: grid;
  gap: 24px;
  padding: 26px 26px 28px;
  background: var(--cream);
  border: 1px solid var(--mist);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--news-card-shadow);
}

.page-news .news-subscribe-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-subscribe-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.page-news .news-subscribe-note {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(27, 42, 39, 0.74);
  margin: 0;
  max-width: 62ch;
}

.page-news .news-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (min-width: 900px) {
  .page-news {
    --news-hero-pad: 72px 0;
  }

  .page-news .news-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 56px;
  }

  .page-news .news-hero-title {
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 1.14;
  }

  .page-news .news-hero-title br {
    display: inline;
  }

  .page-news .news-hero-visual {
    aspect-ratio: 16 / 10;
  }

  .page-news .news-category-tabs {
    padding-left: 8%;
  }

  .page-news .news-latest-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: end;
    gap: 20px;
    padding-left: 8%;
  }

  .page-news .news-latest-head .section-description {
    margin-bottom: 2px;
    text-align: right;
  }

  .page-news .tabs-panel {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    padding-left: 8%;
    padding-right: 3%;
  }

  .page-news .news-article-card {
    grid-column: 1 / 2;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    padding: 18px;
  }

  .page-news .news-article-media {
    height: 100%;
    aspect-ratio: auto;
    min-height: 180px;
  }

  .page-news .news-compact {
    grid-column: 2 / 3;
    margin-top: 6px;
  }

  .page-news .news-compact-item {
    padding: 18px 20px;
  }

  .page-news .news-subscribe-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 34px 38px;
  }

  .page-news .news-subscribe-actions {
    justify-content: flex-end;
  }
}
