.page-news {
  --page-gutter: clamp(1rem, 4vw, 3rem);
  --page-card-radius: 10px;
  --page-cut: 14px;
  --page-section-space: clamp(3.5rem, 8vw, 6.5rem);
  --page-green: #2B6E2C;
  --page-bright: #6BBF3A;
  --page-yellow: #FFD632;
  --page-dark: #2E3B31;
  --page-paper: #F2E8D5;
  --page-card-bg: #FFF6E5;
  --page-edge: #E5D8C0;
  color: var(--ink);
  background-color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: clip;
}

.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

.page-news .news-shell {
  padding-block: clamp(2rem, 5vw, 4rem) 5rem;
}

.page-news .news-masthead {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-block-end: 2rem;
  border-bottom: 2px solid var(--ink);
}

.page-news .news-masthead__text .hero-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-green);
}

.page-news .news-masthead h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.page-news .news-masthead .hero-lead {
  max-width: 46rem;
  margin: 0;
  font-size: 1rem;
  color: var(--gray-ink);
}

.page-news .breadcrumb {
  font-size: 0.88rem;
}

.page-news .breadcrumb a {
  color: var(--page-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-news .breadcrumb a:hover {
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.page-news .section-block {
  padding-block-start: var(--page-section-space);
}

.page-news .section-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.page-news .section-title .section-index {
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--page-green);
  border: 2px solid currentColor;
  padding: 0.2em 0.5em;
  line-height: 1;
}

.page-news .section-title .section-kicker {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-green);
  padding-top: 0.45em;
}

.page-news .section-title .section-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.3;
}

.page-news .section-title .section-line {
  flex: 1;
  min-width: 3rem;
  height: 2px;
  background: var(--page-edge);
  align-self: center;
  margin-left: 0.35rem;
}

.page-news .feature-story {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--page-card-bg);
  border-radius: var(--page-cut);
  overflow: hidden;
  border: 1px solid var(--page-edge);
}

.page-news .feature-story__media {
  position: relative;
  background: var(--page-dark);
}

.page-news .feature-story__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.page-news .feature-story__round {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--page-yellow);
  color: var(--ink);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.page-news .feature-story__content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.page-news .story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.page-news .story-date {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--gray-ink);
  white-space: nowrap;
}

.page-news .feature-story__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.page-news .feature-story__text {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  color: var(--gray-ink);
}

.page-news .feature-story__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.page-news .news-list {
  margin-top: 1.75rem;
}

.page-news .news-list > * {
  min-width: 0;
}

.page-news .story-card {
  display: flex;
  flex-direction: column;
  background: var(--page-card-bg);
  border: 1px solid var(--page-edge);
  border-radius: var(--page-card-radius);
  overflow: hidden;
  position: relative;
}

.page-news .story-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background: var(--page-bright);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-news .story-card:hover::after {
  opacity: 1;
}

.page-news .story-card__media {
  background: var(--page-dark);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-news .story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.page-news .story-card:hover .story-card__media img {
  transform: scale(1.03);
}

.page-news .story-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}

.page-news .story-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
}

.page-news .story-card__text {
  margin: 0 0 0.9rem;
  color: var(--gray-ink);
  font-size: 0.92rem;
  flex: 1;
}

.page-news .story-more {
  background: var(--page-dark);
  color: #f5f5ec;
  border-radius: var(--page-card-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.page-news .story-more::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 9rem;
  height: 9rem;
  background: var(--page-bright);
  transform: rotate(12deg);
  opacity: 0.35;
}

.page-news .story-more__num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--page-yellow);
  line-height: 1;
  display: block;
  margin-bottom: 1.4rem;
}

.page-news .story-more__label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.page-news .story-more__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin: 0 0 1.2rem;
}

.page-news .story-more .button {
  align-self: flex-start;
  pointer-events: auto;
}

.page-news .archive-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.page-news .archive-shelf {
  background: var(--page-dark);
  color: #f5f5ec;
  border-radius: var(--page-cut);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: 1rem;
  align-self: start;
}

.page-news .archive-shelf__title {
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--page-yellow);
  margin: 0 0 0.35rem;
}

.page-news .archive-shelf .filter-chip {
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.page-news .archive-shelf .filter-chip:hover {
  background: var(--page-bright);
  color: #12210f;
  border-color: var(--page-bright);
}

.page-news .archive-shelf .filter-chip.is-active {
  background: var(--page-yellow);
  color: #1c1b18;
  border-color: var(--page-yellow);
  font-weight: 700;
}

.page-news .archive-index {
  display: grid;
  gap: 1.25rem;
}

.page-news .archive-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  background: var(--page-card-bg);
  border: 1px solid var(--page-edge);
  border-left: 6px solid var(--page-bright);
  border-radius: 6px 10px 10px 6px;
  padding: 1.2rem 1.3rem;
}

