.page-news {
  --news-paper: var(--ayx-paper);
  --news-ink: var(--ayx-ink);
  --news-line-light: rgba(14, 14, 26, 0.14);
  --news-line-dark: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
  background: var(--ayx-ink);
  color: var(--ayx-text-primary);
}

.page-news > * {
  position: relative;
  z-index: 1;
}

.page-news::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(115deg, rgba(139, 92, 246, 0.38) 0%, rgba(42, 26, 94, 0.85) 48%, rgba(14, 14, 26, 1) 100%);
  background-size: 42px 42px, 42px 42px, auto;
  z-index: 0;
}

.news-topline {
  padding-top: 24px;
}

.news-hero {
  position: relative;
  padding: 24px 0 64px;
}

.news-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.news-hero__badge {
  display: inline-block;
  margin-bottom: 16px;
}

.news-hero__title {
  position: relative;
  display: inline-block;
  max-width: 680px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 4.2vw, 3.2rem);
}

.news-hero__title::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 4px;
  height: 18px;
  background: linear-gradient(90deg, rgba(255, 90, 54, 0.85), rgba(139, 92, 246, 0.5) 75%);
  transform: skewX(-14deg);
  z-index: -1;
  border-radius: 2px;
}

.news-hero__lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--ayx-text-secondary);
  line-height: 1.75;
}

.news-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-hero__index a {
  font-family: var(--ayx-font-mono);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ayx-text-primary);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.news-hero__index a:hover {
  border-color: var(--ayx-yellow);
  background: rgba(217, 248, 33, 0.12);
  transform: translateY(-2px);
}

.news-hero__stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 18px;
  background: rgba(14, 14, 26, 0.4);
}

.news-hero__stat-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-hero__stat-num {
  font-family: var(--ayx-font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ayx-yellow);
}

.news-hero__stat-label {
  font-size: 13px;
  color: var(--ayx-text-secondary);
}

.news-report-section {
  background: var(--ayx-paper);
  color: var(--ayx-ink);
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ayx-orange), var(--ayx-violet), var(--ayx-electric-blue)) 1;
  border-radius: 24px 0 0 0;
  padding-top: 48px;
}

.page-news .news-report-section .ayx-section-head__title,
.page-news .news-patch-section .ayx-section-head__title {
  color: var(--ayx-ink);
}

.news-report-section__desc {
  max-width: 640px;
  margin: -8px 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(14, 14, 26, 0.72);
}

.news-report-media {
  margin-bottom: 12px;
  border: 3px solid var(--ayx-ink);
  box-shadow: 10px 10px 0 rgba(14, 14, 26, 0.14);
}

.news-report-media img,
.news-zero-nine-layout__media img,
.news-patch-layout__media img,
.news-venue-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-report-list {
  margin-top: 36px;
  border-top: 6px solid var(--ayx-ink);
}

.news-report-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px 18px;
  padding: 24px 4px;
  border-bottom: 3px solid var(--news-line-light);
  transition: transform 0.2s ease, background 0.2s ease;
}

.news-report-item:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent 55%);
  transform: translateX(6px);
}

.news-report-item__rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.news-report-item__idx {
  font-family: var(--ayx-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ayx-violet);
}

.news-report-item__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--ayx-font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--ayx-text-primary);
  white-space: nowrap;
}

.news-report-item__tag--basketball {
  background: var(--ayx-electric-blue);
}

.news-report-item__tag--esports {
  background: var(--ayx-violet);
}

.news-report-item__tag--football {
  background: var(--ayx-orange);
}

.news-report-item__tag--volleyball {
  background: var(--ayx-yellow);
  color: var(--ayx-ink);
}

.news-report-item__tag--badminton {
  background: var(--ayx-deep-purple);
}

.news-report-item__title {
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ayx-ink);
}

