.page-news {
  --news-panel: #122C4D;
  --news-cream: #F5F1E8;
  --news-ink: #1C1C1A;
  --news-grid: rgba(77, 201, 246, 0.07);
  --news-speed: #B6FF00;
  --news-orange: #FF5A3C;
  --news-cyan: #4DC9F6;
  --news-border: #23425F;
  --news-radius: 24px;
  position: relative;
  overflow-x: hidden;
}

.page-news .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--speed);
  margin-bottom: 16px;
}

.page-news .section-kicker::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--speed) 0 50%, transparent 50%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 30% 70%);
  margin-right: 2px;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}

.page-news .breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--ease);
}

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

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

.page-news .news-num {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 56px;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(255, 90, 60, 0.14), transparent 55%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.page-news .news-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  z-index: 0;
}

.page-news .news-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--news-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%, #000);
  mask-image: linear-gradient(180deg, transparent, #000 45%, #000);
  pointer-events: none;
}

.page-news .news-hero__slant {
  position: absolute;
  right: -10%;
  bottom: -54px;
  width: 62%;
  height: 130px;
  background: linear-gradient(105deg, transparent, rgba(182, 255, 0, 0.18) 50%, rgba(255, 90, 60, 0.32));
  transform: rotate(-12deg);
  z-index: 0;
  pointer-events: none;
  border-radius: 24px;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-news .news-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.06;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
}

.page-news .news-hero__title-main {
  display: block;
}

.page-news .news-hero__title-sub {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 400;
  color: var(--speed);
  letter-spacing: 0.02em;
  padding-left: 26px;
  position: relative;
}

.page-news .news-hero__title-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(255, 90, 60, 0.7);
}

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

.page-news .news-hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

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

.page-news .hero-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(18, 44, 77, 0.62);
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-mono);
}

.page-news .hero-meta-chip .news-num {
  color: var(--speed);
}

.page-news .hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--speed);
  box-shadow: 0 0 8px var(--speed);
}

.page-news .news-hero__cta {
  margin-left: auto;
  flex-shrink: 0;
}

.page-news .featured-update {
  padding: 56px 0;
  background:
    linear-gradient(180deg, rgba(18, 44, 77, 0.35), transparent 40%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.page-news .featured-update__card {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(18, 44, 77, 0.95), rgba(10, 20, 40, 0.98));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .page-news .featured-update__card {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-news .featured-update__content {
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .page-news .featured-update__content {
    padding: 48px 56px;
  }
}

.page-news .featured-update__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-news .featured-update__date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}

.page-news .featured-update__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.16;
  color: var(--text);
  font-weight: 800;
  margin: 0 0 16px;
}

.page-news .featured-update__lead {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.page-news .featured-update__facts {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(10, 20, 40, 0.4);
  border: 1px solid var(--border);
  max-width: 520px;
}

.page-news .update-fact {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .page-news .update-fact {
    grid-template-columns: 110px 1fr;
  }
}

.page-news .update-fact dt {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--speed);
}

.page-news .update-fact dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.page-news .featured-update__media {
  position: relative;
  min-height: 260px;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

@media (min-width: 960px) {
  .page-news .featured-update__media {
    border-top: none;
    border-left: 1px solid var(--border);
    min-height: auto;
  }
}

.page-news .featured-update__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.page-news .mini-chart {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 20, 40, 0.76);
  border: 1px solid rgba(245, 241, 232, 0.12);
}

.page-news .mini-chart__col {
  width: 10px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(77, 201, 246, 0.2));
}

.page-news .mini-chart__col--a { height: 42%; }
.page-news .mini-chart__col--b { height: 68%; }
.page-news .mini-chart__col--c { height: 55%; }
.page-news .mini-chart__col--d { height: 80%; }
.page-news .mini-chart__col--e { height: 36%; }
.page-news .mini-chart__col--f { height: 60%; }
.page-news .mini-chart__col--g { height: 72%; }
.page-news .mini-chart__col--h { height: 48%; }
.page-news .mini-chart__col--i { height: 88%; }
.page-news .mini-chart__col--j { height: 52%; }
.page-news .mini-chart__col--k { height: 64%; }
.page-news .mini-chart__col--l { height: 40%; }

.page-news .featured-update__chart-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  background: rgba(10, 20, 40, 0.76);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.12);
}

