.page-news {
  --news-accent: var(--c-accent);
  --news-warn: var(--c-warn);
  --news-silver: var(--c-silver);
  --news-num: var(--c-num);
  --news-card-bg: rgba(16, 42, 74, 0.76);
  --news-card-bg-hover: rgba(16, 42, 74, 0.9);
  --news-border: rgba(192, 192, 192, 0.18);
  --news-grid: rgba(30, 58, 95, 0.7);
  position: relative;
  padding-bottom: 80px;
  color: var(--c-text);
}

.page-news::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 600px;
  background:
    radial-gradient(circle at 70% 20%, rgba(57, 255, 20, 0.07), transparent 280px),
    linear-gradient(rgba(30, 58, 95, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.28) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  transform: perspective(500px) rotateX(62deg) rotateZ(-14deg) scale(1.15);
  transform-origin: top right;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.page-news__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-silver);
}

.page-news__breadcrumb a {
  color: var(--c-silver);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news__breadcrumb a:hover {
  color: var(--c-accent);
}

.page-news__breadcrumb-sep {
  color: rgba(192, 192, 192, 0.4);
}

.page-news__hero {
  position: relative;
  display: grid;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 40px;
}

.page-news__hero-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--c-accent);
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--c-silver);
  text-transform: uppercase;
  white-space: nowrap;
}

.page-news__hero-note span:first-child {
  color: var(--c-accent);
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
}

.page-news__hero-content h1 {
  max-width: 11em;
  margin: 14px 0 20px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.page-news__hero-lead {
  max-width: 34em;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(240, 244, 248, 0.82);
}

.page-news__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 0;
}

.page-news__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 88px;
}

.page-news__hero-stat dt {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--c-silver);
}

.page-news__hero-stat dd {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--c-num);
}

.page-news__filter {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  border-top: 1px solid var(--news-border);
  border-bottom: 1px solid var(--news-border);
  background: rgba(11, 30, 58, 0.92);
  backdrop-filter: blur(8px);
}

.page-news__filter-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.page-news__filter-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-news__filter-field label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  white-space: nowrap;
}

.page-news__select-wrap {
  position: relative;
  display: inline-flex;
}

.page-news__select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--c-grid);
  border-radius: 2px;
  background: var(--c-card);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news__select:hover {
  border-color: var(--c-accent);
}

.page-news__select:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.page-news__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--c-silver);
  border-bottom: 1.5px solid var(--c-silver);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.page-news__filter-legend {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(192, 192, 192, 0.75);
}

.page-news__latest {
  padding-top: 48px;
}

.page-news__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  border-left: 4px solid var(--c-accent);
  padding-left: 14px;
}

.page-news__section-head h2,
.page-news__tags-head h2,
.page-news__about-title h2 {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-text);
}

.page-news__section-head p,
.page-news__tags-head p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-silver);
}

.page-news__timeline {
  position: relative;
  display: grid;
  gap: 40px;
}

.page-news__timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  border-left: 1px dashed var(--news-grid);
}

.page-news__entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-left: 40px;
}

.page-news__entry::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  background: var(--c-bg);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.12);
}

.page-news__entry-time {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
}

.page-news__entry-round {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--c-accent);
}

.page-news__entry-season {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--c-silver);
}

.page-news__entry-card {
  position: relative;
  display: block;
  background: var(--news-card-bg);
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: background 0.25s ease;
}

.page-news__entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  clip-path: inherit;
  pointer-events: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-news__entry-card:hover,
.page-news__entry-card:focus-within {
  background: var(--news-card-bg-hover);
}

.page-news__entry-card:hover::after,
.page-news__entry-card:focus-within::after {
  border-color: var(--c-accent);
}

.page-news__entry-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--c-card);
}

.page-news__entry-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.page-news__entry-body {
  padding: 24px 24px 20px;
}

.page-news__entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.page-news__entry-tags li {
  padding: 4px 10px;
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: 2px;
  color: var(--c-accent);
}

.page-news__entry-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--c-text);
}

.page-news__entry-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(240, 244, 248, 0.8);
}

.page-news__entry-card:hover .page-news__entry-summary,
.page-news__entry-card:focus-within .page-news__entry-summary {
  -webkit-line-clamp: unset;
  display: block;
}

.page-news__entry-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(192, 192, 192, 0.16);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--c-silver);
}

.page-news__entry-foot a {
  color: var(--c-accent);
  text-decoration: none;
  white-space: nowrap;
}

