.page-news {
  --news-accent-line: linear-gradient(135deg, rgba(245, 183, 0, 0.95), rgba(255, 107, 53, 0.95));
  color: var(--c-light);
  background: var(--c-bg);
  overflow-x: clip;
}

.page-news .breadcrumb {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 24px 0;
}

.page-news .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

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

.page-news .breadcrumb__link:hover {
  color: var(--c-gold);
}

.page-news .breadcrumb__separator {
  color: var(--c-border);
}

.page-news .breadcrumb__current {
  color: var(--c-white);
}

.page-news .news-hero {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 36px 24px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  color: var(--c-white);
  margin: 16px 0 14px;
}

.page-news .news-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 56ch;
  margin: 0 0 20px;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .news-hero__meta-cell {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-light);
  background: rgba(245, 183, 0, 0.08);
  border: 1px solid rgba(245, 183, 0, 0.22);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

.page-news .news-hero__meta-value {
  color: var(--c-gold);
  font-size: 15px;
  font-weight: 700;
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-card);
  box-shadow: 0 18px 50px rgba(3, 8, 20, 0.5);
  height: 260px;
}

.page-news .news-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 30, 58, 0.2), rgba(6, 18, 36, 0.1));
}

.page-news .news-hero__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 56px 24px 40px;
  }

  .page-news .news-hero__media {
    height: 340px;
  }
}

.page-news .news-outlet {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 1000px) {
  .page-news .news-outlet {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }
}

.page-news .section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(245, 183, 0, 0.1);
  border: 1px solid rgba(245, 183, 0, 0.26);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.page-news .section__title {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.3;
  color: var(--c-white);
  margin: 0 0 10px;
}

.page-news .section__desc {
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 62ch;
}

.page-news .announcements-section {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  scroll-margin-top: 24px;
}

.page-news .tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

.page-news .tab-nav__button {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-light);
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-news .tab-nav__button:hover {
  color: var(--c-white);
  border-color: var(--c-gold);
}

.page-news .tab-nav__button[aria-selected="true"] {
  color: var(--c-bg);
  background: var(--c-gold);
  border-color: var(--c-gold);
  font-weight: 700;
}

.page-news .tab-panel {
  display: grid;
  gap: 16px;
}

.page-news .tab-panel[hidden] {
  display: none !important;
}

.page-news .announcement-list__hint {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-border);
}

.page-news .announcement-list {
  display: grid;
  gap: 14px;
}

.page-news .post-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: rgba(11, 30, 58, 0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news .post-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--news-accent-line);
}

.page-news .post-row:hover {
  border-color: rgba(245, 183, 0, 0.55);
}

.page-news .post-row__no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}

.page-news .post-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.page-news .post-row__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
}

.page-news .post-row__title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c-white);
  margin: 0;
}

.page-news .post-row__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-light);
  margin: 6px 0 0;
}

.page-news .post-row__more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-gold);
  text-decoration: none;
  justify-self: start;
  transition: color 0.2s ease;
}

.page-news .post-row__more:hover {
  color: var(--c-gold-hover);
  text-decoration: underline;
}

@media (min-width: 600px) {
  .page-news .post-row {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
  }

  .page-news .post-row__more {
    justify-self: end;
    margin-top: 4px;
  }
}

.page-news .popular-block {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-news .popular-block__title {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.3;
  color: var(--c-white);
  margin: 4px 0 0;
}

.page-news .popular-block__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0 0 6px;
}

.page-news .popular-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news .popular-card:hover {
  border-color: rgba(245, 183, 0, 0.5);
  transform: translateY(-2px);
}

.page-news .popular-card__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 400 / 250;
  object-fit: cover;
  display: block;
}

.page-news .popular-card__body {
  padding: 16px;
}

.page-news .popular-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-news .popular-card__views {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
}

.page-news .popular-card__title {
  font-size: 17px;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0 0 8px;
}

.page-news .popular-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-light);
  margin: 0 0 12px;
}

.page-news .popular-card__more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .popular-card__more:hover {
  color: var(--c-gold-hover);
  text-decoration: underline;
}

.page-news .timeline-section {
  position: relative;
  overflow: hidden;
  padding: 56px 24px;
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  scroll-margin-top: 24px;
}

.page-news .timeline-section__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.page-news .timeline-section__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-bg-deep) 0%, rgba(6, 18, 36, 0.72) 50%, rgba(6, 18, 36, 0.9) 100%);
}

.page-news .timeline-section__bg-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.page-news .timeline-section__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-news .timeline {
  position: relative;
  display: grid;
  gap: 32px;
  margin-top: 36px;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-orange) 100%);
  opacity: 0.45;
}

.page-news .timeline__item {
  position: relative;
  padding-left: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-news .timeline__marker {
  position: absolute;
  top: 22px;
  left: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-bg-deep);
  border: 4px solid var(--c-gold);
  box-shadow: 0 0 0 6px rgba(245, 183, 0, 0.16);
  z-index: 1;
}

.page-news .timeline__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-gold);
  background: rgba(245, 183, 0, 0.1);
  border: 1px solid rgba(245, 183, 0, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
}

.page-news .timeline__content {
  max-width: 640px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s ease;
}

.page-news .timeline__content:hover {
  border-color: rgba(245, 183, 0, 0.5);
}

.page-news .timeline__title {
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0 0 8px;
}

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

@media (min-width: 800px) {
  .page-news .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-news .timeline__item {
    grid-template-columns: 1fr 140px 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .page-news .timeline__tagplate {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: start;
  }

  .page-news .timeline__marker {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }

  .page-news .timeline__content {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  .page-news .timeline__item:nth-child(even) .timeline__tagplate {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  .page-news .timeline__item:nth-child(even) .timeline__content {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .page-news .timeline__item:nth-child(even) .timeline__marker {
    grid-column: 2;
  }
}

.page-news .subscribe-section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.page-news .subscribe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

@media (min-width: 700px) {
  .page-news .subscribe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-news .subscribe-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.page-news .subscribe-card:hover {
  border-color: rgba(245, 183, 0, 0.45);
}

.page-news .subscribe-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 183, 0, 0.2), rgba(255, 107, 53, 0.12));
}

.page-news .subscribe-card--gold {
  border-color: rgba(245, 183, 0, 0.35);
}

.page-news .subscribe-card__icon {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  text-transform: uppercase;
}

.page-news .subscribe-card__title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c-white);
  margin: 0;
}

.page-news .subscribe-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-light);
  margin: 0;
}

.page-news .subscribe-card .btn {
  justify-self: start;
  margin-top: 6px;
}
