.page-news {
  --news-rule: rgba(11, 42, 32, 0.12);
  --news-soft: rgba(11, 42, 32, 0.06);
  background: var(--chalk-white);
  color: var(--ink-green);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
}

.page-news h1,
.page-news h2 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.page-news .section-title {
  font-family: var(--font-heading);
  line-height: 1.22;
  color: var(--ink-green);
  margin: 10px 0 0;
}

.page-news img {
  max-width: 100%;
  height: auto;
}

.page-news .news-chapter__lede,
.page-news .news-archive__lede,
.page-news .news-index__intro {
  max-width: 62ch;
  margin: 14px 0 0;
  color: rgba(11, 42, 32, 0.7);
}

/* ============ HERO ============ */
.page-news .news-hero {
  position: relative;
  padding: 32px 0 0;
  background:
    radial-gradient(120% 96% at 10% -10%, rgba(30, 122, 68, 0.16), rgba(24, 69, 126, 0.07) 52%, rgba(247, 248, 244, 0) 80%),
    var(--chalk-white);
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 42, 32, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 42, 32, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  pointer-events: none;
}

.page-news .news-hero .shell {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__grid {
  display: grid;
  gap: 30px;
  margin-top: 26px;
}

.page-news .news-hero h1 {
  font-size: clamp(34px, 5.6vw, 64px);
  letter-spacing: -0.012em;
  margin-top: 12px;
  color: var(--ink-green);
}

.page-news .news-hero__lede {
  margin: 20px 0 0;
  max-width: 60ch;
  color: rgba(11, 42, 32, 0.76);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .news-hero__figure {
  position: relative;
  margin: 0;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-cream);
}

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

.page-news .news-hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(to top, rgba(11, 42, 32, 0.86), rgba(11, 42, 32, 0));
  color: var(--chalk-white);
  font-size: 13px;
  line-height: 1.6;
}

.page-news .news-hero__board {
  margin-top: 34px;
  display: grid;
  gap: 1px;
  background: rgba(247, 248, 244, 0.14);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.page-news .news-hero__board .statboard__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--ink-green);
}

.page-news .news-hero__board .statboard__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--whistle-yellow);
}

.page-news .news-hero__board .statboard__label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(247, 248, 244, 0.72);
}

/* ============ INDEX ============ */
.page-news .news-index {
  padding: 64px 0 72px;
  background: var(--paper-cream);
  border-top: 1px solid var(--line-color);
}

.page-news .news-filter {
  margin-top: 30px;
  position: relative;
}

.page-news .news-filter__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.page-news .news-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.page-news .news-filter__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid var(--concrete-gray);
  border-radius: var(--radius-pill);
  background: var(--chalk-white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-green);
  cursor: pointer;
  user-select: none;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}

.page-news .news-filter__chip:hover {
  border-color: var(--turf-green);
}

.page-news #nf-all:checked ~ .news-filter__bar [for="nf-all"],
.page-news #nf-schedule:checked ~ .news-filter__bar [for="nf-schedule"],
.page-news #nf-transfer:checked ~ .news-filter__bar [for="nf-transfer"],
.page-news #nf-feedback:checked ~ .news-filter__bar [for="nf-feedback"],
.page-news #nf-youth:checked ~ .news-filter__bar [for="nf-youth"],
.page-news #nf-archive:checked ~ .news-filter__bar [for="nf-archive"] {
  background: var(--whistle-yellow);
  border-color: var(--whistle-yellow);
  color: var(--ink-green);
}

.page-news #nf-all:focus-visible ~ .news-filter__bar [for="nf-all"],
.page-news #nf-schedule:focus-visible ~ .news-filter__bar [for="nf-schedule"],
.page-news #nf-transfer:focus-visible ~ .news-filter__bar [for="nf-transfer"],
.page-news #nf-feedback:focus-visible ~ .news-filter__bar [for="nf-feedback"],
.page-news #nf-youth:focus-visible ~ .news-filter__bar [for="nf-youth"],
.page-news #nf-archive:focus-visible ~ .news-filter__bar [for="nf-archive"] {
  outline: 2px solid var(--tactic-blue);
  outline-offset: 2px;
}

.page-news #nf-schedule:checked ~ .news-index__list .news-index__item:not(.news-index__item--schedule),
.page-news #nf-transfer:checked ~ .news-index__list .news-index__item:not(.news-index__item--transfer),
.page-news #nf-feedback:checked ~ .news-index__list .news-index__item:not(.news-index__item--feedback),
.page-news #nf-youth:checked ~ .news-index__list .news-index__item:not(.news-index__item--youth),
.page-news #nf-archive:checked ~ .news-index__list .news-index__item:not(.news-index__item--archive) {
  display: none;
}

