.page-news {
  --news-bd: rgba(159, 184, 172, 0.06);
  --news-gap: 18px;
  --news-panel: rgba(8, 40, 31, 0.78);
  position: relative;
  background-color: var(--turf);
  background-image:
    linear-gradient(to right, var(--news-bd) 1px, transparent 1px),
    linear-gradient(to bottom, var(--news-bd) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  overflow-x: hidden;
}

.page-news h1,
.page-news h2,
.page-news h3 {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.page-news p {
  margin: 0;
}

.page-news a {
  color: inherit;
}

/* breadcrumbs */
.page-news .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mist);
  margin-bottom: clamp(20px, 4vw, 40px);
}

.page-news .breadcrumbs a {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-news .breadcrumbs a:hover,
.page-news .breadcrumbs a:focus-visible {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

.page-news .breadcrumbs__sep {
  color: var(--hair-strong);
}

/* hero */
.news-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(36px, 6vw, 76px)) 0 clamp(32px, 5vw, 60px);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}

.news-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  width: 46%;
  height: 1px;
  background: linear-gradient(to left, var(--lime), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}

.news-hero__title {
  font-size: clamp(36px, 8.4vw, 96px);
  margin: 12px 0 0;
  text-transform: none;
}

.news-hero__title-line {
  display: block;
}

.news-hero__title-line--lime {
  color: var(--lime);
}

.news-hero__lede {
  margin-top: clamp(18px, 3vw, 28px);
  max-width: 60ch;
  color: var(--mist);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.85;
}

.news-hero__panel {
  display: grid;
  gap: 12px;
  transform: rotate(-1.5deg);
  align-content: start;
}

.news-hero__fact {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--hair);
  border-left: 3px solid var(--lime);
  background: linear-gradient(150deg, rgba(18, 80, 60, 0.85), var(--news-panel));
}

.news-hero__fact:nth-child(2) {
  margin-left: 14px;
}

.news-hero__fact:nth-child(3) {
  margin-left: 6px;
}

.news-hero__fact:nth-child(4) {
  margin-left: 20px;
}

.news-hero__fact b {
  font-family: var(--font-num);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  color: var(--lime);
  white-space: nowrap;
}

.news-hero__fact span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

.news-hero__fact--copper {
  border-left-color: var(--copper);
}

.news-hero__fact--copper b {
  color: var(--copper-bright);
}

/* scale rail */
.news-scale {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--hair);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-scale::-webkit-scrollbar {
  display: none;
}

.page-news .news-scale .scale-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 7px 14px;
  border: 1px solid var(--hair);
  color: var(--mist);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.page-news .news-scale .scale-link .font-num {
  color: var(--hair-strong);
  font-size: 11px;
}

.page-news .news-scale .scale-link:hover,
.page-news .news-scale .scale-link:focus-visible,
.page-news .news-scale .scale-link[data-current] {
  color: var(--turf-deep);
  background: var(--lime);
  border-color: var(--lime);
}

.page-news .news-scale .scale-link:hover .font-num,
.page-news .news-scale .scale-link:focus-visible .font-num,
.page-news .news-scale .scale-link[data-current] .font-num {
  color: rgba(8, 40, 31, 0.6);
}

/* section shell */
.news-section {
  position: relative;
  padding: clamp(40px, 6vw, 84px) 0;
  border-bottom: 1px solid var(--hair);
}

.news-section--alt {
  background: linear-gradient(180deg, rgba(8, 40, 31, 0.72), rgba(11, 61, 46, 0.2));
}

.news-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.news-section__aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.news-section__index {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  color: var(--hair-strong);
  transition: color 0.3s var(--ease);
}

.news-section[data-active] .news-section__index {
  color: var(--lime);
}

.news-section__title {
  font-size: clamp(26px, 4.4vw, 48px);
}

.news-section__note {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mist);
  max-width: 42ch;
}

.news-section__link {
  margin-top: 4px;
}

.news-section__media {
  margin-top: 6px;
}

.news-section__media--wide {
  margin: 0 0 clamp(20px, 3vw, 32px);
}

/* feature card */
.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--hair-strong);
  background: linear-gradient(160deg, rgba(18, 80, 60, 0.9), var(--news-panel));
  overflow: hidden;
}

.news-feature__body {
  padding: clamp(22px, 3.4vw, 42px);
  display: grid;
  gap: 16px;
  align-content: start;
}

.news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--mist);
}

.news-feature__title {
  font-size: clamp(24px, 3.6vw, 44px);
}

.news-feature__text {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.85;
  max-width: 54ch;
}

.news-feature__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 6px;
}

.news-feature__metrics .metric {
  background: rgba(8, 40, 31, 0.72);
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.news-feature__metrics .metric__value {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.1;
}

.news-feature__metrics .metric__label {
  font-size: 12px;
  color: var(--mist);
}

.news-feature__media {
  margin: 0;
  border-left: 1px solid var(--hair);
}

/* entries */
.news-entries {
  display: grid;
  gap: var(--news-gap);
}

.news-entry {
  position: relative;
  border: 1px solid var(--hair);
  border-left: 2px solid var(--hair-strong);
  background: rgba(8, 40, 31, 0.42);
  padding: 18px 18px 16px;
  display: grid;
  gap: 10px;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.3s var(--ease);
}

.news-entry:hover,
.news-entry:focus-within {
  border-left-color: var(--lime);
  background: rgba(18, 80, 60, 0.55);
}

.news-entry--salary:hover,
.news-entry--salary:focus-within {
  border-left-color: var(--copper);
}

.news-entry__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-entry__badge {
  flex: 0 0 auto;
  color: var(--lime);
}

.news-entry--salary .news-entry__badge {
  color: var(--copper-bright);
}

.news-entry__round {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.news-entry__title {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
}

.news-entry__sum {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

.news-entry__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 8px;
  border-top: 1px dashed var(--hair);
  font-size: 12px;
  color: var(--mist);
}

.news-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.news-stat b {
  color: var(--lime);
  font-weight: 600;
  font-size: 14px;
}

.news-stat .font-copper {
  color: var(--copper-bright);
}

.news-entry__more {
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease);
}

.news-entry__more p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--mist-soft);
  padding-top: 10px;
  border-top: 1px solid var(--hair);
}

