.page-news {
  --news-card-pad: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-space);
  color: var(--color-fog);
  padding-bottom: 4rem;
}

.page-news .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0 0.25rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.page-news .breadcrumb-divider {
  color: var(--color-gray);
  opacity: 0.6;
}

.page-news .breadcrumb-item {
  color: var(--color-silver);
  text-decoration: none;
}

.page-news .breadcrumb-item[aria-current="page"] {
  color: var(--color-orange);
  font-weight: 700;
}

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

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 194, 255, 0.18);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 26, 61, 0.96) 0%, rgba(10, 15, 36, 0.55) 55%, rgba(0, 194, 255, 0.08) 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -18%;
  width: 50%;
  height: 75%;
  background: repeating-linear-gradient(-45deg, rgba(0, 194, 255, 0.06) 0 2px, transparent 2px 12px);
  transform: skewX(-12deg);
  z-index: 0;
  pointer-events: none;
}

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

.page-news .news-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.5rem 0 2.5rem;
}

.page-news .news-hero__copy {
  position: relative;
}

.page-news .chapter-index {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-electric);
  opacity: 0.35;
  margin-bottom: 0.5rem;
  user-select: none;
}

.page-news .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.page-news h1 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.page-news .section-lead {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--color-silver);
  max-width: 36em;
  margin-bottom: 1.75rem;
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.page-news .news-hero__stats .stat-block {
  background: rgba(17, 26, 61, 0.8);
  border: 1px solid rgba(192, 199, 216, 0.14);
  border-radius: var(--radius-m);
  padding: 0.875rem 0.5rem;
  text-align: center;
}

.page-news .news-hero__stats .stat-value {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1.1;
}

.page-news .news-hero__stats .stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.page-news .news-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.page-news .print-border {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-silver);
  border: 1px solid rgba(192, 199, 216, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-s);
  letter-spacing: 0.05em;
  display: inline-block;
  background: rgba(10, 15, 36, 0.4);
}

.page-news .news-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-m);
  border: 1px solid rgba(0, 194, 255, 0.28);
  box-shadow: var(--shadow-card);
  position: relative;
}

.page-news .news-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

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

.page-news .news-layout {
  padding-top: 2.5rem;
}

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

.page-news .news-filter-heading {
  margin-bottom: 0.75rem;
}

.page-news .news-filter-heading .section-title {
  margin-bottom: 0.375rem;
}

.page-news .news-filter-hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
  margin: 0 0 0.75rem;
}

.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-midnight);
  border-radius: var(--radius-m);
  border: 1px solid rgba(192, 199, 216, 0.1);
}

.page-news .filter-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
  letter-spacing: 0.12em;
  margin-right: 0.25rem;
}

.page-news .filter-btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(192, 199, 216, 0.25);
  color: var(--color-silver);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.page-news .filter-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-fog);
}

.page-news .filter-btn.is-active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-space);
  font-weight: 700;
}

.page-news .section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 1.25rem;
  padding-left: 0.75rem;
  border-left: 5px solid var(--color-orange);
  line-height: 1.2;
}

.page-news .news-article-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-news .news-card {
  background: var(--color-midnight);
  border-radius: var(--radius-m);
  border: 1px solid rgba(192, 199, 216, 0.1);
  border-left: 4px solid var(--color-orange);
  padding: var(--news-card-pad);
  transition: transform var(--transition-standard), box-shadow var(--transition-standard), border-left-color var(--transition-standard);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-left-color: var(--color-electric);
}

.page-news .news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.page-news .news-card__index {
  font-family: var(--font-headline);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(192, 199, 216, 0.12);
  -webkit-text-stroke: 1px rgba(192, 199, 216, 0.35);
}

.page-news .news-card__title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.3;
  margin: 0;
}

.page-news .news-card__title a {
  color: var(--color-fog);
  text-decoration: none;
}

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

.page-news .news-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-gray);
  margin: 0;
}

.page-news .news-inline-link {
  color: var(--color-electric);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 194, 255, 0.5);
}

.page-news .news-inline-link:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.page-news .news-card__thumb,
.page-news .news-card__inline-media {
  margin: 0.25rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-s);
  border: 1px solid rgba(192, 199, 216, 0.1);
  background: var(--color-space);
}

.page-news .news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(192, 199, 216, 0.1);
  padding-top: 0.85rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.page-news .news-card__more {
  color: var(--color-electric);
  text-decoration: none;
  font-weight: 700;
}

.page-news .news-card__more:hover {
  color: var(--color-orange);
}

.page-news .news-sidebar {
  margin-top: 2.5rem;
}

.page-news .news-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-news .sidebar-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 0 1rem;
  color: var(--color-fog);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-news .sidebar-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-news .hot-block,
.page-news .tag-block,
.page-news .sidebar-guide {
  background: var(--color-midnight);
  border: 1px solid rgba(192, 199, 216, 0.1);
  border-radius: var(--radius-m);
  padding: 1.25rem;
}

.page-news .hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-news .hot-item {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.page-news .hot-item__rank {
  font-family: var(--font-headline);
  font-weight: 900;
  color: var(--color-orange);
  font-size: 1.15rem;
  min-width: 1.2em;
  text-align: right;
}

.page-news .hot-item a {
  color: var(--color-silver);
  text-decoration: none;
  line-height: 1.45;
}

.page-news .hot-item a:hover {
  color: var(--color-orange);
}

.page-news .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-news .cloud-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 107, 44, 0.12);
  border: 1px solid rgba(255, 107, 44, 0.35);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.page-news .cloud-tag:hover {
  background: var(--color-orange);
  color: var(--color-space);
}

.page-news .sidebar-guide p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-s);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.page-news .btn-block {
  display: flex;
  width: 100%;
}

.page-news .btn-block + .btn-block {
  margin-top: 0.5rem;
}

.page-news .btn-primary {
  background: var(--color-orange);
  color: var(--color-space);
}

.page-news .btn-primary:hover {
  background: var(--color-electric);
}

.page-news .btn-outline {
  border: 1px solid var(--color-silver);
  color: var(--color-silver);
  background: transparent;
}

.page-news .btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.page-news .news-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-space) 100%);
  border: 1px solid rgba(0, 194, 255, 0.18);
  border-radius: var(--radius-m);
  position: relative;
  overflow: hidden;
}

.page-news .news-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-electric));
  z-index: 1;
}

.page-news .news-cta h2 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.page-news .news-cta p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-news [data-reveal] {
  opacity: 1;
}

.page-news [data-reveal][data-revealed] {
  animation: news-card-reveal-35b2b95e 0.6s ease-out both;
}

@keyframes news-card-reveal-35b2b95e {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0 4rem;
  }

  .page-news .news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .page-news .news-sidebar {
    margin-top: 0;
  }

  .page-news .news-sidebar__inner {
    position: sticky;
    top: 1.5rem;
  }

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

  .page-news .news-cta__copy {
    max-width: 60%;
  }
}

@media (max-width: 480px) {
  .page-news .news-hero__stats {
    gap: 0.375rem;
  }

  .page-news .news-hero__stats .stat-block {
    padding: 0.65rem 0.375rem;
  }

  .page-news .filter-bar {
    padding: 0.75rem;
  }
}
