.page-news {
  --news-line-opacity: 0.35;
  --news-card-pad: 22px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news a:hover {
  color: var(--primary);
}
.page-news h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  text-transform: none;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 10px 0 18px;
}
.page-news h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--text);
}

.page-news .news-hero {
  position: relative;
  padding: 28px 0 52px;
  overflow: hidden;
}
.page-news .news-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -18%;
  width: 75%;
  height: 130%;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.06), rgba(0, 255, 255, 0.11));
  transform: skewX(-10deg);
  pointer-events: none;
}
.page-news .news-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.5), rgba(0, 255, 255, 0.5), transparent);
  opacity: 0.55;
}
.page-news .news-hero .breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}
.page-news .news-hero__copy .section-index {
  margin-bottom: 14px;
}
.page-news .news-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: var(--text);
}
.page-news .news-hero__lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 28px;
}
.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-news .pulse-board {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(rgba(57, 255, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 25, 39, 0.4), rgba(10, 14, 23, 0.9));
  background-size: 22px 22px, 22px 22px, 100% 100%;
  box-shadow: var(--shadow);
}
.page-news .pulse-board::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 110%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.14), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}
.page-news .pulse-board__bars {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 190px;
}
.page-news .pulse-bar {
  flex: 1;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  opacity: 0.55;
  transform-origin: bottom;
  animation: news-bar-breathe 2.8s ease-in-out infinite;
}
.page-news .pulse-bar:nth-child(1) { height: 30%; }
.page-news .pulse-bar:nth-child(2) { height: 58%; animation-delay: 0.05s; }
.page-news .pulse-bar:nth-child(3) { height: 82%; animation-delay: 0.1s; }
.page-news .pulse-bar:nth-child(4) { height: 42%; animation-delay: 0.15s; }
.page-news .pulse-bar:nth-child(5) { height: 70%; animation-delay: 0.2s; }
.page-news .pulse-bar:nth-child(6) { height: 34%; animation-delay: 0.25s; }
.page-news .pulse-bar:nth-child(7) { height: 88%; animation-delay: 0.3s; }
.page-news .pulse-bar:nth-child(8) { height: 52%; animation-delay: 0.35s; }
.page-news .pulse-bar:nth-child(9) { height: 62%; animation-delay: 0.4s; }
.page-news .pulse-bar:nth-child(10) { height: 26%; animation-delay: 0.45s; }
.page-news .pulse-bar:nth-child(11) { height: 74%; animation-delay: 0.5s; }
.page-news .pulse-bar:nth-child(12) { height: 46%; animation-delay: 0.55s; }
@keyframes news-bar-breathe {
  0%, 100% { transform: scaleY(0.92); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 0.85; }
}
.page-news .pulse-board__status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(57, 255, 20, 0.2);
}
.page-news .pulse-board__value {
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.page-news .pulse-board__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
}

