.page-news {
  --news-card-bg: rgba(18, 41, 79, .82);
  --news-card-border: rgba(255, 255, 255, .08);
  --news-time-bg: rgba(255, 255, 255, .06);
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.page-news-hero {
  position: relative;
  padding: 44px 0 36px;
  overflow: hidden;
}
.page-news-hero .container {
  position: relative;
  z-index: 2;
}
.page-news-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--white-48);
}
.page-news-hero .breadcrumb a {
  color: var(--electric);
  text-decoration: none;
}
.page-news-hero .breadcrumb a:hover {
  text-decoration: underline;
}
.page-news-hero .breadcrumb-sep {
  color: var(--white-40);
}
.page-news-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 10px;
}
.page-news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.08;
  letter-spacing: .01em;
  max-width: 880px;
  margin: 0 0 18px;
  color: var(--white);
}
.page-news-lead {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-68);
  margin: 0 0 22px;
}
.page-news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news-hero .corner-note {
  position: absolute;
  right: 18px;
  top: 84px;
  display: none;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white-40);
  pointer-events: none;
}
.page-news-latest {
  padding: 0 0 56px;
}
.page-news-main-grid {
  display: grid;
  gap: 36px;
}
.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.page-news .section-index {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}
.page-news .section-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}
.page-news .tag {
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 12px;
  letter-spacing: .04em;
}
.page-news-featured-card {
  background: var(--navy-soft);
  border: 1px solid var(--news-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .26);
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.page-news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 229, 255, .12);
}
.page-news-featured-media {
  position: relative;
  margin: 0;
}
.page-news-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news-featured-media .live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}
.page-news-featured-body {
  padding: 22px 20px 26px;
}
.page-news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.page-news-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white-55);
  background: var(--news-time-bg);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 4px 10px;
  cursor: help;
  transition: border-color .2s, color .2s;
}
.page-news-time::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .8;
}
.page-news-time:hover {
  color: var(--electric);
  border-color: var(--electric-border-soft);
}
.page-news-featured-body h3,
.page-news-card-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.22;
  margin: 0 0 10px;
  color: var(--white);
}
.page-news-featured-excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-68);
  margin: 0;
}
.page-news-expand {
  margin-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, .14);
  padding-top: 12px;
}
.page-news-expand summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--electric);
  padding: 4px 0;
  transition: color .2s;
}
.page-news-expand summary::-webkit-details-marker {
  display: none;
}
.page-news-expand summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--electric-soft);
  color: var(--electric);
  font-size: 15px;
  line-height: 1;
}
.page-news-expand[open] summary::before {
  content: '−';
}
.page-news-expand summary:hover {
  color: var(--white);
}
.page-news-expand-content,
.page-news-expand > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white-72);
  margin: 10px 0 2px;
}
.page-news-expand .data-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, .12);
  padding: 8px 0;
  font-size: 14px;
}
.page-news-expand .data-row:last-child {
  border-bottom: none;
}
.page-news-expand .data-label {
  color: var(--white-55);
}
.page-news-expand .data-value {
  color: var(--electric);
  font-weight: 700;
}
.page-news-live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--electric-faint);
  border: 1px solid var(--electric-line-faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--electric);
}
.page-news-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 0 rgba(0, 229, 255, .5);
  animation: page-news-pulse 2s infinite;
}
@keyframes page-news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, .5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-news-live-dot {
    animation: none;
  }
}
.page-news-filter {
  position: relative;
}
.page-news-filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.page-news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 26px;
  background: rgba(11, 29, 58, .92);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}
.page-news-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: var(--white-68);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: all .2s var(--ease-out);
}
.page-news-filter-btn:hover {
  border-color: var(--electric-border);
  background: var(--electric-soft);
  color: var(--electric);
}
.page-news-filter-input:focus-visible ~ .page-news-filter-bar .page-news-filter-btn {
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .38);
}
.page-news #filter-all:checked ~ .page-news-filter-bar label[for="filter-all"],
.page-news #filter-update:checked ~ .page-news-filter-bar label[for="filter-update"],
.page-news #filter-review:checked ~ .page-news-filter-bar label[for="filter-review"],
.page-news #filter-data:checked ~ .page-news-filter-bar label[for="filter-data"],
.page-news #filter-season:checked ~ .page-news-filter-bar label[for="filter-season"] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px var(--orange-shadow);
}
.page-news-filter-bg {
  position: absolute;
  right: 8px;
  bottom: -10px;
  width: 150px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  opacity: .4;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  z-index: 0;
}
.page-news-filter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news-feed-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.page-news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--news-card-bg);
  border: 1px solid var(--news-card-border);
  border-left: 3px solid var(--electric);
  border-radius: 12px;
  padding: 16px;
  transition: background .25s var(--ease-out), border-color .25s, transform .25s var(--ease-out);
}
.page-news-card:hover {
  background: rgba(18, 41, 79, .98);
  border-color: rgba(0, 229, 255, .32);
  transform: translateX(4px);
}
.page-news-card-media {
  flex: none;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.page-news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news-card-body {
  flex: 1;
  min-width: 0;
}
.page-news-season {
  position: relative;
  padding: 0 0 64px;
}
.page-news-season::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 70%);
}
.page-news-season-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-news-season-media {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .3);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.page-news-season-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news-season-content .section-head {
  margin-bottom: 16px;
}
.page-news-season-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-68);
  margin-bottom: 20px;
}
.page-news-season-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-news-season-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  font-size: 14px;
}
.page-news-season-label {
  color: var(--orange);
  font-weight: 800;
}
.page-news-season-item .data-value {
  color: var(--electric);
  font-weight: 700;
  text-align: right;
}
.page-news-season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news-archive {
  background: var(--paper);
  color: var(--ink);
  padding: 60px 0 68px;
}
.page-news-archive .section-head {
  margin-bottom: 18px;
}
.page-news-archive .section-title {
  color: var(--ink);
}
.page-news-archive-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 0 30px;
}
.page-news-archive-grid {
  display: grid;
  gap: 18px;
}
.page-news-archive-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  padding: 22px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.page-news-archive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--navy-shadow-light);
}
.page-news-archive-mark {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--electric-deep);
  background: var(--electric-soft);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.page-news-archive-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 8px;
}
.page-news-archive-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.page-news-archive-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-dash);
}
.page-news-archive .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.page-news-archive .btn-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}
.page-news-archive .btn-orange {
  box-shadow: 0 8px 20px var(--orange-shadow);
}
@media (min-width: 600px) {
  .page-news-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-news-card-media {
    width: 132px;
    aspect-ratio: 3 / 2;
  }
  .page-news-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .page-news-hero {
    padding: 64px 0 52px;
  }
  .page-news-hero .corner-note {
    display: block;
  }
  .page-news-season-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 44px;
  }
}
@media (min-width: 992px) {
  .page-news-main-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 44px;
    align-items: start;
  }
  .page-news-filter-bar {
    position: sticky;
    top: 20px;
    z-index: 20;
  }
  .page-news-filter-bg {
    width: 200px;
    height: 110px;
    bottom: -14px;
  }
  .page-news-card {
    padding: 18px;
  }
  .page-news-archive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-news-featured-card,
  .page-news-card,
  .page-news-archive-item {
    transition: none;
  }
  .page-news-featured-card:hover,
  .page-news-card:hover,
  .page-news-archive-item:hover {
    transform: none;
  }
}
