.page-news {
  overflow-x: clip;
}
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-total) + 48px) 20px 68px;
  background:
    radial-gradient(1000px 520px at 86% 12%, rgba(0, 212, 255, 0.16), transparent 60%),
    radial-gradient(760px 480px at 8% 82%, rgba(0, 255, 163, 0.10), transparent 55%),
    linear-gradient(180deg, #08101C 0%, #05070D 100%);
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  width: 46vw;
  min-width: 280px;
  height: 340px;
  right: -6%;
  top: 16%;
  transform: skew(-12deg) rotate(3deg);
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.22), rgba(0, 212, 255, 0.04));
  filter: blur(38px);
  border-radius: 32px;
  z-index: 0;
}
.page-news .news-hero::after {
  content: "LDSPORTS";
  position: absolute;
  right: 2%;
  bottom: 16px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 170px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: 0.06em;
  transform: skew(-6deg);
  z-index: 0;
  pointer-events: none;
}
.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
}
.page-news .news-hero-kicker {
  margin: 28px 0 14px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-news .news-hero-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gradient);
  transform: skew(-25deg);
  flex: 0 0 auto;
}
.page-news .news-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.12;
  margin: 0 0 20px;
  transform: skew(-3deg);
  letter-spacing: 0.02em;
  color: var(--text-main);
}
.page-news .news-hero-desc {
  max-width: 700px;
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.page-news .news-hero-desc strong {
  color: var(--green);
  font-weight: 700;
}
.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .news-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px 40px;
  padding-top: 56px;
}
.page-news .news-feed,
.page-news .news-tags {
  min-width: 0;
}
.page-news .news-feature-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 20px 0 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.page-news .news-feature-card:hover {
  border-color: rgba(0, 255, 163, 0.36);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.30), 0 0 36px rgba(0, 255, 163, 0.08);
}
.page-news .news-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.14), transparent 70%);
  pointer-events: none;
}
.page-news .news-feature-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news .news-feature-body {
  padding: 18px 18px 20px;
}
.page-news .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.page-news .news-round,
.page-news .news-cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 163, 0.10);
  color: var(--green);
  border: 1px solid rgba(0, 255, 163, 0.22);
}
.page-news .news-cat {
  background: rgba(0, 212, 255, 0.08);
  color: var(--blue);
  border-color: rgba(0, 212, 255, 0.20);
}
.page-news .news-feature-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--text-main);
}
.page-news .news-feature-text {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.page-news .news-feature-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-news .news-visit {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: letter-spacing 0.2s ease;
}
.page-news .news-visit:hover {
  letter-spacing: 0.06em;
}
.page-news .news-time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-sub);
}
.page-news .news-item-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  margin: 14px 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.page-news .news-item-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 255, 163, 0.08);
}
.page-news .news-item-card.compact {
  padding: 14px 16px 12px;
  margin: 10px 0;
}
.page-news .news-item-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.page-news .news-item-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--text-main);
}
.page-news .news-item-card p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.page-news .news-more {
  margin-top: 16px;
}
.page-news .news-more-summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.20);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.page-news .news-more-summary::-webkit-details-marker {
  display: none;
}
.page-news .news-more-summary:hover {
  background: rgba(0, 212, 255, 0.16);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.16);
}
.page-news .news-more-arrow {
  font-size: 18px;
  line-height: 1;
  color: var(--green);
  transition: transform 0.25s ease;
  font-weight: 700;
}
.page-news .news-more[open] .news-more-arrow {
  transform: rotate(45deg);
}
.page-news .news-more-content {
  padding-top: 4px;
}