.page-news .topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-news .topic-tag--database {
  background: rgba(182, 255, 0, 0.12);
  border: 1px solid rgba(182, 255, 0, 0.4);
  color: var(--speed);
}

.page-news .topic-tag--feature {
  background: rgba(255, 90, 60, 0.14);
  border: 1px solid rgba(255, 90, 60, 0.45);
  color: #FF8A6A;
}

.page-news .topic-tag--insight {
  background: rgba(77, 201, 246, 0.12);
  border: 1px solid rgba(77, 201, 246, 0.4);
  color: var(--cyan);
}

.page-news .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color var(--ease);
}

.page-news .text-link:hover {
  color: var(--speed);
}

.page-news .featured-update__link {
  border-bottom: 1px dashed rgba(77, 201, 246, 0.4);
  padding-bottom: 3px;
}

.page-news .journal-board {
  padding: 56px 0;
  background: var(--bg-primary);
}

.page-news .journal-board__head {
  margin-bottom: 32px;
}

.page-news .journal-board__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.page-news .journal-board__title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 3px;
  transform: rotate(45deg);
  margin-right: 12px;
  vertical-align: middle;
}

.page-news .journal-board__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .page-news .journal-board__layout {
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
  }
}

.page-news .journal-catalog {
  background: linear-gradient(180deg, rgba(18, 44, 77, 0.92), rgba(18, 44, 77, 0.72));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 992px) {
  .page-news .journal-catalog {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

.page-news .journal-catalog__label {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--speed);
  margin: 0 0 12px;
}

.page-news .journal-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 20, 40, 0.4);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ease);
}

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

.page-news .filter-btn.is-active {
  background: var(--speed);
  border-color: var(--speed);
  color: var(--news-ink);
  font-weight: 600;
}

.page-news .filter-btn .news-num {
  color: inherit;
  font-size: 13px;
}

.page-news .journal-catalog__divider {
  height: 3px;
  margin: 20px 0;
  background: linear-gradient(90deg, var(--speed), transparent 70%);
  border-radius: 3px;
}

.page-news .journal-catalog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-news .journal-catalog__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background var(--ease);
}

.page-news .journal-catalog__list li:hover {
  background: rgba(10, 20, 40, 0.4);
}

.page-news .journal-catalog__list a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-news .journal-catalog__list a .news-num {
  color: var(--muted);
  font-size: 13px;
}

.page-news .journal-catalog__list a:hover {
  color: var(--speed);
}

.page-news .catalog-tag {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(77, 201, 246, 0.1);
  border: 1px solid rgba(77, 201, 246, 0.25);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
}

.page-news .journal-catalog__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.page-news .journal-catalog__foot-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-news .journal-catalog__link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease);
}

.page-news .journal-catalog__link:hover {
  color: var(--speed);
}

.page-news .article-stream {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .page-news .article-stream {
    grid-template-columns: 1fr 1fr;
  }
}

.page-news .article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 44, 77, 0.95), rgba(18, 44, 77, 0.76));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.page-news .article-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--speed), var(--cyan) 60%, transparent);
  opacity: 0.5;
  border-radius: 3px 3px 0 0;
}

.page-news .article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 201, 246, 0.5);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.page-news .article-card--paper {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 40%),
    var(--bg-cream);
  border-color: rgba(28, 28, 26, 0.1);
  color: var(--news-ink);
}

.page-news .article-card--paper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--bg-panel) transparent transparent;
  border-radius: 0 0 0 14px;
}

.page-news .article-card--paper::after {
  background: linear-gradient(90deg, rgba(255, 90, 60, 0.7), rgba(77, 201, 246, 0.4), transparent);
}

.page-news .article-card__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-news .article-card__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .article-card__title {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}

.page-news .article-card__excerpt {
  color: rgba(245, 241, 232, 0.82);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.page-news .article-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.page-news .article-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
}

.page-news .article-card__more span {
  transition: transform var(--ease);
}

.page-news .article-card:hover .article-card__more span {
  transform: translateX(4px);
}

.page-news .article-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .article-card__meta .news-num {
  color: inherit;
}

.page-news .article-card--paper .article-card__title {
  color: var(--news-ink);
}

.page-news .article-card--paper .article-card__excerpt {
  color: #3a3d40;
}

.page-news .article-card--paper .article-card__date {
  color: rgba(28, 28, 26, 0.5);
}

.page-news .article-card--paper .article-card__more {
  color: var(--news-ink);
}