.news-more {
  margin-top: 24px;
  font-size: 14px;
  color: var(--mist);
}

.news-more a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, 0.4);
}

.news-more a:hover,
.news-more a:focus-visible {
  border-bottom-color: var(--lime);
}

/* table */
.news-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hair);
  background: rgba(8, 40, 31, 0.55);
  margin-bottom: clamp(18px, 3vw, 30px);
  -webkit-overflow-scrolling: touch;
}

.news-table__caption {
  text-align: left;
  padding: 14px 16px 6px;
  font-size: 13px;
  color: var(--mist);
}

.page-news .news-table-wrap .data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-news .news-table-wrap .data-table th,
.page-news .news-table-wrap .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hair);
  white-space: nowrap;
}

.page-news .news-table-wrap .data-table thead th {
  background: var(--turf-deep);
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.page-news .news-table-wrap .data-table tbody th {
  font-weight: 500;
  color: var(--paper);
}

.page-news .news-table-wrap .data-table .num {
  font-family: var(--font-num);
  color: var(--copper-bright);
  font-variant-numeric: tabular-nums;
}

.page-news .news-table-wrap .data-table tbody tr:hover td,
.page-news .news-table-wrap .data-table tbody tr:hover th {
  background: rgba(18, 80, 60, 0.6);
}

.page-news .news-table-wrap .data-table [data-col-active] {
  background: rgba(198, 255, 0, 0.08);
}

/* tags */
.news-tags__head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3.4vw, 36px);
}

.news-tags__title {
  font-size: clamp(26px, 4.2vw, 46px);
  margin: 10px 0 0;
}

.news-tags__lede {
  margin-top: 14px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.85;
}

.news-taggroups {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.news-taggroup {
  border-top: 1px solid var(--hair-strong);
  padding-top: 16px;
}

.news-taggroup__title {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--mist);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 14px;
}

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

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--pill);
  font-size: 13px;
  color: var(--paper);
  text-decoration: none;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.news-tag:hover,
.news-tag:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--turf-deep);
}

.news-tag:hover .status-dot,
.news-tag:focus-visible .status-dot {
  background: var(--turf-deep);
}

/* cta */
.news-cta {
  padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
}

.news-cta__inner {
  border: 1px solid var(--hair-strong);
  border-left: 3px solid var(--copper);
  background: linear-gradient(140deg, rgba(18, 80, 60, 0.85), rgba(8, 40, 31, 0.9));
  padding: clamp(24px, 3.6vw, 44px);
  display: grid;
  gap: 22px;
}

.news-cta__title {
  font-size: clamp(24px, 3.6vw, 42px);
}

.news-cta__lede {
  margin-top: 12px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.8;
  max-width: 48ch;
}

.news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-cta__actions .btn {
  text-decoration: none;
}

/* media frames inside page */
.page-news .media-frame {
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--turf-deep);
}

.page-news .media-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .media-frame__caption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--mist);
  border-top: 1px solid var(--hair);
}

.page-news .media-frame--16x9 img {
  aspect-ratio: 16 / 9;
}

.page-news .media-frame--4x3 img {
  aspect-ratio: 4 / 3;
}

/* reveal states fallback */
.page-news [data-reveal] {
  opacity: 1;
}

@media (min-width: 700px) {
  .news-taggroups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .news-hero__grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(32px, 5vw, 72px);
  }

  .news-section__grid {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    column-gap: clamp(28px, 4vw, 64px);
  }

  .news-section__aside {
    position: sticky;
    top: calc(var(--header-h) + 28px);
  }

  .news-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .news-feature__media {
    height: 100%;
  }

  .page-news .news-feature__media img {
    height: 100%;
    aspect-ratio: auto;
  }

  .news-entries {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }

  .news-entry:nth-child(6n + 1) {
    grid-column: 1 / span 11;
  }

  .news-entry:nth-child(6n + 2) {
    grid-column: 2 / span 10;
  }

  .news-entry:nth-child(6n + 3) {
    grid-column: 1 / span 9;
  }

  .news-entry:nth-child(6n + 4) {
    grid-column: 4 / span 9;
  }

  .news-entry:nth-child(6n + 5) {
    grid-column: 2 / span 8;
  }

  .news-entry:nth-child(6n + 6) {
    grid-column: 5 / span 8;
  }

  .news-taggroups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .news-entry:nth-child(6n + 1) {
    grid-column: 1 / span 12;
  }

  .news-entry:nth-child(6n + 2) {
    grid-column: 3 / span 10;
  }
}

@media (hover: hover) and (min-width: 960px) {
  .news-entry__more {
    max-height: 0;
    opacity: 0;
  }

  .news-entry:hover .news-entry__more,
  .news-entry:focus-within .news-entry__more {
    max-height: 260px;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-entry,
  .page-news .news-tag,
  .page-news .news-scale .scale-link,
  .page-news [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .page-news .news-entry__more {
    max-height: none;
    opacity: 1;
  }
}
<<<END>>>