.page-news .updates-section {
  position: relative;
  padding: 72px 0 88px;
}
.page-news .updates-section__head p {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0;
}
.page-news .updates-banner {
  margin: 32px 0 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.page-news .updates-banner img {
  width: 100%;
}
.page-news .update-tabs {
  margin-top: 12px;
}
.page-news .tabpanel {
  padding-top: 20px;
}

.page-news .timeline {
  position: relative;
  padding-left: 30px;
}
.page-news .timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--primary), rgba(255, 215, 0, 0.7));
  opacity: var(--news-line-opacity);
  border-radius: 2px;
}
.page-news .timeline__entry {
  position: relative;
  margin-bottom: 30px;
}
.page-news .timeline__dot {
  position: absolute;
  left: -32px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(57, 255, 20, 0.13), 0 0 16px rgba(57, 255, 20, 0.45);
  text-indent: -9999px;
  overflow: hidden;
}
.page-news .timeline__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--news-card-pad);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-news .timeline__card:hover {
  border-color: rgba(57, 255, 20, 0.45);
  transform: translateY(-2px);
}
.page-news .timeline__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.page-news .timeline__time {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.page-news .timeline__card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.page-news .timeline__card .accordion {
  margin-top: 14px;
}
.page-news .accordion__panel {
  padding-top: 8px;
}
.page-news .accordion__panel p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.page-news .feature-section {
  position: relative;
  padding: 88px 0;
}
.page-news .feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 80%;
  height: 100%;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.045), transparent 55%, rgba(0, 255, 255, 0.05));
  transform: skewX(-8deg);
  pointer-events: none;
}
.page-news .feature-section > .container {
  position: relative;
  z-index: 1;
}
.page-news .feature-layout {
  display: grid;
  gap: 40px;
}
.page-news .feature-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 30px;
}
.page-news .feature-points {
  display: grid;
  gap: 18px;
}
.page-news .feature-point {
  position: relative;
  padding: 22px 22px 22px 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.page-news .feature-point:hover {
  border-color: rgba(0, 255, 255, 0.4);
}
.page-news .feature-point__index {
  position: absolute;
  left: 18px;
  top: 20px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.04em;
}
.page-news .feature-point h3 {
  margin-bottom: 6px;
}
.page-news .feature-point p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
}
.page-news .feature-layout__visual {
  position: relative;
  align-self: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.page-news .feature-layout__visual img {
  width: 100%;
}
.page-news .feature-version {
  position: absolute;
  top: -8px;
  right: 16px;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(57, 255, 20, 0.55);
  opacity: 0.7;
  pointer-events: none;
}
.page-news .feature-command {
  margin-top: 48px;
  display: grid;
  gap: 28px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.055), rgba(0, 255, 255, 0.07) 52%, rgba(255, 215, 0, 0.035));
}
.page-news .feature-command__text {
  color: var(--text);
}
.page-news .feature-command__label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin: 0 0 12px;
}
.page-news .feature-command__text p:not(.feature-command__label) {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px;
}
.page-news .feature-command__text strong {
  color: var(--primary);
}
.page-news .feature-command__demo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-news .command {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--primary);
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.1);
}
.page-news .feature-command__hint {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.page-news .coverage-section {
  position: relative;
  padding: 88px 0;
}
.page-news .coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.03) 40%, rgba(0, 255, 255, 0.04) 80%, transparent);
  pointer-events: none;
}
.page-news .coverage-section__head p {
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0;
}
.page-news .coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}
.page-news .coverage-card {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-news .coverage-card:hover {
  border-color: rgba(57, 255, 20, 0.45);
  transform: translateY(-2px);
}
.page-news .coverage-card--hero {
  grid-column: span 2;
  min-height: 150px;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 82% 16%, rgba(57, 255, 20, 0.12), transparent 58%),
    var(--surface);
  border-color: rgba(57, 255, 20, 0.3);
}
.page-news .coverage-card__value {
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-news .coverage-card__label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 8px;
}
.page-news .coverage-card--hero .coverage-card__value {
  color: var(--secondary);
}
.page-news .coverage-visual {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.page-news .coverage-visual img {
  width: 100%;
}
.page-news .coverage-note {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 24px 0 0;
}

.page-news .matchday-section {
  position: relative;
  padding: 88px 0 96px;
}
.page-news .matchday-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
  opacity: 0.4;
}
.page-news .matchday-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}
.page-news .matchday-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-news .matchday-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}
.page-news .matchday-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, transparent 50%, rgba(57, 255, 20, 0.4) 50%);
  z-index: 1;
}
.page-news .matchday-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-news .matchday-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .matchday-card__body {
  padding: 24px;
}
.page-news .matchday-card__body .tag {
  margin-bottom: 12px;
}
.page-news .matchday-card__body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.page-news .matchday-card__visual {
  aspect-ratio: 3 / 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(0, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.page-news .form-strip {
  display: flex;
  gap: 8px;
}
.page-news .form-strip__item {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-news .form-strip__item--win {
  background: rgba(57, 255, 20, 0.14);
  color: var(--primary);
  border: 1px solid rgba(57, 255, 20, 0.35);
}
.page-news .form-strip__item--draw {
  background: rgba(255, 215, 0, 0.1);
  color: var(--tertiary);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.page-news .form-strip__item--loss {
  background: rgba(0, 255, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 255, 255, 0.3);
}
.page-news .form-strip__note {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-family: var(--mono);
}
.page-news .matchday-cta {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--elevation);
  border: 1px solid var(--border);
}
.page-news .matchday-cta p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 36px 0 64px;
  }
  .page-news .news-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
  .page-news .pulse-board {
    min-height: 280px;
  }
  .page-news .coverage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-news .coverage-card--hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 210px;
  }
}

@media (min-width: 980px) {
  .page-news .timeline {
    padding-left: 0;
  }
  .page-news .timeline::before {
    left: 172px;
    top: 14px;
    bottom: 14px;
  }
  .page-news .timeline__entry {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 48px;
    margin-bottom: 36px;
  }
  .page-news .timeline__dot {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    text-indent: 0;
    align-self: start;
    justify-self: end;
    padding: 20px 24px 0 0;
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    overflow: visible;
  }
  .page-news .timeline__dot::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 26px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(57, 255, 20, 0.13), 0 0 14px rgba(57, 255, 20, 0.45);
  }
  .page-news .timeline__card {
    grid-column: 2;
  }
  .page-news .feature-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
    align-items: center;
  }
  .page-news .feature-command {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
  }
  .page-news .matchday-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (min-width: 1200px) {
  .page-news .news-hero__inner {
    gap: 72px;
  }
  .page-news .updates-section,
  .page-news .feature-section,
  .page-news .coverage-section,
  .page-news .matchday-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }
}
