.page-news {
  --news-panel: rgba(8, 28, 21, 0.76);
  --news-line: rgba(211, 175, 78, 0.24);
  --news-line-strong: rgba(211, 175, 78, 0.58);
  --news-soft: #BCD0C5;
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 144, 166, 0.08), transparent 30%),
    radial-gradient(circle at 8% 84%, rgba(211, 175, 78, 0.05), transparent 26%),
    var(--pitch-deep);
  color: var(--text-light);
  position: relative;
}

.page-news section[id] {
  scroll-margin-top: 92px;
}

.page-news .section {
  padding-block: 64px;
}

.page-news .news-hero {
  position: relative;
  padding: 134px 0 88px;
  background:
    radial-gradient(circle at 76% 12%, rgba(20, 104, 75, 0.8), transparent 30%),
    linear-gradient(128deg, #060D10 0%, var(--pitch-deep) 58%, #0A0E12 100%);
  isolation: isolate;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(232, 240, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 240, 234, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 78%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 6px;
  background: var(--victory-gold);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 2;
}

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

.page-news .news-hero .breadcrumb {
  margin-bottom: 42px;
}

.page-news .news-hero-content {
  display: grid;
  gap: 36px;
  align-items: end;
}

.page-news .news-hero-left h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.35rem, 5.6vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 14px 0 22px;
  text-transform: uppercase;
}

.page-news .news-hero-desc {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--news-soft);
  margin-bottom: 28px;
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero-actions .btn {
  min-width: 152px;
  justify-content: center;
}

.page-news .news-hero-stats {
  display: grid;
  gap: 14px;
}

.page-news .news-hero-stats .stat-card {
  position: relative;
  padding: 20px 18px;
  border-left: 3px solid var(--victory-gold);
  background: rgba(10, 14, 18, 0.52);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-news .stat-value {
  display: block;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.page-news .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.page-news .news-filter-nav {
  background: rgba(10, 14, 18, 0.78);
  border-top: 1px solid var(--news-line);
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-filter-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding-block: 18px;
}

.page-news .news-filter-nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin: 0;
}

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

.page-news .news-filter-nav-hint {
  flex-basis: 100%;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.page-news .filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--news-line);
  border-radius: 999px;
  background: rgba(20, 104, 75, 0.24);
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.page-news .filter-tag:hover {
  transform: translateY(-2px);
  border-color: var(--news-line-strong);
  background: rgba(20, 104, 75, 0.42);
}

.page-news .filter-tag.tag-danger {
  border-color: rgba(194, 94, 76, 0.4);
  background: rgba(194, 94, 76, 0.14);
}

.page-news .filter-tag.tag-danger:hover {
  border-color: rgba(194, 94, 76, 0.7);
  background: rgba(194, 94, 76, 0.26);
}

.page-news .news-latest {
  padding-block: 70px;
}

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

.page-news .news-filter-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.page-news .news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .news-filter-tabs .filter-tag {
  font-weight: 600;
}

.page-news .news-latest-grid {
  display: grid;
  gap: 22px;
}

.page-news .news-card {
  display: flex;
  flex-direction: column;
  background: var(--news-panel);
  border: 1px solid var(--news-line);
  border-top: 3px solid var(--victory-gold);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-news .news-card:hover {
  transform: translateY(-6px);
  border-color: var(--news-line-strong);
  background: rgba(11, 61, 46, 0.86);
}

.page-news .news-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0A0E12;
}

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

.page-news .news-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 26px;
}

.page-news .news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .news-time {
  font-family: var(--font-data);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.page-news .news-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.38rem;
  line-height: 1.22;
  color: var(--text-light);
  margin: 0 0 10px;
}

.page-news .news-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--news-soft);
  margin: 0 0 18px;
  flex: 1;
}

.page-news .news-card-link {
  align-self: flex-start;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-block: 2px;
  transition: border-color 0.2s ease;
}

.page-news .news-card-link:hover {
  border-bottom-color: var(--gold-light);
}

.page-news .news-feature {
  border-top-width: 4px;
  background: rgba(11, 61, 46, 0.92);
}

.page-news .news-feature:hover {
  background: rgba(11, 61, 46, 0.98);
}

.page-news #insight-all:checked ~ .news-filter-tabs label[for="insight-all"],
.page-news #insight-data:checked ~ .news-filter-tabs label[for="insight-data"],
.page-news #insight-injury:checked ~ .news-filter-tabs label[for="insight-injury"],
.page-news #insight-update:checked ~ .news-filter-tabs label[for="insight-update"],
.page-news #insight-topic:checked ~ .news-filter-tabs label[for="insight-topic"] {
  background: var(--victory-gold);
  border-color: var(--victory-gold);
  color: var(--night-black);
}

.page-news #insight-data:focus-visible ~ .news-filter-tabs label[for="insight-data"],
.page-news #insight-injury:focus-visible ~ .news-filter-tabs label[for="insight-injury"],
.page-news #insight-update:focus-visible ~ .news-filter-tabs label[for="insight-update"],
.page-news #insight-topic:focus-visible ~ .news-filter-tabs label[for="insight-topic"],
.page-news #insight-all:focus-visible ~ .news-filter-tabs label[for="insight-all"] {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.page-news #insight-all:checked ~ .news-latest-grid .news-card,
.page-news #insight-data:checked ~ .news-latest-grid .news-card[data-insight-filter="data"],
.page-news #insight-injury:checked ~ .news-latest-grid .news-card[data-insight-filter="injury"],
.page-news #insight-update:checked ~ .news-latest-grid .news-card[data-insight-filter="update"],
.page-news #insight-topic:checked ~ .news-latest-grid .news-card[data-insight-filter="topic"] {
  display: flex;
}

