.page-news {
  --news-gap-sm: 14px;
  --news-gap-md: 20px;
  --news-gap-lg: 32px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: clip;
}

.page-news .news-container,
.page-news .news-layout {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

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

.page-news .news-hero {
  position: relative;
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(200, 255, 46, 0.16);
  background:
    repeating-linear-gradient(-55deg, transparent 0 14px, rgba(200, 255, 46, 0.03) 14px 15px),
    radial-gradient(circle at 85% 30%, rgba(255, 138, 61, 0.1), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(0, 229, 255, 0.08), transparent 30%),
    var(--color-bg);
  overflow: hidden;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 260px;
  height: 180%;
  background: linear-gradient(120deg, transparent 24%, rgba(200, 255, 46, 0.12) 24.5%, rgba(200, 255, 46, 0.12) 25.5%, transparent 26%);
  transform: rotate(8deg);
  pointer-events: none;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumb a:hover {
  color: var(--color-lime);
}

.page-news .breadcrumb__sep {
  opacity: 0.5;
}

.page-news .breadcrumb__current {
  color: var(--color-text);
  font-weight: 700;
}

.page-news .news-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.page-news .news-hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-orange);
}

.page-news .news-hero__title {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.page-news .news-hero__accent {
  position: relative;
  color: var(--color-lime);
  white-space: nowrap;
}

.page-news .news-hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--color-lime);
  opacity: 0.5;
  transform: skewX(-18deg);
}

.page-news .news-hero__lead {
  max-width: 780px;
  margin: 0 0 26px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
}

.page-news .news-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .news-stat strong {
  font-family: var(--font-data);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-lime);
  letter-spacing: -0.02em;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-block: 40px 64px;
}

.page-news .news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--news-gap-md);
  align-self: start;
}

.page-news .news-sidebar__panel,
.page-news .news-sidebar__card {
  background: var(--color-panel);
  padding: 20px 18px;
  border: 1px solid rgba(200, 255, 46, 0.14);
  border-left: 3px solid var(--color-lime);
}

.page-news .news-sidebar__card {
  border-left-color: var(--color-orange);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.page-news .news-sidebar__card:hover {
  transform: translateX(3px);
  background: rgba(255, 138, 61, 0.06);
}

.page-news .news-sidebar__card--alt {
  border-left-color: var(--color-blue);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.page-news .news-sidebar__card--alt:hover {
  transform: translateX(3px);
  background: rgba(0, 229, 255, 0.06);
}

.page-news .news-sidebar__heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-lime);
}

.page-news .news-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.page-news .news-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(200, 255, 46, 0.08);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.page-news .news-sidebar__link span {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--color-blue);
  opacity: 0.8;
}

.page-news .news-sidebar__link em {
  font-style: normal;
  font-weight: 700;
}

.page-news .news-sidebar__link:hover {
  color: var(--color-lime);
  background: rgba(200, 255, 46, 0.06);
  padding-left: 10px;
}

.page-news .news-sidebar__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-orange);
}

.page-news .news-sidebar__card--alt .news-sidebar__tag {
  color: var(--color-blue);
}

.page-news .news-sidebar__text {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-stream {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.page-news .news-section {
  scroll-margin-top: calc(var(--header-h-mobile) + 16px);
}

.page-news .news-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--news-gap-md);
}

.page-news .news-section__index {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-blue);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.24);
  padding: 3px 8px;
  line-height: 1;
}

.page-news .news-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-news .news-section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 255, 46, 0.2), transparent);
}

.page-news .news-section__count {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--color-orange);
  white-space: nowrap;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--color-lime);
  background: rgba(200, 255, 46, 0.08);
  border: 1px solid rgba(200, 255, 46, 0.22);
}

.page-news .news-tag--blue {
  color: var(--color-blue);
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.26);
}

.page-news .news-tag--warm {
  color: var(--color-orange);
  background: rgba(255, 138, 61, 0.07);
  border-color: rgba(255, 138, 61, 0.28);
}

.page-news .news-feature {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: var(--news-gap-md);
  background: linear-gradient(145deg, var(--color-panel), rgba(19, 28, 36, 0.8));
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform 0.3s var(--ease), filter 0.3s ease;
}

.page-news .news-feature:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.page-news .news-feature__media {
  min-height: 220px;
  max-height: 340px;
  overflow: hidden;
  background: var(--color-panel);
}

.page-news .news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.page-news .news-feature:hover .news-feature__media img {
  transform: scale(1.03);
}

.page-news .news-feature__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 18px 24px;
}

.page-news .news-feature__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-lime), var(--color-blue));
}

.page-news .news-feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

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

.page-news .news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.page-news .news-feature__time {
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .news-feature__time::before {
  content: "◆ ";
  color: var(--color-blue);
  font-size: 9px;
  vertical-align: 2px;
}

.page-news .news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-lime);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.page-news .news-more::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.page-news .news-more:hover {
  color: var(--color-blue);
}

.page-news .news-more:hover::after {
  transform: translateX(4px);
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap-sm);
}

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 20px;
  background: linear-gradient(145deg, rgba(19, 28, 36, 0.9), rgba(11, 15, 20, 0.75));
  border: 1px solid rgba(200, 255, 46, 0.12);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.page-news .news-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--color-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(19, 28, 36, 0.9));
}

.page-news .news-card:hover::after {
  transform: scaleX(1);
}

.page-news .news-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-news .news-card__title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-card__title a:hover {
  color: var(--color-lime);
}

.page-news .news-card__excerpt {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .news-card__meta span::before {
  content: "◆ ";
  color: var(--color-blue);
  font-size: 9px;
  vertical-align: 2px;
}

.page-news .match-report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap-sm);
}