.page-news .news-tags-block {
  position: relative;
}
.page-news .news-tag-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.page-news .news-tag-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin: 18px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 163, 0.4) transparent;
}
.page-news .news-tag-btn {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-main);
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  user-select: none;
}
.page-news .news-tag-btn:hover {
  border-color: rgba(0, 255, 163, 0.4);
}
.page-news .news-tag-all:checked ~ .news-tag-bar .news-tag-btn-all,
.page-news .news-tag-premier:checked ~ .news-tag-bar .news-tag-btn-premier,
.page-news .news-tag-laliga:checked ~ .news-tag-bar .news-tag-btn-laliga,
.page-news .news-tag-ucl:checked ~ .news-tag-bar .news-tag-btn-ucl,
.page-news .news-tag-k4:checked ~ .news-tag-bar .news-tag-btn-k4,
.page-news .news-tag-compare:checked ~ .news-tag-bar .news-tag-btn-compare {
  background: var(--gradient);
  color: #05070D;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(0, 255, 163, 0.28);
}
.page-news .news-tag-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-news .news-tag-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 15px 16px 13px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-news .news-tag-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.35);
}
.page-news .news-tag-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--text-main);
}
.page-news .news-tag-card p {
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 8px;
}
.page-news .news-tag-all:checked ~ .news-tag-feed .news-tag-card {
  display: block;
}
.page-news .news-tag-premier:checked ~ .news-tag-feed .news-tag-card[data-news-tag="premier"] {
  display: block;
}
.page-news .news-tag-premier:checked ~ .news-tag-feed .news-tag-card:not([data-news-tag="premier"]) {
  display: none;
}
.page-news .news-tag-laliga:checked ~ .news-tag-feed .news-tag-card[data-news-tag="laliga"] {
  display: block;
}
.page-news .news-tag-laliga:checked ~ .news-tag-feed .news-tag-card:not([data-news-tag="laliga"]) {
  display: none;
}
.page-news .news-tag-ucl:checked ~ .news-tag-feed .news-tag-card[data-news-tag="ucl"] {
  display: block;
}
.page-news .news-tag-ucl:checked ~ .news-tag-feed .news-tag-card:not([data-news-tag="ucl"]) {
  display: none;
}
.page-news .news-tag-k4:checked ~ .news-tag-feed .news-tag-card[data-news-tag="4k"] {
  display: block;
}
.page-news .news-tag-k4:checked ~ .news-tag-feed .news-tag-card:not([data-news-tag="4k"]) {
  display: none;
}
.page-news .news-tag-compare:checked ~ .news-tag-feed .news-tag-card[data-news-tag="compare"] {
  display: block;
}
.page-news .news-tag-compare:checked ~ .news-tag-feed .news-tag-card:not([data-news-tag="compare"]) {
  display: none;
}
.page-news .news-tag-image {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-news .news-tag-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news .news-tag-image p {
  margin: 0;
  padding: 12px 14px;
  background: rgba(5, 7, 13, 0.78);
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.7;
}

.page-news .news-season {
  margin-top: 68px;
  padding: 68px 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), transparent 18%), var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.page-news .news-season-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-float);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.page-news .news-season-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news .news-season-body {
  padding: 24px 22px 30px;
  position: relative;
}
.page-news .news-season-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: var(--gradient);
  transform: skew(-10deg);
}
.page-news .news-season-body h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  transform: skew(-3deg);
  margin: 0 0 12px;
  color: var(--text-main);
}
.page-news .news-season-body p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}
.page-news .news-season-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-news .news-season-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 8px 12px;
}
.page-news .news-season-list .news-round {
  font-size: 11px;
  padding: 2px 8px;
}
.page-news .news-season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-calendar {
  padding: 68px 0 80px;
  background: radial-gradient(720px 360px at 85% 80%, rgba(0, 212, 255, 0.08), transparent 60%);
}
.page-news .news-calendar-stage {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--bg-float);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}
.page-news .news-calendar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-news .news-calendar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.68), rgba(5, 7, 13, 0.28) 58%, rgba(5, 7, 13, 0.78));
}
.page-news .news-calendar-svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}
.page-news .news-cal-label {
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
}
.page-news .news-cal-label-active {
  fill: var(--green);
}
.page-news .news-cal-sub {
  font-family: var(--font-body);
  font-size: 13px;
}
.page-news .news-calendar-note {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
}
.page-news .news-calendar-note p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.page-news .news-calendar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: calc(var(--header-total) + 72px) 20px 96px;
  }
  .page-news .news-hero-title {
    font-size: 68px;
  }
  .page-news .news-hero-desc {
    font-size: 17px;
  }
  .page-news .news-main {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
  .page-news .news-feature-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
  }
  .page-news .news-feature-img {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
  }
  .page-news .news-feature-body {
    padding: 24px 22px;
  }
  .page-news .news-feature-title {
    font-size: 24px;
  }
  .page-news .news-tag-bar {
    flex-wrap: nowrap;
  }
  .page-news .news-season-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-news .news-season-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
  }
  .page-news .news-season-card img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }
  .page-news .news-season-body {
    padding: 34px 34px 36px;
  }
  .page-news .news-season-body h3 {
    font-size: 30px;
  }
  .page-news .news-calendar-stage {
    min-height: 360px;
  }
  .page-news .news-calendar-note {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-news .news-main {
    grid-template-columns: minmax(0, 1fr) 420px;
  }
  .page-news .news-feature-card {
    grid-template-columns: 1.2fr 1fr;
  }
}