.page-news .news-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .news-index__item {
  position: relative;
  border-bottom: 1px solid var(--news-rule);
}

.page-news .news-index__link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "no title"
    "no meta";
  column-gap: 14px;
  row-gap: 6px;
  padding: 15px 14px 15px 10px;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}

.page-news .news-index__item--schedule .news-index__link { border-left-color: var(--turf-green); }
.page-news .news-index__item--transfer .news-index__link { border-left-color: var(--whistle-yellow); }
.page-news .news-index__item--feedback .news-index__link { border-left-color: var(--card-red); }
.page-news .news-index__item--youth .news-index__link { border-left-color: var(--tactic-blue); }
.page-news .news-index__item--archive .news-index__link { border-left-color: var(--ink-green); }

.page-news .news-index__item:hover .news-index__link,
.page-news .news-index__item:focus-within .news-index__link {
  background: var(--news-soft);
}

.page-news .news-index__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
  color: rgba(11, 42, 32, 0.4);
  line-height: 1.7;
}

.page-news .news-index__title {
  grid-area: title;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-green);
  transition: color var(--t) var(--ease);
}

.page-news .news-index__item:hover .news-index__title,
.page-news .news-index__item:focus-within .news-index__title {
  color: var(--turf-green);
}

.page-news .news-index__meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .news-index__cat {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-news .news-index__item--schedule .news-index__cat { background: rgba(30, 122, 68, 0.14); color: var(--turf-green); }
.page-news .news-index__item--transfer .news-index__cat { background: rgba(255, 210, 63, 0.42); color: var(--ink-green); }
.page-news .news-index__item--feedback .news-index__cat { background: rgba(214, 52, 44, 0.13); color: var(--card-red); }
.page-news .news-index__item--youth .news-index__cat { background: rgba(24, 69, 126, 0.13); color: var(--tactic-blue); }
.page-news .news-index__item--archive .news-index__cat { background: rgba(11, 42, 32, 0.13); color: var(--ink-green); }

.page-news .news-index__when {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  color: rgba(11, 42, 32, 0.55);
  white-space: nowrap;
}

.page-news .news-index__peek {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% - 6px);
  z-index: 6;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink-green);
  color: var(--chalk-white);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t) linear;
}

.page-news .news-index__item:hover .news-index__peek,
.page-news .news-index__item:focus-within .news-index__peek {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ CHAPTERS ============ */
.page-news .news-chapter {
  padding: 64px 0;
}

.page-news .news-chapter--schedule { background: var(--chalk-white); }
.page-news .news-chapter--transfer { background: var(--paper-cream); }
.page-news .news-chapter--feedback { background: var(--chalk-white); }
.page-news .news-chapter--youth { background: var(--paper-cream); }

.page-news .news-chapter__grid,
.page-news .news-chapter__flow {
  display: grid;
  gap: 28px;
}

.page-news .news-chapter__body > p {
  margin: 18px 0 0;
  max-width: 66ch;
}

.page-news .news-chapter__quote {
  margin: 26px 0 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--turf-green);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-green);
}

.page-news .news-chapter__facts {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--news-rule);
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-news .news-chapter__facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--chalk-white);
}

.page-news .news-chapter__factnum {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--turf-green);
}

.page-news .news-chapter__factlabel {
  font-size: 13px;
  color: rgba(11, 42, 32, 0.62);
}

.page-news .news-chapter__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-cream);
}

.page-news .news-chapter__media img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-news .news-chapter__media--wide img {
  aspect-ratio: 1100 / 620;
}

.page-news .news-chapter__media .media__caption {
  display: block;
  padding: 12px 16px 0;
  font-size: 13px;
  color: rgba(11, 42, 32, 0.6);
}

.page-news .news-chapter__more {
  margin-top: 26px;
}

/* ============ LINK PILL ============ */
.page-news .news-more {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--turf-green);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--turf-green);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}

.page-news .news-more:hover,
.page-news .news-more:focus-visible {
  background: var(--turf-green);
  border-color: var(--turf-green);
  color: var(--chalk-white);
}

/* ============ BARS ============ */
.page-news .news-bars {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-news .news-bars__row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.page-news .news-bars__name {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-green);
}

.page-news .news-bars__track {
  display: block;
  height: 9px;
  border-radius: var(--radius-pill);
  background: rgba(11, 42, 32, 0.08);
  overflow: hidden;
}

.page-news .news-bars__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.page-news .news-bars__row--one .news-bars__fill { width: 88%; background: var(--turf-green); }
.page-news .news-bars__row--two .news-bars__fill { width: 72%; background: var(--mid-turf); }
.page-news .news-bars__row--three .news-bars__fill { width: 48%; background: var(--tactic-blue); }
.page-news .news-bars__row--four .news-bars__fill { width: 34%; background: var(--whistle-yellow); }

