.page-news {
  --news-gold-glow: 0 0 32px rgba(247, 180, 51, 0.18);
  --news-violet-glow: 0 0 28px rgba(139, 92, 246, 0.14);
  --news-card-radius: 18px;
  background: transparent;
  color: var(--color-icy-white);
  min-width: 0;
}

.page-news .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-orbit-slate);
}

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

.page-news .breadcrumb-item a:hover,
.page-news .breadcrumb-item a:focus-visible {
  color: var(--color-star-gold);
}

.page-news .breadcrumb-sep {
  color: var(--color-line-faint);
}

.page-news .breadcrumb-current {
  color: var(--color-icy-white);
}

.page-news .page-header {
  padding: 3rem 0 2rem;
  position: relative;
}

.page-news .page-eyebrow {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--color-star-gold);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.page-news .page-title {
  font-family: var(--font-title);
  font-size: var(--font-size-h1);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--color-icy-white);
  text-shadow: 0 0 40px rgba(247, 180, 51, 0.12);
}

.page-news .page-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-orbit-slate);
  max-width: 620px;
  margin: 0 0 1.5rem;
}

.page-news .header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.page-news .header-meta .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-success-teal);
  width: auto;
}

.page-news .header-meta .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success-teal);
  box-shadow: 0 0 8px var(--color-success-teal);
  display: inline-block;
}

.page-news .update-count {
  font-size: 0.8125rem;
  color: var(--color-orbit-slate);
}

.page-news .update-count strong {
  color: var(--color-icy-white);
  font-weight: 600;
}

.page-news .news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0 2rem;
  border-bottom: 1px solid var(--color-line-faint);
  margin-bottom: 2.5rem;
}

.page-news .filter-btn {
  appearance: none;
  background: rgba(21, 27, 49, 0.6);
  border: 1px solid var(--color-line-faint);
  color: var(--color-orbit-slate);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news .filter-btn:hover,
.page-news .filter-btn:focus-visible {
  border-color: var(--color-nebula-violet);
  color: var(--color-icy-white);
}

.page-news .filter-btn.is-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(139, 92, 246, 0.15));
  border-color: var(--color-nebula-violet);
  color: var(--color-icy-white);
  box-shadow: var(--news-violet-glow);
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-news .news-main {
  min-width: 0;
}

.page-news .section-title {
  font-family: var(--font-title);
  font-size: var(--font-size-h2);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-icy-white);
  margin: 0 0 1.5rem;
  position: relative;
}

.page-news .news-card {
  position: relative;
  background: linear-gradient(145deg, rgba(21, 27, 49, 0.9), rgba(11, 12, 26, 0.85));
  border: 1px solid var(--color-line-faint);
  border-radius: var(--news-card-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(247, 180, 51, 0.35);
  box-shadow: var(--news-gold-glow);
}

.page-news .news-card--featured {
  border-color: rgba(247, 180, 51, 0.4);
  background: linear-gradient(145deg, rgba(21, 27, 49, 0.95), rgba(15, 17, 35, 0.9));
}

.page-news .news-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(247, 180, 51, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-news .news-card__star {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-star-gold);
  font-size: 1.25rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(247, 180, 51, 0.6);
  z-index: 2;
}

.page-news .news-card__badge {
  position: absolute;
  top: -1px;
  left: 1.5rem;
  background: var(--color-star-gold);
  color: var(--color-space-void);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 2;
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.page-news .news-card__time {
  font-size: 0.75rem;
  color: var(--color-orbit-slate);
  letter-spacing: 0.04em;
}

.page-news .news-card__title {
  font-family: var(--font-title);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-icy-white);
  margin: 0 0 0.75rem;
  padding-left: 0.5rem;
  position: relative;
}

.page-news .news-card__title::before {
  content: '✦';
  position: absolute;
  left: -0.25rem;
  top: 0.15em;
  color: var(--color-star-gold);
  font-size: 0.875rem;
  text-shadow: 0 0 8px rgba(247, 180, 51, 0.5);
}

.page-news .news-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-orbit-slate);
  margin: 0 0 1.25rem;
}

.page-news .news-card--featured .news-card__text {
  color: rgba(244, 246, 255, 0.78);
}

.page-news .news-card__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.page-news .news-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-faint);
  object-fit: cover;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.page-news .btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.page-news .btn-ghost {
  background: transparent;
  border: 1px solid var(--color-line-faint);
  color: var(--color-icy-white);
}

.page-news .btn-ghost:hover,
.page-news .btn-ghost:focus-visible {
  border-color: var(--color-star-gold);
  color: var(--color-star-gold);
  box-shadow: var(--news-gold-glow);
}

.page-news .btn-primary {
  background: linear-gradient(135deg, var(--color-star-gold), #e09f1c);
  border: 1px solid transparent;
  color: var(--color-space-void);
  font-weight: 600;
  box-shadow: var(--glow-gold);
}

.page-news .btn-primary:hover,
.page-news .btn-primary:focus-visible {
  box-shadow: 0 0 40px rgba(247, 180, 51, 0.35);
  transform: translateY(-1px);
}

.page-news .tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.page-news .tag--gold {
  background: rgba(247, 180, 51, 0.12);
  color: var(--color-star-gold);
  border: 1px solid rgba(247, 180, 51, 0.3);
}

.page-news .tag--violet {
  background: rgba(139, 92, 246, 0.12);
  color: var(--color-nebula-violet);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.page-news .tag--teal {
  background: rgba(45, 212, 191, 0.1);
  color: var(--color-success-teal);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.page-news .news-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
}

.page-news .aside-card {
  position: relative;
  background: rgba(21, 27, 49, 0.7);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--news-card-radius);
  padding: 1.5rem;
  overflow: hidden;
}

.page-news .aside-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(247, 180, 51, 0.12);
  pointer-events: none;
}

