.page-news {
  --news-bg-secondary: var(--color-bg-secondary);
  --news-border: var(--color-border);
  --news-text-muted: var(--color-text-muted);
  --news-accent: var(--color-accent-blue);
  --news-accent-2: var(--color-accent-green);
  --news-accent-3: var(--color-accent-gold);
  --news-font-head: var(--font-heading);
  --news-bg-glow: rgba(0, 212, 255, 0.08);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.page-news .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.page-news .section__head {
  margin-bottom: var(--space-3);
}

.page-news .section__head p.text-mono {
  color: var(--news-accent);
  letter-spacing: 0.08em;
  font-size: 13px;
}

.page-news .section__head h2 {
  font-family: var(--news-font-head);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 4px 0 8px;
  color: var(--color-text);
}

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

.news-hero {
  position: relative;
  padding: 48px 0 40px;
  background:
    radial-gradient(900px 420px at 85% -10%, var(--news-bg-glow), transparent 70%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
  border-bottom: 2px solid var(--news-border);
}

.news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--news-accent) 0%, transparent 30%, transparent 70%, var(--news-accent-2) 100%);
  opacity: 0.6;
}

.news-hero .breadcrumb {
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--news-text-muted);
}

.news-hero .breadcrumb a {
  color: var(--news-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.news-hero .breadcrumb a:hover {
  color: var(--news-accent);
}

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

.news-hero__kicker {
  color: var(--news-accent-2);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.news-hero h1 {
  font-family: var(--news-font-head);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 12em;
  color: var(--color-text);
}

.news-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--news-text-muted);
  max-width: 46em;
  margin: 0;
}

.news-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--news-border);
  padding-top: 20px;
}

.news-hero__fact {
  border-left: 2px solid var(--news-accent);
  padding-left: 12px;
}

.news-hero__fact:nth-child(2) {
  border-left-color: var(--news-accent-2);
}

.news-hero__fact:nth-child(3) {
  border-left-color: var(--news-accent-3);
}

.news-hero__fact-num {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 4px;
}

.news-hero__fact-label {
  color: var(--news-text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.news-alert {
  padding: 32px 0;
  background: var(--news-bg-secondary);
  border-bottom: 2px solid var(--news-border);
}

.news-alert__banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 2px solid var(--news-accent);
  border-radius: var(--border-radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
    var(--color-bg);
  box-shadow: var(--shadow-card);
}

.news-alert__pulse {
  position: absolute;
  top: 12px;
  right: 16px;
  color: var(--news-accent-2);
  font-size: 16px;
  animation: newsPulse 2s ease-in-out infinite;
}

@keyframes newsPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.news-alert__tag {
  color: var(--news-accent-2);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.news-alert h2 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--color-text);
}

.news-alert__body p:last-child {
  font-size: 15px;
  line-height: 1.65;
  color: var(--news-text-muted);
  margin: 0;
}

.news-alert__action {
  display: flex;
  align-items: center;
}

.news-alert__action .btn {
  white-space: nowrap;
}

.news-content {
  padding: 40px 0 48px;
}

.news-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.news-updates__cover {
  margin-bottom: var(--space-4);
}

.news-updates__cover .figure__caption {
  border-top: 2px solid var(--news-border);
  padding-top: 8px;
}

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

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: var(--space-4);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline__rail::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -28px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--news-accent) 0%, var(--news-border) 100%);
}

.timeline__item:last-child .timeline__rail::before {
  display: none;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--news-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.35);
}

.timeline__card {
  padding: 18px 18px 16px;
  min-width: 0;
}

.timeline__card:hover {
  border-color: var(--news-accent);
  box-shadow: var(--shadow-card-hover);
}

.timeline__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.timeline__tag {
  background: rgba(0, 212, 255, 0.12);
  color: var(--news-accent);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.timeline__version {
  color: var(--news-accent-3);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.timeline__card h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--color-text);
}

.timeline__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--news-text-muted);
  margin: 0 0 10px;
}

.timeline__link {
  color: var(--news-accent);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.timeline__link:hover {
  border-bottom-color: var(--news-accent);
  color: var(--color-text);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.news-feature__item {
  padding: 16px;
  margin-bottom: var(--space-3);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.news-feature__item:hover {
  border-color: var(--news-accent-3);
}

.news-feature__figure {
  margin-bottom: 14px;
}

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

.news-feature__category {
  color: var(--news-accent-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.news-feature__item h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--color-text);
}

.news-feature__item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-text-muted);
  margin: 0;
}

.news-subscribe__card {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-subscribe__icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
}

.news-subscribe__card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--color-text);
}

.news-subscribe__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-text-muted);
  margin: 0 0 16px;
  max-width: 32em;
}

.news-matches__card {
  padding: 16px;
}

.news-matches__figure {
  margin-bottom: 14px;
}

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

.news-matches__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-matches__list li {
  border-bottom: 1px solid var(--news-border);
}

.news-matches__list li:last-child {
  border-bottom: none;
}

.news-matches__list a {
  display: block;
  padding: 12px 4px;
  color: var(--color-text);
  font-size: 15px;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.news-matches__list a:hover {
  color: var(--news-accent);
  padding-left: 10px;
}

.news-strip {
  border-top: 2px solid var(--news-border);
  background: var(--news-bg-secondary);
  padding: 28px 0 32px;
}

.news-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-strip__label {
  color: var(--news-accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0;
}

.news-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-strip__list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--news-text-muted);
  border-left: 2px solid var(--news-accent-2);
  padding-left: 12px;
}

.news-strip__list li span {
  color: var(--color-text);
  margin-right: 6px;
}

@media (min-width: 640px) {
  .news-alert__banner {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 24px;
  }

  .news-alert__pulse {
    position: static;
    grid-column: 1 / -1;
    text-align: right;
  }

  .news-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .news-strip__list {
    flex-direction: row;
    gap: 24px;
  }

  .news-strip__list li {
    border-left: none;
    padding-left: 0;
  }
}

@media (min-width: 960px) {
  .news-hero {
    padding: 56px 0 48px;
  }

  .news-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
    align-items: end;
    gap: 48px;
  }

  .news-hero__facts {
    border-top: none;
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .news-hero__fact {
    border-left: none;
    border-bottom: 1px solid var(--news-border);
    padding-left: 0;
    padding-bottom: 12px;
  }

  .news-hero__fact:last-child {
    border-bottom: none;
  }

  .news-alert {
    padding: 40px 0;
  }

  .news-content {
    padding: 56px 0 64px;
  }

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

  .news-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 16px);
  }
}
