.page-news {
  --news-glow: rgba(181, 55, 242, 0.25);
  --news-lime-glow: rgba(57, 255, 20, 0.16);
  background: var(--bg);
  color: var(--ink);
}

.page-news .news-hero {
  position: relative;
  padding: 30px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(181, 55, 242, 0.16) 0%, transparent 52%),
    linear-gradient(300deg, rgba(0, 229, 255, 0.10) 0%, transparent 46%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon) 24%, var(--lime) 72%, transparent);
}

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

.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.page-news .breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  color: var(--lime);
  text-decoration: underline;
}

.page-news .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.page-news .breadcrumb [aria-current="page"] {
  color: var(--ink);
}

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

.page-news .news-hero-copy .section-kicker {
  color: var(--neon);
}

.page-news .news-hero-copy .page-title {
  margin: 12px 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.page-news .news-hero-copy .lead {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-news .news-hero-tags .tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 32, 74, 0.7);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.page-news .news-hero-tags .tag:hover,
.page-news .news-hero-tags .tag:focus-visible {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.2);
}

.page-news .news-hero-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(181, 55, 242, 0.4);
  background: var(--panel);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

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

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

.page-news .section {
  margin-bottom: 56px;
}

.page-news .section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.page-news .section-kicker {
  grid-column: 1 / -1;
  display: inline-block;
  font: 700 12px/1.2 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.page-news .section-title {
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.page-news .section-link {
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.page-news .section-link:hover,
.page-news .section-link:focus-visible {
  color: var(--lime);
  text-decoration: underline;
}

.page-news .prose {
  margin: 0 0 10px;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.page-news .match-scroll {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 32, 74, 0.5);
}

.page-news .match-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.page-news .match-table th {
  padding: 14px 16px;
  text-align: left;
  font: 700 13px/1.2 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(10, 17, 40, 0.72);
  border-bottom: 1px solid var(--line);
}

.page-news .match-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(42, 61, 107, 0.8);
  font-size: 15px;
  color: var(--ink);
}

.page-news .match-table tbody > tr:last-child td {
  border-bottom: none;
}

.page-news .match-table .match-detail-row td {
  padding: 0;
  border-bottom: none;
  background: rgba(0, 229, 255, 0.03);
}

.page-news .match-detail summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: background 0.2s, color 0.2s;
}

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

.page-news .match-detail summary::before {
  content: "+";
  font: 700 16px/1 var(--font-display);
  color: var(--neon);
  width: 18px;
}

.page-news .match-detail[open] summary::before {
  content: "−";
  color: var(--lime);
}

.page-news .match-detail summary:hover,
.page-news .match-detail summary:focus-visible {
  background: rgba(181, 55, 242, 0.14);
  color: var(--ink);
  outline: none;
}

.page-news .match-detail-body {
  padding: 4px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .match-detail-body p {
  margin: 0 0 8px;
}

.page-news .match-detail-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.page-news .match-detail-body li {
  position: relative;
  padding-left: 16px;
}

.page-news .match-detail-body li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.page-news .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 13px/1 var(--font-body);
  color: var(--muted);
}

.page-news .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.page-news .status-lime {
  color: var(--lime);
}

.page-news .media-frame {
  margin: 26px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
}

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

.page-news .transfer-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.page-news .transfer-card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--neon);
  border-radius: 12px;
  padding: 18px;
  background: rgba(18, 32, 74, 0.5);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.page-news .transfer-card:hover,
.page-news .transfer-card:focus-within {
  border-color: rgba(181, 55, 242, 0.6);
  border-left-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.page-news .transfer-club {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font: 700 17px/1.2 var(--font-display);
  color: var(--ink);
}

.page-news .club-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.page-news .club-dot-neon {
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

.page-news .club-dot-lime {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.page-news .transfer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.page-news .news-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.page-news .news-card {
  position: relative;
  padding: 20px 20px 20px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(18, 32, 74, 0.72), rgba(10, 17, 40, 0.58));
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 2px;
  background: var(--neon);
  opacity: 0.85;
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  border-color: rgba(181, 55, 242, 0.6);
  box-shadow: 0 8px 28px rgba(181, 55, 242, 0.14);
}

.page-news .news-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .news-card .card-title,
.page-news .transfer-card .card-title,
.page-news .data-system-item .card-title,
.page-news .refresh-item .card-title {
  margin: 0 0 8px;
  font: 700 18px/1.3 var(--font-display);
  color: var(--ink);
}

.page-news .card-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.page-news .data-system-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.page-news .data-system-item {
  position: relative;
  border: 1px solid var(--line);
  border-top: 3px solid var(--neon);
  border-radius: 0 0 12px 12px;
  padding: 20px 18px 22px;
  background: rgba(18, 32, 74, 0.5);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-news .data-system-num {
  display: inline-block;
  font: 800 14px/1 var(--font-display);
  color: var(--lime);
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 6px;
  margin-bottom: 14px;
}

.page-news .refresh-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.page-news .refresh-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: rgba(18, 32, 74, 0.54);
}

.page-news .refresh-num {
  display: inline-block;
  font: 800 32px/1 var(--font-display);
  color: var(--neon);
  text-shadow: 0 0 22px var(--news-glow);
  margin-bottom: 14px;
}

.page-news .refresh-item-copy .card-title {
  margin-bottom: 8px;
}

.page-news .side-card {
  position: relative;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18, 32, 74, 0.62);
  overflow: hidden;
}

.page-news .side-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--lime));
}

.page-news .side-card-title {
  margin: 6px 0 12px;
  font: 700 18px/1.3 var(--font-display);
  color: var(--ink);
}

.page-news .side-card .small {
  color: var(--muted);
  line-height: 1.6;
}

.page-news .side-card-download {
  border-color: rgba(181, 55, 242, 0.55);
  background: linear-gradient(135deg, rgba(181, 55, 242, 0.15), transparent 70%), rgba(18, 32, 74, 0.75);
}

.page-news .side-card-download .btn {
  margin-top: 14px;
}

.page-news .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-news .stat-item {
  border: 1px solid rgba(42, 61, 107, 0.85);
  border-radius: 10px;
  background: rgba(10, 17, 40, 0.5);
  padding: 16px 12px;
  text-align: center;
}

.page-news .stat-num {
  display: block;
  font: 800 24px/1.2 var(--font-display);
  color: var(--neon);
  text-shadow: 0 0 18px var(--news-glow);
}

.page-news .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.page-news .side-nav-list {
  display: grid;
  gap: 4px;
}

.page-news .side-nav-list a {
  position: relative;
  display: block;
  padding: 12px 14px 12px 30px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.page-news .side-nav-list a::before {
  content: "›";
  position: absolute;
  left: 14px;
  color: var(--lime);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.page-news .side-nav-list a:hover,
.page-news .side-nav-list a:focus-visible {
  background: rgba(181, 55, 242, 0.14);
  border-color: rgba(181, 55, 242, 0.45);
  color: var(--ink);
  outline: none;
}

@media (min-width: 700px) {
  .page-news .transfer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .data-system-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page-news .match-media,
  .page-news .transfer-media {
    max-width: 55%;
  }
}

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

  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: start;
  }

  .page-news .news-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