.page-news .aside-card--violet {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.14), rgba(21, 27, 49, 0.7) 55%);
}

.page-news .aside-card--gold {
  background: linear-gradient(160deg, rgba(247, 180, 51, 0.1), rgba(21, 27, 49, 0.65) 60%);
}

.page-news .aside-card__title {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-icy-white);
  margin: 0 0 0.75rem;
}

.page-news .aside-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-orbit-slate);
  margin: 0 0 1rem;
}

.page-news .aside-card__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.page-news .aside-card__list li {
  font-size: 0.8125rem;
  color: var(--color-orbit-slate);
  padding-left: 1rem;
  position: relative;
}

.page-news .aside-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-star-gold);
  font-weight: 700;
}

.page-news .aside-card__list--plain {
  gap: 0.75rem;
}

.page-news .aside-card__list--plain li {
  padding-left: 0;
}

.page-news .aside-card__list--plain li::before {
  display: none;
}

.page-news .aside-card__list--plain a {
  color: var(--color-icy-white);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.page-news .aside-card__list--plain a:hover,
.page-news .aside-card__list--plain a:focus-visible {
  color: var(--color-star-gold);
}

.page-news .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-star-gold);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.page-news .link-arrow:hover,
.page-news .link-arrow:focus-visible {
  gap: 0.625rem;
}

.page-news .archive-section {
  margin-top: 4rem;
  position: relative;
}

.page-news .archive-header {
  margin-bottom: 2rem;
}

.page-news .archive-section .section-desc {
  font-size: 0.9375rem;
  color: var(--color-orbit-slate);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 0.75rem;
}

.page-news .timeline-wrap {
  position: relative;
  background: rgba(11, 12, 26, 0.4);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  overflow: hidden;
}

.page-news .timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-line-faint) 10%, var(--color-line-faint) 90%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.page-news .archive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  pointer-events: none;
}

.page-news .timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  pointer-events: none;
}

.page-news .timeline-svg svg {
  width: 100%;
  height: 100%;
}

.page-news .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 2rem;
}

.page-news .timeline-item {
  position: relative;
  padding-left: 1.75rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.page-news .timeline-item:hover {
  opacity: 1;
}

.page-news .timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(247, 180, 51, 0.4), rgba(139, 92, 246, 0.2));
}

.page-news .timeline-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-star-gold);
  box-shadow: 0 0 12px rgba(247, 180, 51, 0.7);
  z-index: 1;
}

.page-news .timeline-item:nth-child(2n) .timeline-dot {
  background: var(--color-nebula-violet);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.page-news .timeline-item:nth-child(3n) .timeline-dot {
  background: var(--color-success-teal);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.6);
}

.page-news .timeline-content {
  background: rgba(21, 27, 49, 0.5);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-news .timeline-content:hover {
  border-color: rgba(247, 180, 51, 0.3);
  box-shadow: var(--news-gold-glow);
  transform: translateX(2px);
}

.page-news .timeline-tag {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--color-nebula-violet);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-news .timeline-title {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-icy-white);
  margin: 0 0 0.375rem;
}

.page-news .timeline-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-orbit-slate);
  margin: 0;
}

.page-news .newsletter-strip {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  margin: 4rem 0 3rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(247, 180, 51, 0.05) 55%);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.page-news .newsletter-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 180, 51, 0.1), transparent 70%);
  pointer-events: none;
}

.page-news .newsletter-text p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-orbit-slate);
  margin: 0;
}

.page-news .newsletter-text strong {
  color: var(--color-icy-white);
  font-weight: 600;
}

@media (min-width: 640px) {
  .page-news .news-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .news-card__img {
    max-width: 360px;
    margin-bottom: 0;
  }

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

  .page-news .timeline-item {
    padding-left: 2.25rem;
  }

  .page-news .timeline-svg {
    display: none;
  }
}

@media (min-width: 900px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
  }

  .page-news .news-aside {
    position: sticky;
    top: 6.5rem;
  }

  .page-news .timeline-wrap {
    padding: 2.5rem;
  }

  .page-news .timeline {
    position: relative;
    padding-left: 0;
  }

  .page-news .timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding-left: 0;
    align-items: start;
  }

  .page-news .timeline-item::before {
    left: 186px;
    top: 0;
    width: 1px;
    height: calc(100% + 1.5rem);
    background: linear-gradient(to bottom, rgba(247, 180, 51, 0.35), rgba(139, 92, 246, 0.12));
  }

  .page-news .timeline-item:last-child::before {
    height: 100%;
    background: linear-gradient(to bottom, rgba(247, 180, 51, 0.35), transparent);
  }

  .page-news .timeline-dot {
    left: 181px;
    top: 12px;
  }

  .page-news .timeline-content {
    grid-column: 2;
  }

  .page-news .timeline-tag {
    position: absolute;
    left: 0;
    top: 12px;
    width: 170px;
    text-align: right;
    color: var(--color-star-gold);
  }

  .page-news .newsletter-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
  }
}