/* ============ TOPICS ============ */
.page-news .news-topics {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--news-rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-news .news-topics__item {
  padding: 20px;
  background: var(--paper-cream);
}

.page-news .news-topics__label {
  margin: 0 0 8px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tactic-blue);
}

.page-news .news-topics__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(11, 42, 32, 0.78);
}

/* ============ AGES ============ */
.page-news .news-ages {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-ages__item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-md);
  background: var(--chalk-white);
  transition: border-color var(--t) var(--ease);
}

.page-news .news-ages__item:hover {
  border-color: var(--turf-green);
}

.page-news .news-ages__code {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--turf-green);
}

.page-news .news-ages__note {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(11, 42, 32, 0.78);
}

.page-news .news-ages__foot {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--whistle-yellow);
  background: rgba(255, 210, 63, 0.16);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 42, 32, 0.82);
}

/* ============ ARCHIVE ============ */
.page-news .news-archive {
  padding: 68px 0 76px;
  background: var(--ink-green);
  color: var(--chalk-white);
}

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

.page-news .news-archive .eyebrow {
  color: var(--whistle-yellow);
}

.page-news .news-archive__lede {
  max-width: 62ch;
  margin: 14px 0 0;
  color: rgba(247, 248, 244, 0.74);
}

.page-news .news-archive__list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.page-news .news-archive__item {
  border: 1px solid rgba(247, 248, 244, 0.16);
  border-radius: var(--radius-md);
  background: rgba(247, 248, 244, 0.04);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}

.page-news .news-archive__item:hover,
.page-news .news-archive__item[open] {
  border-color: rgba(255, 210, 63, 0.55);
  background: rgba(247, 248, 244, 0.07);
}

.page-news .news-archive__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--chalk-white);
}

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

.page-news .news-archive__item summary::after {
  content: "＋";
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--whistle-yellow);
  transition: transform var(--t) var(--ease);
}

.page-news .news-archive__item[open] summary::after {
  content: "－";
}

.page-news .news-archive__no {
  flex: none;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--whistle-yellow);
}

.page-news .news-archive__meta {
  margin-left: auto;
  flex: none;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 400;
  color: rgba(247, 248, 244, 0.56);
  white-space: nowrap;
}

.page-news .news-archive__body {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(247, 248, 244, 0.14);
}

.page-news .news-archive__body p {
  margin: 0;
  max-width: 72ch;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(247, 248, 244, 0.78);
}

.page-news .news-archive .news-more {
  border-color: var(--whistle-yellow);
  color: var(--whistle-yellow);
}

.page-news .news-archive .news-more:hover,
.page-news .news-archive .news-more:focus-visible {
  background: var(--whistle-yellow);
  border-color: var(--whistle-yellow);
  color: var(--ink-green);
}

.page-news .news-archive__foot {
  margin: 28px 0 0;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 600px) {
  .page-news .news-hero__figure {
    height: 320px;
  }

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

  .page-news .news-ages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-index__link {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px 18px 16px 14px;
  }
}

@media (min-width: 860px) {
  .page-news .news-hero {
    padding-top: 40px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: center;
    margin-top: 34px;
  }

  .page-news .news-hero__figure {
    height: 380px;
    border-radius: var(--radius-lg) var(--radius-lg) 72px var(--radius-lg);
  }

  .page-news .news-hero__board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
  }

  .page-news .news-hero__board .statboard__row {
    padding: 22px 26px;
  }

  .page-news .news-index {
    padding: 76px 0 88px;
  }

  .page-news .news-index__link {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    grid-template-areas: "no title meta";
    align-items: center;
    column-gap: 22px;
    row-gap: 0;
    padding: 17px 20px 17px 16px;
  }

  .page-news .news-index__meta {
    justify-content: flex-end;
    gap: 14px;
  }

  .page-news .news-chapter {
    padding: 80px 0;
  }

  .page-news .news-chapter__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: start;
  }

  .page-news .news-chapter__grid .news-chapter__body {
    grid-column: 1;
    grid-row: 1;
  }

  .page-news .news-chapter__grid .news-chapter__media {
    grid-column: 2;
    grid-row: 1;
  }

  .page-news .news-chapter__grid--flip {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

  .page-news .news-chapter__grid--flip .news-chapter__media {
    grid-column: 1;
  }

  .page-news .news-chapter__grid--flip .news-chapter__body {
    grid-column: 2;
  }

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

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

  .page-news .news-archive {
    padding: 84px 0 92px;
  }
}

@media (min-width: 1180px) {
  .page-news .news-ages {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .page-news .news-archive__meta {
    display: none;
  }

  .page-news .news-index__peek {
    font-size: 13.5px;
    padding: 10px 14px;
  }

  .page-news .news-chapter__quote {
    font-size: 18px;
  }
}