.page-news__entry-foot a:hover {
  text-decoration: underline;
}

.page-news__entry-chart {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 200px;
  padding: 24px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.25);
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent 60%),
    var(--c-ink);
  font-family: var(--font-body);
}

.page-news__chart-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.page-news__chart-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--c-accent);
}

.page-news__chart-score {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  color: var(--c-num);
}

.page-news__chart-bars {
  display: grid;
  gap: 10px;
}

.page-news__chart-bars span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--c-accent);
  background: rgba(16, 42, 74, 0.85);
  font-size: 0.75rem;
  color: var(--c-text);
}

.page-news__chart-bars em {
  font-style: normal;
  color: rgba(240, 244, 248, 0.82);
}

.page-news__chart-bars i {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  color: var(--c-num);
}

.page-news__tags {
  padding-top: 64px;
}

.page-news__tags-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.page-news__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news__tag-chip {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--c-grid);
  background: rgba(16, 42, 74, 0.55);
  color: var(--c-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, calc(100% - 10px) 100%, 0 100%, 10px 100%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-news__tag-chip:nth-child(even) {
  transform: skewX(-6deg);
}

.page-news__tag-chip:hover,
.page-news__tag-chip:focus-visible {
  border-color: var(--c-accent);
  background: rgba(57, 255, 20, 0.1);
  color: var(--c-accent);
}

.page-news__about {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.page-news__about-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.page-news__about-title .eyebrow {
  margin-bottom: 8px;
}

.page-news__about-stamp {
  padding: 6px 12px;
  border: 1px solid rgba(57, 255, 20, 0.4);
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  white-space: nowrap;
  transform: rotate(-3deg);
}

.page-news__about-grid {
  display: grid;
  gap: 20px;
}

.page-news__about-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-top: 3px solid var(--c-accent);
  background: linear-gradient(145deg, rgba(16, 42, 74, 0.75), rgba(6, 16, 33, 0.8));
}

.page-news__about-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, transparent 16px, rgba(57, 255, 20, 0.14) 16px, rgba(57, 255, 20, 0.14) 100%);
}

.page-news__about-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--c-text);
}

.page-news__about-card p {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(240, 244, 248, 0.78);
}

.page-news__about-card a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
  padding-bottom: 2px;
}

.page-news__about-card a:hover {
  border-bottom-color: var(--c-accent);
}

@media (min-width: 900px) {
  .page-news__hero {
    grid-template-columns: 96px 1fr;
    column-gap: 32px;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .page-news__hero-note {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 0 12px 14px;
    writing-mode: vertical-rl;
    text-align: left;
    white-space: normal;
  }

  .page-news__hero-note span:first-child {
    font-size: 0.6875rem;
  }

  .page-news__hero-content h1 {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    line-height: 1.08;
  }

  .page-news__hero-lead {
    max-width: 42em;
  }

  .page-news__hero-stats {
    gap: 48px;
  }

  .page-news__filter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news__filter-legend {
    text-align: right;
  }

  .page-news__timeline {
    gap: 48px;
  }

  .page-news__timeline::before {
    left: 60px;
  }

  .page-news__entry {
    grid-template-columns: 120px 1fr;
    gap: 0;
    padding-left: 0;
  }

  .page-news__entry::before {
    left: 53px;
  }

  .page-news__entry-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 14px;
    padding-right: 20px;
  }

  .page-news__entry-round {
    font-size: 1rem;
  }

  .page-news__entry-card--featured .page-news__entry-figure {
    max-height: 480px;
  }

  .page-news__entry-card--featured .page-news__entry-figure img {
    max-height: 480px;
  }

  .page-news__entry-card--row,
  .page-news__entry-card--screen {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
  }

  .page-news__entry-card--row .page-news__entry-figure,
  .page-news__entry-card--screen .page-news__entry-figure {
    height: 100%;
    min-height: 260px;
  }

  .page-news__entry-card--row .page-news__entry-figure img,
  .page-news__entry-card--screen .page-news__entry-figure img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-news__entry-card--portrait {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
  }

  .page-news__entry-card--portrait .page-news__entry-figure {
    height: 100%;
    min-height: 280px;
  }

  .page-news__entry-card--portrait .page-news__entry-figure img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .page-news__entry-card--analysis {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
  }

  .page-news__entry-chart {
    border-right: 1px solid rgba(57, 255, 20, 0.25);
    border-bottom: 0;
  }

  .page-news__about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-news__about-title {
    margin-bottom: 32px;
  }
}
