.page-news {
  --news-gold-grad: linear-gradient(135deg, #ffd700, #f6a800);
  --news-blue-purple: linear-gradient(135deg, #00f0ff, #b537f2);
  background-image:
    radial-gradient(900px 320px at 88% 0%, rgba(181, 55, 242, .14), transparent 62%),
    linear-gradient(rgba(0, 240, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, .025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-repeat: no-repeat, repeat, repeat;
}
.page-news h1,
.page-news h2,
.page-news h3 {
  font-family: var(--font-display);
}
.page-news .news-ticker {
  overflow: hidden;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}
.page-news .news-ticker-track {
  display: flex;
  width: max-content;
  animation: news-ticker-scroll 38s linear infinite;
}
.page-news .news-ticker-group {
  display: inline-flex;
  align-items: center;
}
.page-news .news-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-primary);
  white-space: nowrap;
}
.page-news .news-ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, .8);
}
.page-news .news-ticker-item:nth-child(even)::before {
  background: var(--accent-purple);
  box-shadow: 0 0 10px rgba(181, 55, 242, .8);
}
@keyframes news-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.page-news .news-head {
  position: relative;
  padding: 36px 0 30px;
}
.page-news .news-head .breadcrumb {
  margin-bottom: 18px;
}
.page-news .news-head h1 {
  margin: 0 0 18px;
  max-width: 14em;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
  background: linear-gradient(120deg, #f4f8ff, #9bd8ff 52%, #c78aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-news .news-intro {
  max-width: 58em;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.page-news .news-intro strong {
  color: var(--accent-blue);
  font-weight: 600;
}
.page-news .news-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), transparent);
}
.page-news .news-layout {
  padding: 26px 0 80px;
}
.page-news .news-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-news .news-section-title .hud-index {
  color: var(--accent-blue);
}
.page-news .news-section-title h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .02em;
}
.page-news .news-section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--border-color), transparent);
}
.page-news .article-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.page-news .news-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.page-news .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, .55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .32), 0 0 32px rgba(0, 240, 255, .07);
}
.page-news .article-list .news-card:nth-child(even) {
  margin-left: 0;
}
.page-news .news-card-inner {
  display: block;
}
.page-news .news-card-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
}
.page-news .news-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.page-news .news-card-media::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 56px;
  height: 20px;
  background: var(--bg-surface);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.page-news .news-card-media::before {
  content: attr(data-label);
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 3px 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
  background: rgba(10, 14, 23, .55);
  border-radius: 4px;
}
.page-news .news-card-cat {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 3;
  padding: 6px 16px 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #04121c;
  background: var(--news-blue-purple);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.page-news .news-card-cat.cat-purple {
  background: linear-gradient(135deg, #b537f2, #7a2dd6);
}
.page-news .news-card-cat.cat-gold {
  background: var(--news-gold-grad);
  color: #201600;
}
.page-news .news-card-body {
  padding: 22px 20px 24px;
}
.page-news .news-card:not(.news-card-has-media) .news-card-body {
  padding-top: 52px;
}
.page-news .news-card-title {
  margin: 16px 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--text-primary);
}
.page-news .news-card-excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}
.page-news .news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.page-news .news-card-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-news .news-card-time::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(0, 230, 118, .6);
}
.page-news .readtime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-news .readtime-track {
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: var(--border-color);
  overflow: hidden;
}
.page-news .readtime-fill {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}
.page-news .news-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.page-news .news-card-readmore:hover,
.page-news .news-card-readmore:focus-visible {
  gap: 12px;
  color: #fff;
}
.page-news .news-more-btn {
  margin-top: 28px;
}
.page-news .news-side {
  margin-top: 48px;
}
.page-news .side-widget {
  position: relative;
  margin-bottom: 22px;
  padding: 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 18px;
}
.page-news .side-widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.page-news .side-widget-title::before {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: var(--news-blue-purple);
}
.page-news .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.page-news .tag {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-elev);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.page-news .tag-lg {
  padding: 8px 17px;
  font-size: 15px;
}
.page-news .tag-md {
  padding: 7px 15px;
  font-size: 13px;
}
.page-news .tag-blue {
  color: var(--accent-blue);
  border-color: rgba(0, 240, 255, .35);
}
.page-news .tag-purple {
  color: #cf8eff;
  border-color: rgba(181, 55, 242, .35);
}
.page-news .tag-gold {
  color: var(--accent-gold);
  border-color: rgba(255, 215, 0, .35);
}
.page-news .tag:hover,
.page-news .tag:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(0, 240, 255, .12);
}
.page-news .editor-pick {
  padding: 0;
  border: none;
  overflow: hidden;
}
.page-news .editor-pick-media {
  position: relative;
}
.page-news .editor-pick-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.page-news .editor-pick-badge {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 3;
  display: inline-block;
  padding: 5px 14px;
  transform: skewX(-8deg);
  background: var(--news-gold-grad);
  color: #201600;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.page-news .editor-pick-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(10, 14, 23, .12) 6%, rgba(10, 14, 23, .28) 46%, rgba(10, 14, 23, .95) 96%);
}
.page-news .editor-pick-title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
}
.page-news .editor-pick-link {
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}
.page-news .editor-pick-link::after {
  content: " →";
}
.page-news .weekly-brief {
  background: linear-gradient(145deg, rgba(0, 240, 255, .06), rgba(181, 55, 242, .07));
  border: 1px solid rgba(0, 240, 255, .22);
  border-radius: 16px;
  padding: 20px;
}
.page-news .weekly-brief-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--news-blue-purple);
  color: #06121c;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 16px;
}
.page-news .weekly-brief h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.page-news .weekly-brief p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
}
.page-news .brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.page-news .brief-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-news .brief-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--accent-purple);
}
.page-news .brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .brief-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.page-news .brief-link:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}
.page-news .calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.page-news .cal-item {
  background: var(--bg-elev);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.page-news .cal-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, .35);
}
.page-news .cal-week {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-blue);
  letter-spacing: .06em;
}
.page-news .cal-match {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}
.page-news .cal-item-live {
  border-color: rgba(0, 240, 255, .5);
  background: linear-gradient(160deg, rgba(0, 240, 255, .09), var(--bg-elev));
}
.page-news .cal-item-hot {
  border-color: rgba(255, 215, 0, .42);
}
.page-news .cal-item-hot .cal-week {
  color: var(--accent-gold);
}
.page-news .news-subscribe {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 215, 0, .1), rgba(181, 55, 242, .12) 70%, rgba(0, 240, 255, .06));
  border: 1px solid rgba(255, 215, 0, .3);
}
.page-news .news-subscribe::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, .2), transparent 68%);
}
.page-news .sub-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent-gold);
}
.page-news .news-subscribe h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}
.page-news .news-subscribe p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}
.page-news .news-subscribe p strong {
  color: var(--accent-blue);
  font-weight: 600;
}
.page-news .btn-gold {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffd700, #f6a800);
  border: none;
  color: #1f1600;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255, 215, 0, .22);
}
.page-news .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 215, 0, .34);
}
@media (min-width: 768px) {
  .page-news .article-list .news-card:nth-child(even) {
    margin-left: 18px;
  }
  .page-news .news-card-has-media .news-card-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 100%;
  }
  .page-news .news-card-has-media .news-card-media {
    display: flex;
    align-items: stretch;
    border-right: 1px solid var(--border-color);
  }
  .page-news .news-card-has-media .news-card-media img {
    flex: 1;
    height: 100%;
    min-height: 200px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .page-news .news-card-body {
    padding: 26px 26px 28px;
  }
}
@media (min-width: 1024px) {
  .page-news .article-list {
    gap: 32px;
  }
  .page-news .article-list .news-card:nth-child(even) {
    margin-left: 38px;
  }
  .page-news .news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
  }
  .page-news .news-side {
    margin-top: 0;
  }
}
