.page-news {
  --news-pad: clamp(20px, 4vw, 32px);
  background: var(--clr-deep);
  color: var(--clr-white);
}

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

.page-news figure {
  margin: 0;
}

.page-news .news-hero {
  position: relative;
  padding: 40px 0 48px;
  background:
    linear-gradient(120deg, rgba(10, 31, 68, 0.92) 0%, rgba(27, 58, 107, 0.55) 60%, rgba(34, 76, 138, 0.2) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-gold-line), transparent 85%);
  opacity: 0.7;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--clr-gold-line), transparent);
  opacity: 0.5;
}

.page-news .crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--clr-gray);
  font-size: 14px;
}

.page-news .crumb a {
  color: var(--clr-gray);
  text-decoration: none;
  transition: color var(--transition);
}

.page-news .crumb a:hover,
.page-news .crumb a:focus-visible {
  color: var(--clr-gold);
}

.page-news .crumb .sep {
  color: var(--clr-line);
}

.page-news .news-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.page-news .news-hero .section-kicker {
  color: var(--clr-gold);
  letter-spacing: 0.14em;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  margin: 10px 0 18px;
  color: var(--clr-white);
  text-transform: uppercase;
}

.page-news .news-hero-lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--clr-gray);
  max-width: 56ch;
  margin-bottom: 24px;
}

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

.page-news .news-hero-visual {
  position: relative;
}

.page-news .news-hero-visual img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-float);
}

.page-news .news-tabs {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: rgba(10, 31, 68, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(58, 80, 117, 0.5);
  border-bottom: 1px solid rgba(58, 80, 117, 0.5);
}

.page-news .news-tabs-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px var(--container-pad);
}

.page-news .news-tab {
  white-space: nowrap;
  color: var(--clr-gray);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.page-news .news-tab:hover,
.page-news .news-tab:focus-visible {
  color: var(--clr-gold);
  border-color: rgba(255, 215, 0, 0.6);
}

.page-news .news-tab.is-active {
  color: var(--clr-deep);
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  font-weight: 500;
}

.page-news .news-layout {
  display: grid;
  gap: 40px;
  padding: 48px 0 72px;
}

.page-news .news-primary {
  min-width: 0;
  display: grid;
  gap: 72px;
}

.page-news .news-section {
  scroll-margin-top: 160px;
}

.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.page-news .section-head .section-index {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--clr-gold);
  opacity: 0.65;
}

.page-news .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 4px 0 0;
  color: var(--clr-white);
}

.page-news .section-head .section-kicker {
  color: var(--clr-gold);
  font-size: 13px;
  letter-spacing: 0.16em;
}

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

.page-news .news-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(58, 80, 117, 0.6);
  border-radius: var(--radius-card);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-lift);
}

.page-news .news-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.page-news .news-card-time {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--clr-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.page-news .news-card-main {
  min-width: 0;
}

.page-news .news-card-main h3 {
  font-family: var(--font-head);
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--clr-white);
}

.page-news .news-card-main p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clr-gray);
  margin: 0 0 10px;
}

.page-news .news-detail {
  border-top: 1px dashed rgba(58, 80, 117, 0.7);
  padding-top: 8px;
  margin-top: 6px;
}

.page-news .news-detail summary {
  list-style: none;
  cursor: pointer;
  color: var(--clr-gold);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.page-news .news-detail summary::before {
  content: "+";
  font-size: 16px;
  line-height: 1;
  transition: transform var(--transition);
}

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

.page-news .news-detail p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-gray);
}

.page-news .news-schedule-grid {
  display: grid;
  gap: 24px;
}

.page-news .news-schedule-list {
  display: grid;
  gap: 16px;
}

.page-news .news-card-schedule {
  background: rgba(139, 0, 0, 0.05);
  border-color: rgba(139, 0, 0, 0.35);
}

.page-news .news-card-schedule:hover {
  background: rgba(139, 0, 0, 0.1);
}

.page-news .news-schedule-figure img {
  width: 100%;
  aspect-ratio: 9 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-line);
}

.page-news .news-data-hero {
  display: grid;
  gap: 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(27, 58, 107, 0.6) 0%, rgba(10, 31, 68, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

.page-news .news-data-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--clr-gold-line), transparent);
  opacity: 0.45;
}

.page-news .news-data-copy {
  position: relative;
  z-index: 1;
}

.page-news .news-data-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--clr-white);
}

.page-news .news-data-copy > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clr-gray);
  margin: 0 0 18px;
}

.page-news .news-data-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 20px;
}

.page-news .news-data-stats .stat {
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(58, 80, 117, 0.6);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-data-stats .stat-gold {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--clr-gold);
}

.page-news .news-data-stats .stat-label {
  font-size: 12px;
  color: var(--clr-gray);
}

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

.page-news .news-leagues .chip {
  border: 1px solid rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.06);
  color: var(--clr-gold);
  font-size: 12px;
}

.page-news .news-data-note {
  font-size: 13px;
  color: var(--clr-gray);
  line-height: 1.75;
  max-width: 50ch;
}

.page-news .news-data-figure img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--clr-line);
}

.page-news .news-version-grid {
  display: grid;
  gap: 28px;
}

.page-news .news-version-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-news .news-version-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(58, 80, 117, 0.6);
  border-radius: 14px;
  transition: background var(--transition), border-color var(--transition);
}

.page-news .news-version-item:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 215, 0, 0.3);
}

.page-news .news-version-tag {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--clr-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 8px;
  padding: 6px 8px;
  height: fit-content;
  text-align: center;
  letter-spacing: 0.02em;
}

.page-news .news-version-main h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--clr-white);
}

.page-news .news-version-main p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-gray);
  margin: 0 0 6px;
}

.page-news .news-version-time {
  font-size: 12px;
  color: var(--clr-gold-line);
}

.page-news .news-version-figure img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-line);
}

.page-news .news-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-news .news-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  padding: 22px;
}

.page-news .news-widget-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--clr-white);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(58, 80, 117, 0.6);
  position: relative;
}

.page-news .news-widget-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--clr-gold);
  margin-top: 6px;
}

.page-news .news-widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-widget-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-gray);
}

.page-news .news-widget-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
}

.page-news .news-widget-list em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--clr-gold-line);
  margin-top: 2px;
}

.page-news .news-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-status-list .news-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(58, 80, 117, 0.5);
  border-radius: 10px;
}

.page-news .news-status-list dt {
  font-size: 13px;
  color: var(--clr-gray);
}

.page-news .news-status-list dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-gold);
  margin: 0;
}

.page-news .news-widget-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-widget-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(58, 80, 117, 0.5);
  border-radius: 10px;
  color: var(--clr-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}

.page-news .news-widget-links a::after {
  content: "→";
  color: var(--clr-gold);
  transition: transform var(--transition);
}

.page-news .news-widget-links a:hover,
.page-news .news-widget-links a:focus-visible {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--clr-white);
}

.page-news .news-widget-links a:hover::after,
.page-news .news-widget-links a:focus-visible::after {
  transform: translateX(3px);
}

.page-news .news-widget-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-widget-contact li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-gray);
  position: relative;
  padding-left: 14px;
}

.page-news .news-widget-contact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--clr-red);
  border-radius: 50%;
}

@media (min-width: 960px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 720px) {
  .page-news .news-schedule-grid {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }

  .page-news .news-schedule-figure img {
    position: sticky;
    top: 168px;
  }
}

@media (min-width: 640px) {
  .page-news .news-data-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-data-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .page-news .news-version-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 52px;
  }

  .page-news .news-sidebar {
    position: sticky;
    top: 160px;
  }
}