.news-report-item__excerpt {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 10px;
  color: rgba(14, 14, 26, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-report-item__meta {
  font-family: var(--ayx-font-mono);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 12px;
  color: rgba(14, 14, 26, 0.5);
  margin: 0;
}

.news-load-more {
  margin-top: 34px;
  text-align: center;
}

.news-load-more .ayx-btn--ghost {
  border-color: var(--ayx-violet);
  color: var(--ayx-violet);
}

.news-load-more .ayx-btn--ghost:hover {
  border-color: var(--ayx-orange);
  color: var(--ayx-orange);
}

.news-zero-nine-section {
  background: linear-gradient(135deg, #150b2e 0%, var(--ayx-deep-purple) 60%, var(--ayx-ink) 100%);
  color: var(--ayx-text-primary);
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
}

.news-zero-nine-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.news-zero-nine-layout__media {
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.35);
}

.news-zero-nine-intro {
  margin: 0 0 24px;
  color: var(--ayx-text-secondary);
  line-height: 1.75;
  font-size: 16px;
}

.news-zero-nine-list {
  display: flex;
  flex-direction: column;
}

.news-zero-nine-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 2px solid var(--news-line-dark);
}

.news-zero-nine-item__code {
  font-family: var(--ayx-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ayx-yellow);
  padding-top: 4px;
}

.news-zero-nine-item__title {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ayx-text-primary);
}

.news-zero-nine-item__text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: var(--ayx-text-secondary);
}

.news-zero-nine-layout__more {
  margin-top: 28px;
}

.news-patch-section {
  background: var(--ayx-paper);
  color: var(--ayx-ink);
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}

.news-patch-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.news-patch-layout__media {
  border: 3px solid var(--ayx-ink);
  box-shadow: 10px 10px 0 rgba(14, 14, 26, 0.14);
}

.news-patch-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 3px solid var(--news-line-light);
}

.news-patch-item__tag {
  font-family: var(--ayx-font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ayx-text-primary);
  background: var(--ayx-violet);
  padding: 5px 10px;
  border-radius: 4px;
  height: fit-content;
  text-align: center;
}

.news-patch-item:nth-of-type(2n) .news-patch-item__tag {
  background: var(--ayx-ink);
}

.news-patch-item:nth-of-type(3n) .news-patch-item__tag {
  background: var(--ayx-orange);
}

.news-patch-item__body {
  min-width: 0;
}

.news-patch-item__title {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ayx-ink);
}

.news-patch-item__text {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: rgba(14, 14, 26, 0.72);
}

.news-patch-item__link {
  display: inline-block;
  font-family: var(--ayx-font-mono);
  font-size: 13px;
  color: var(--ayx-electric-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(59, 130, 246, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.news-patch-item__link:hover {
  border-color: var(--ayx-violet);
  color: var(--ayx-violet);
}

.news-venue-section {
  background: var(--ayx-ink);
  color: var(--ayx-text-primary);
}

.news-venue-media {
  border: 3px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.news-venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.news-venue-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ayx-border-radius);
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-venue-card:hover {
  border-color: var(--ayx-yellow);
  transform: translateY(-4px);
}

.news-venue-card__code {
  font-family: var(--ayx-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ayx-yellow);
  display: block;
  margin-bottom: 10px;
}

.news-venue-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ayx-text-primary);
}

.news-venue-card__text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: var(--ayx-text-secondary);
}

@media (min-width: 768px) {
  .news-hero__inner {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }

  .news-report-item {
    grid-template-columns: 88px 1fr;
    gap: 20px 28px;
    padding: 28px 8px;
  }

  .news-zero-nine-layout {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
  }

  .news-patch-layout {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
  }

  .news-venue-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .news-hero {
    padding-top: 32px;
  }

  .news-hero__lead {
    font-size: 17px;
  }

  .news-report-media {
    margin-bottom: 0;
  }

  .news-zero-nine-layout {
    grid-template-columns: 380px 1fr;
  }

  .news-patch-layout {
    grid-template-columns: 380px 1fr;
  }

  .news-venue-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