.page-news .article-card--paper .article-card__meta {
  color: rgba(28, 28, 26, 0.55);
}

.page-news .article-card--paper .news-num {
  color: #126d97;
}

.page-news .article-card--paper .topic-tag--database {
  background: rgba(182, 255, 0, 0.25);
  border-color: rgba(28, 28, 26, 0.2);
  color: #3c4a1a;
}

.page-news .article-card--paper .topic-tag--feature {
  background: rgba(255, 90, 60, 0.15);
  border-color: rgba(28, 28, 26, 0.15);
  color: #b83a22;
}

.page-news .article-card--paper .topic-tag--insight {
  background: rgba(77, 201, 246, 0.15);
  border-color: rgba(28, 28, 26, 0.15);
  color: #126d97;
}

.page-news .article-card--with-img {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-news .article-card--with-img {
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-news .article-card--with-img .article-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .page-news .article-card--with-img .article-card__body {
    padding: 36px 36px;
  }
}

.page-news .article-card--with-img .article-card__media {
  position: relative;
  min-height: 220px;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .page-news .article-card--with-img .article-card__media {
    min-height: 100%;
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.page-news .article-card--with-img .article-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .briefing-section {
  padding: 56px 0;
  background:
    linear-gradient(180deg, transparent, rgba(18, 44, 77, 0.4)),
    var(--bg-primary);
  border-top: 1px solid var(--border);
}

.page-news .briefing-section__head {
  margin-bottom: 32px;
}

.page-news .briefing-section__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.page-news .briefing-section__sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.page-news .briefing-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-news .briefing-section__body {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
  }
}

.page-news .briefing-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--bg-panel);
}

.page-news .briefing-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-news .sprint-scale {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(10, 20, 40, 0.84);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
}

.page-news .sprint-scale__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--speed);
  margin-bottom: 8px;
}

.page-news .sprint-scale__track {
  position: relative;
  height: 8px;
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.15);
  overflow: visible;
}

.page-news .sprint-scale__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 75%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--speed), var(--cyan));
}

.page-news .sprint-scale__needle {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translate(50%, -50%);
  background: var(--accent);
  color: var(--bg-cream);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 90, 60, 0.6);
}

.page-news .sprint-scale__needle .news-num {
  color: inherit;
}

.page-news .sprint-scale__foot {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}

.page-news .briefing-list {
  display: grid;
  gap: 16px;
}

.page-news .briefing-item {
  background: linear-gradient(135deg, rgba(18, 44, 77, 0.96), rgba(18, 44, 77, 0.72));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}

.page-news .briefing-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--speed) 70%, transparent);
  opacity: 0.5;
}

.page-news .briefing-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.page-news .briefing-item__league {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.page-news .briefing-item__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.page-news .briefing-item__text .news-num {
  color: var(--speed);
}

.page-news .briefing-item__text .stat-number {
  font-size: 18px;
  color: var(--speed);
  background: rgba(182, 255, 0, 0.08);
  padding: 0 6px;
  border-radius: 6px;
}

.page-news .briefing-item__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.page-news .briefing-item__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .briefing-item__bar {
  display: block;
  height: 4px;
  width: 64px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--speed), transparent);
}

.page-news .news-footer {
  padding: 48px 0 72px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.page-news .news-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .page-news .news-footer__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: end;
  }
}

.page-news .news-footer__title {
  font-family: var(--font-headline);
  font-size: 24px;
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.page-news .news-footer__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.page-news .news-footer__grid .news-footer__cell:nth-child(2) {
  display: grid;
  gap: 10px;
}

.page-news .news-footer__link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(18, 44, 77, 0.5);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.page-news .news-footer__link:hover {
  border-color: var(--speed);
  color: var(--speed);
  background: rgba(18, 44, 77, 0.8);
}

@media (max-width: 480px) {
  .page-news .news-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-news .news-hero__cta {
    margin-left: 0;
  }

  .page-news .featured-update__card {
    border-radius: 20px;
  }

  .page-news .update-fact dd {
    font-size: 13px;
  }

  .page-news .journal-catalog {
    padding: 20px;
  }

  .page-news .article-card {
    padding: 24px 20px 22px;
  }

  .page-news .briefing-item {
    padding: 18px 16px 14px;
  }

  .page-news .briefing-item__text {
    font-size: 14px;
  }
}
