.page-news {
  --news-ink: #2C2C2C;
  --news-espresso: #1E1A16;
  --news-line: #D9CFC6;
  --news-peach: #FFF0E8;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
}

.page-news .news-hero {
  position: relative;
  padding: 28px 0 20px;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 46%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(255, 107, 53, 0.16), transparent);
  pointer-events: none;
}
.page-news .news-hero::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--brand), var(--gold), var(--teal), transparent);
}
.page-news .news-hero__grid {
  display: grid;
  gap: 24px;
  margin-top: 22px;
}
.page-news .news-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
}
.page-news .news-hero__lead {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--brand);
  margin: 0;
}
.page-news .news-hero__desc {
  max-width: 56ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(44, 44, 44, 0.78);
}
.page-news .news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-hero__figure {
  margin: 0;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--brand);
}
.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .news-hero__ticker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  background: var(--peach);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
}
.page-news .news-ticker__label {
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.page-news .section-header--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: 22px;
}
.page-news .section-header--split .section-desc {
  max-width: 46ch;
  margin: 0;
  font-size: 15px;
}

.page-news .news-focus {
  padding: 40px 0 8px;
}
.page-news .focus-grid {
  display: grid;
  gap: 16px;
}
.page-news .focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.page-news .focus-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 3px 3px 0;
  background: var(--brand);
}
.page-news .focus-card--main {
  background: var(--espresso);
  border-color: var(--espresso);
  box-shadow: 8px 8px 0 var(--brand);
  color: var(--paper);
}
.page-news .focus-card--main::before {
  background: var(--gold);
}
.page-news .focus-card--main .focus-card__title {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.2;
  color: var(--paper);
  margin: 0;
}
.page-news .focus-card--main .focus-card__text {
  color: rgba(247, 243, 239, 0.84);
  max-width: 52ch;
}
.page-news .focus-card--main .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.page-news .focus-card--main .btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.page-news .focus-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-news .focus-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.page-news .focus-card__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}
.page-news .focus-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.76);
}
.page-news .focus-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.page-news .focus-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
}
.page-news .focus-card__link::after {
  content: "→";
  transition: transform 0.2s var(--ease-snap);
}
.page-news .focus-card__link:hover::after {
  transform: translateX(4px);
}

.page-news .news-refresh {
  padding: 40px 0 8px;
}
.page-news .refresh-panel {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 28px 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #E55B2B 48%, #1E1A16 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-news .refresh-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .refresh-panel__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.page-news .refresh-panel .section-eyebrow {
  color: rgba(247, 243, 239, 0.85);
}
.page-news .refresh-panel .section-title {
  color: var(--paper);
}
.page-news .refresh-panel__desc {
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 243, 239, 0.88);
}
.page-news .refresh-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-news .refresh-panel__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.page-news .refresh-panel__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.page-news .refresh-panel__figure {
  margin: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-news .refresh-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news .league-section {
  padding: 40px 0 8px;
}
.page-news .league-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.page-news .filter-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-news .league-filter:has(#lf-all:checked) label[for="lf-all"],
.page-news .league-filter:has(#lf-euro:checked) label[for="lf-euro"],
.page-news .league-filter:has(#lf-nba:checked) label[for="lf-nba"],
.page-news .league-filter:has(#lf-cba:checked) label[for="lf-cba"],
.page-news .league-filter:has(#lf-csl:checked) label[for="lf-csl"] {
  background: var(--brand);
  color: var(--paper);
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.page-news .filter-radio:focus-visible + .filter-btn {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.page-news .league-filter:has(#lf-euro:checked) ~ .dual-grid .league-item:not([data-league="euro"]),
.page-news .league-filter:has(#lf-nba:checked) ~ .dual-grid .league-item:not([data-league="nba"]),
.page-news .league-filter:has(#lf-cba:checked) ~ .dual-grid .league-item:not([data-league="cba"]),
.page-news .league-filter:has(#lf-csl:checked) ~ .dual-grid .league-item:not([data-league="csl"]) {
  display: none;
}
.page-news .dual-grid {
  display: grid;
  gap: 20px;
}
.page-news .league-panel,
.page-news .date-panel {
  padding: 20px;
  border-radius: var(--radius);
}
.page-news .league-panel {
  background: var(--peach);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.page-news .date-panel {
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 4px 4px 0 rgba(255, 215, 0, 0.45);
}
.page-news .panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.page-news .panel-heading__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.page-news .panel-heading__en {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.5);
}
.page-news .league-list {
  display: grid;
  gap: 4px;
}
.page-news .league-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 14px 10px 14px 16px;
  border-bottom: 1px solid rgba(217, 207, 198, 0.7);
  transition: background 0.2s var(--ease-snap);
}
.page-news .league-item:last-child {
  border-bottom: none;
}
.page-news .league-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 3px 3px 0;
  background: var(--brand);
}
.page-news .league-item:hover {
  background: rgba(255, 107, 53, 0.06);
}
.page-news .league-item__thumb {
  position: relative;
  width: 92px;
  height: 68px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.page-news .league-item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .league-item__badge {
  width: 92px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}
.page-news .league-item__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-news .league-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
}
.page-news .league-item__topline h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.page-news .league-item__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(44, 44, 44, 0.72);
}
.page-news .updated-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.page-news .updated-stamp::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.page-news .date-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-news .date-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--peach);
  border: 1px solid rgba(217, 207, 198, 0.6);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.page-news .date-item__time {
  flex-shrink: 0;
  min-width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--paper);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.page-news .date-item p {
  margin: 0;
  font-size: 14px;
}

.page-news .league-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.page-news .league-cta p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.page-news .league-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .league-cta .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.page-news .league-cta .btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.page-news .version-section {
  padding: 40px 0 40px;
}
.page-news .version-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.page-news .version-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--espresso);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--brand);
}
.page-news .version-aside__figure {
  margin: 0;
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.page-news .version-aside__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .version-aside__note {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-news .version-aside__ver {
  margin: 0;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
}
.page-news .version-aside__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 243, 239, 0.82);
}
.page-news .version-aside .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.page-news .version-aside .btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.page-news .version-list {
  display: grid;
  gap: 14px;
  align-content: start;
}
.page-news .version-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0 18px;
}
.page-news .version-item[open] {
  border-color: var(--brand);
  box-shadow: 4px 4px 0 rgba(255, 107, 53, 0.22);
}
.page-news .version-item summary {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  cursor: pointer;
}
.page-news .version-item summary::-webkit-details-marker {
  display: none;
}
.page-news .version-item summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1;
  color: var(--brand);
  transition: transform 0.2s var(--ease-snap);
}
.page-news .version-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.page-news .version-item__ver {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.03em;
  background: var(--ink);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.page-news .version-item__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.page-news .version-item__list {
  margin: 0;
  padding: 14px 0 18px;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.8);
  display: grid;
  gap: 8px;
}
.page-news .version-item__list li {
  position: relative;
  padding-left: 20px;
}
.page-news .version-item__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

@media (min-width: 860px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
  }
  .page-news .news-hero__title {
    font-size: clamp(52px, 6vw, 72px);
  }
  .page-news .focus-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
  .page-news .focus-card--main {
    grid-row: span 3;
  }
  .page-news .refresh-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 40px 36px;
  }
  .page-news .dual-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  .page-news .version-grid {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}