.page-news #insight-data:checked ~ .news-latest-grid .news-card:not([data-insight-filter="data"]),
.page-news #insight-injury:checked ~ .news-latest-grid .news-card:not([data-insight-filter="injury"]),
.page-news #insight-update:checked ~ .news-latest-grid .news-card:not([data-insight-filter="update"]),
.page-news #insight-topic:checked ~ .news-latest-grid .news-card:not([data-insight-filter="topic"]) {
  display: none;
}

.page-news .news-category {
  padding-block: 62px;
  border-top: 1px solid rgba(232, 240, 234, 0.08);
}

.page-news .news-category-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--news-line);
  transition: border-color 0.3s ease;
}

.page-news section[id]:target .news-category-head {
  border-bottom-color: var(--victory-gold);
}

.page-news .news-category-title {
  margin: 0;
}

.page-news .news-category-action {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--data-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-category-action:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.page-news .news-category-list {
  display: grid;
  gap: 14px;
}

.page-news .news-row {
  padding: 20px;
  background: rgba(10, 14, 18, 0.42);
  border-left: 3px solid var(--news-line);
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.page-news .news-row:hover {
  background: rgba(10, 14, 18, 0.62);
  border-left-color: var(--victory-gold);
}

.page-news .news-row-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .news-row-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 8px;
}

.page-news .news-row-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--news-soft);
  margin: 0;
}

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

.page-news .news-row-excerpt a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.page-news .news-topics {
  position: relative;
  padding-block: 76px;
  background:
    radial-gradient(circle at 12% 4%, rgba(74, 144, 166, 0.16), transparent 26%),
    linear-gradient(160deg, #0A0E12 0%, var(--pitch-deep) 100%);
}

.page-news .news-topics-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.page-news .topic-lead {
  display: flex;
  flex-direction: column;
  background: rgba(10, 14, 18, 0.52);
  border: 1px solid var(--news-line);
  border-radius: 6px;
  overflow: hidden;
}

.page-news .topic-lead-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0A0E12;
}

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

.page-news .topic-lead-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px 30px;
}

.page-news .topic-lead-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--news-soft);
  margin: 0;
}

.page-news .topic-lead-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.22;
  margin: 0;
}

.page-news .topic-stack {
  display: grid;
  gap: 18px;
}

.page-news .topic-compact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: rgba(232, 240, 234, 0.05);
  border: 1px solid var(--news-line);
  border-radius: 6px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-news .topic-compact:hover {
  transform: translateY(-4px);
  border-color: var(--news-line-strong);
  background: rgba(232, 240, 234, 0.08);
}

.page-news .topic-compact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.24rem;
  line-height: 1.3;
  margin: 0;
}

.page-news .topic-compact-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--news-soft);
  margin: 0;
}

.page-news .topic-compact-excerpt a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-news .topic-compact-excerpt a:hover {
  border-bottom-color: var(--gold-light);
}

.page-news .topic-details {
  width: 100%;
  margin-top: 6px;
  border-top: 1px dashed rgba(211, 175, 78, 0.3);
  padding-top: 14px;
}

.page-news .topic-details summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

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

.page-news .topic-details summary::before {
  content: "+ ";
}

.page-news .topic-details[open] summary::before {
  content: "– ";
}

.page-news .topic-details ul {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--news-soft);
}

.page-news .news-tools-cta {
  position: relative;
  padding: 70px 0;
  background: var(--night-black);
  overflow: hidden;
}

.page-news .news-tools-cta::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -45%;
  width: 55%;
  height: 180%;
  background: rgba(211, 175, 78, 0.08);
  transform: rotate(12deg);
  pointer-events: none;
}

.page-news .news-tools-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-news .news-tools-cta-text {
  max-width: 620px;
}

.page-news .news-tools-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 0 0 14px;
}

.page-news .news-tools-cta-desc {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--news-soft);
  margin: 0 0 14px;
}

.page-news .news-tools-cta-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

.page-news .news-tools-cta-note a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-news .news-tools-cta-note a:hover {
  border-bottom-color: var(--gold-light);
}

.page-news .news-tools-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-tools-cta-actions .btn {
  min-width: 168px;
  justify-content: center;
}

.page-news .btn-gold {
  box-shadow: 0 8px 24px rgba(211, 175, 78, 0.18);
}

.page-news .btn-outline {
  border-color: rgba(232, 240, 234, 0.42);
}

@media (min-width: 560px) {
  .page-news .news-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 720px) {
  .page-news .news-filter-nav-hint {
    flex-basis: auto;
    margin-left: auto;
  }

  .page-news .news-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
  }

  .page-news .news-feature .news-card-media {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (min-width: 760px) {
  .page-news .news-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 860px) {
  .page-news .news-hero {
    padding: 168px 0 96px;
  }

  .page-news .news-hero-content {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
    gap: 48px;
  }

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

  .page-news .news-feature {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .page-news .news-topics-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .page-news .topic-lede {
    grid-row: span 2;
  }
}

@media (min-width: 1100px) {
  .page-news .news-filter-nav-inner {
    flex-wrap: nowrap;
  }

  .page-news .news-filter-nav-hint {
    margin-left: auto;
  }
}