.page-news .match-report__feature {
  display: flex;
  flex-direction: column;
  background: var(--color-panel);
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-top: 3px solid var(--color-orange);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.page-news .match-report__feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 61, 0.45);
}

.page-news .match-report__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-panel);
}

.page-news .match-report__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.page-news .match-report__feature:hover .match-report__media img {
  transform: scale(1.04);
}

.page-news .match-report__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 20px;
  flex: 1;
}

.page-news .match-report__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-news .match-report__excerpt {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.72;
}

.page-news .match-report__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .match-report__compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  background: rgba(19, 28, 36, 0.7);
  border-left: 3px solid var(--color-orange);
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.page-news .match-report__compact:hover {
  background: rgba(255, 138, 61, 0.08);
  transform: translateX(3px);
}

.page-news .match-report__compact-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .match-report__compact-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .match-report__compact-title a:hover {
  color: var(--color-orange);
}

.page-news .match-report__compact-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .match-report__compact-meta {
  font-size: 12px;
  color: var(--color-orange);
}

.page-news .match-report__compact-meta::before {
  content: "◆ ";
  font-size: 9px;
  vertical-align: 2px;
}

.page-news .insight-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-panel);
  border: 1px solid rgba(0, 229, 255, 0.18);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.page-news .insight-feature:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-3px);
}

.page-news .insight-feature__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px 22px;
  order: 1;
}

.page-news .insight-feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.4;
}

.page-news .insight-feature__excerpt {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .insight-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-news .insight-feature__media {
  min-height: 220px;
  max-height: 340px;
  overflow: hidden;
  order: 2;
}

.page-news .insight-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.page-news .insight-feature:hover .insight-feature__media img {
  transform: scale(1.04);
}

.page-news .insight-list {
  display: grid;
  gap: var(--news-gap-sm);
  margin-top: var(--news-gap-sm);
}

.page-news .insight-item {
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.06), transparent 72%);
  border-right: 3px solid var(--color-blue);
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.page-news .insight-item:hover {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.11), transparent 72%);
  transform: translateX(-2px);
}

.page-news .insight-item__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .insight-item__title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .insight-item__title a:hover {
  color: var(--color-blue);
}

.page-news .insight-item__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-timeline {
  position: relative;
  display: grid;
  gap: var(--news-gap-md);
  padding-left: 28px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-lime), var(--color-blue), rgba(0, 229, 255, 0.1));
}

.page-news .timeline-node {
  position: relative;
  padding: 18px 16px;
  background: var(--color-panel);
  border: 1px solid rgba(200, 255, 46, 0.13);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.page-news .timeline-node:hover {
  background: rgba(200, 255, 46, 0.05);
  border-color: rgba(200, 255, 46, 0.3);
}

.page-news .timeline-node::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--color-lime);
  clip-path: polygon(0 0, 100% 25%, 75% 100%, 0 75%);
  transition: transform 0.3s var(--ease);
}

.page-news .timeline-node:hover::before {
  transform: rotate(90deg);
  background: var(--color-blue);
}

.page-news .timeline-node__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .timeline-node__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.72;
}

.page-news .timeline-node__media {
  margin-top: 14px;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg);
}

.page-news .timeline-node__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 0.5s var(--ease);
}

.page-news .timeline-node:hover .timeline-node__media img {
  transform: scale(1.03);
}

.page-news .news-subscribe {
  position: relative;
  padding: 24px 20px 28px;
  background:
    linear-gradient(135deg, rgba(200, 255, 46, 0.12), transparent 55%),
    linear-gradient(315deg, rgba(255, 138, 61, 0.08), transparent 45%),
    var(--color-panel);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .news-subscribe__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.page-news .news-subscribe__text {
  margin: 0;
  max-width: 620px;
  color: var(--color-muted);
  line-height: 1.75;
}

.page-news .news-subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.page-news .news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-bg);
  background: var(--color-lime);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.page-news .news-btn:hover {
  background: #daff66;
  transform: translateX(2px);
}

.page-news .news-btn--small {
  padding: 8px 14px;
  font-size: 13px;
}

.page-news .news-btn--line {
  background: transparent;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  clip-path: none;
}

.page-news .news-btn--line:hover {
  background: rgba(0, 229, 255, 0.1);
}

.page-news .news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
}

.page-news .news-link:hover {
  text-decoration: underline;
}

.page-news .news-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.page-news .news-link:hover::after {
  transform: translateX(3px);
}

.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .page-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--news-gap-md);
  }

  .page-news .news-feature__body {
    padding: 24px 22px 26px;
  }
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 48px 0 40px;
  }

  .page-news .news-feature {
    grid-template-columns: 1.1fr 1fr;
  }

  .page-news .news-feature__media {
    min-height: 100%;
    max-height: none;
  }

  .page-news .match-report-grid {
    grid-template-columns: 1.15fr 1fr;
  }

  .page-news .match-report__feature {
    grid-row: span 2;
  }

  .page-news .insight-feature {
    grid-template-columns: 1.1fr 1fr;
  }

  .page-news .insight-feature__body {
    order: 1;
    padding: 26px 24px;
  }

  .page-news .insight-feature__media {
    order: 2;
    min-height: 100%;
    max-height: none;
  }

  .page-news .insight-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--news-gap-md);
  }
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 48px;
    padding-block: 52px 80px;
  }

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

  .page-news .news-stream {
    gap: 72px;
  }

  .page-news .news-section {
    scroll-margin-top: calc(var(--header-h) + 20px);
  }

  .page-news .news-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }

  .page-news .news-feature__body {
    padding: 30px 28px;
  }

  .page-news .news-timeline {
    padding-left: 32px;
  }

  .page-news .timeline-node {
    padding: 20px 22px;
  }

  .page-news .timeline-node::before {
    left: -27px;
  }
}