.page-news .archive-card--possession {
  border-left-color: var(--page-bright);
}

.page-news .archive-card--round {
  border-left-color: var(--page-yellow);
}

.page-news .archive-card--screen {
  border-left-color: #4a9b2e;
}

.page-news .archive-card--android {
  border-left-color: var(--page-green);
}

.page-news .archive-card__index {
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--page-green);
  border: 2px solid currentColor;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news .archive-card__body {
  min-width: 0;
}

.page-news .archive-card__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.35;
}

.page-news .archive-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-family: var(--font-data);
  color: var(--gray-ink);
}

.page-news .archive-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.page-news .archive-card__list li {
  padding-left: 1rem;
  position: relative;
}

.page-news .archive-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--page-bright);
  border-radius: 50%;
}

.page-news .archive-card__list a {
  color: var(--page-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-size: 0.95rem;
}

.page-news .archive-card__list a:hover {
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.page-news .round-grid {
  display: grid;
  gap: 1.5rem;
}

.page-news .round-lead {
  background: var(--page-dark);
  border-radius: var(--page-cut);
  color: #f5f5ec;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-news .round-lead::before {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 13rem;
  height: 13rem;
  border: 2.4rem solid var(--page-bright);
  border-radius: 50%;
  opacity: 0.75;
}

.page-news .round-lead__num {
  font-family: var(--font-data);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--page-yellow);
  margin-bottom: 0.6rem;
}

.page-news .round-lead__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.page-news .round-lead__text {
  max-width: 46rem;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  position: relative;
  z-index: 1;
}

.page-news .round-lead .button {
  margin-top: 1.1rem;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.page-news .round-list {
  display: grid;
  gap: 1.1rem;
}

.page-news .round-item {
  background: var(--page-card-bg);
  border: 1px solid var(--page-edge);
  border-radius: var(--page-card-radius);
  padding: 1.25rem 1.3rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-news .round-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--page-yellow);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.page-news .round-item__label {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.page-news .round-item .possession-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.page-news .round-item .possession-label {
  flex: 0 0 auto;
  font-size: 0.82rem;
  color: var(--gray-ink);
  min-width: 2.2rem;
}

.page-news .round-item .possession-track {
  flex: 1;
  height: 0.5rem;
  background: rgba(28, 27, 24, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.page-news .round-item .possession-fill {
  display: block;
  height: 100%;
  width: var(--p);
  background: linear-gradient(90deg, var(--page-green), var(--page-bright));
  border-radius: inherit;
}

.page-news .round-item .possession-value {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.page-news .round-item__note {
  color: var(--gray-ink);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.page-news .cta-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: var(--page-section-space);
  background: var(--page-yellow);
  color: var(--ink);
  text-decoration: none;
  padding: 1.4rem 1.5rem;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: 8px 8px 0 var(--page-dark);
}

.page-news .cta-strip:hover .cta-strip__action {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news .cta-strip__num {
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--page-green);
}

.page-news .cta-strip__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.page-news .cta-strip__kicker {
  font-family: var(--font-data);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(28, 27, 24, 0.7);
}

.page-news .cta-strip__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
}

.page-news .cta-strip__text {
  font-size: 0.88rem;
  color: rgba(28, 27, 24, 0.72);
}

.page-news .cta-strip__action {
  color: var(--page-green);
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .page-news .news-masthead {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
  }

  .page-news .news-masthead .hero-lead {
    justify-self: start;
    align-self: end;
  }

  .page-news .feature-story {
    grid-template-columns: 1.15fr 1fr;
    min-height: 0;
  }

  .page-news .feature-story .feature-story__media {
    min-height: 320px;
  }

  .page-news .archive-index {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .round-item:nth-child(even) {
    margin-left: 1.5rem;
  }

  .page-news .round-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .round-item:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .page-news .feature-story__media img {
    max-height: 280px;
  }

  .page-news .section-title .section-line {
    display: none;
  }

  .page-news .archive-shelf {
    position: static;
  }

  .page-news .cta-strip {
    grid-template-columns: auto 1fr;
  }

  .page-news .cta-strip__action {
    grid-column: 2;
  }
}

@media (min-width: 1024px) {
  .page-news .archive-layout {
    grid-template-columns: 290px 1fr;
    align-items: start;
  }

  .page-news .archive-card {
    grid-template-columns: auto 1fr;
  }

  .page-news .round-grid {
    grid-template-columns: 5fr 7fr;
  }

  .page-news .round-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-news .round-item:nth-child(even) {
    margin-left: 0;
  }

  .page-news .round-item:last-child:nth-child(odd) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-news [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }

  .page-news [data-reveal][data-revealed] {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-news {
  --p: 1rem;
}
