.page-news {
  --news-blue: #1264FF;
  --news-orange: #FF6A00;
  --news-yellow: #FFE818;
  --news-green: #00B96D;
  --news-ink: #171717;
  --news-deep: #0E0F12;
  --news-cream: #F5EFE6;
  --news-white: #FFFFFF;
  --news-border: #D8D0BF;
  --news-text: #2E2E2E;
  --news-heading: #111111;
  --news-radius-lg: 32px;
  --news-radius-md: 20px;
  --news-radius-sm: 12px;
  --news-font-heading: "Oswald", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --news-font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --news-header-w: 280px;
  --news-mobile-header-h: 64px;
  background-color: var(--news-cream);
  font-family: var(--news-font-body);
  color: var(--news-text);
  overflow-x: hidden;
}

/* ===== 首屏公告区 ===== */
.page-news .news-hero {
  background-color: var(--news-ink);
  color: var(--text-on-dark);
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(18, 100, 255, 0.35) 0%, rgba(18, 100, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, rgba(255, 106, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.page-news .news-hero__content {
  order: 2;
}

.page-news .news-hero__visual {
  order: 1;
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  position: relative;
}

.page-news .news-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 50%, rgba(23, 23, 23, 0.6) 100%);
  pointer-events: none;
}

.page-news .news-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.page-news .breadcrumb a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.page-news .breadcrumb__sep {
  color: rgba(245, 245, 245, 0.4);
}

.page-news .news-hero__eyebrow {
  color: var(--news-blue);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-news .news-hero__title {
  font-family: var(--news-font-heading);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-on-dark);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.page-news .news-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.85);
  margin: 0 0 24px;
  max-width: 560px;
}

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

.page-news .news-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 245, 245, 0.75);
}

.page-news .hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--news-green);
  display: inline-block;
  flex-shrink: 0;
}

.page-news .hero-meta-dot--orange {
  background-color: var(--news-orange);
}

.page-news .hero-meta-dot--yellow {
  background-color: var(--news-yellow);
}

.page-news .news-hero__index {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: rgba(245, 245, 245, 0.12);
  border-radius: var(--news-radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 245, 245, 0.12);
}

.page-news .hero-index-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background-color: var(--news-ink);
  text-decoration: none;
  color: rgba(245, 245, 245, 0.85);
  transition: background-color 0.25s ease;
}

.page-news .hero-index-item:hover {
  background-color: rgba(18, 100, 255, 0.12);
}

.page-news .hero-index-item__num {
  font-family: var(--news-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--news-blue);
  line-height: 1;
}

.page-news .hero-index-item:nth-child(2) .hero-index-item__num {
  color: var(--news-orange);
}

.page-news .hero-index-item:nth-child(3) .hero-index-item__num {
  color: var(--news-yellow);
}

.page-news .hero-index-item:nth-child(4) .hero-index-item__num {
  color: var(--news-green);
}

.page-news .hero-index-item__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== 浮动提示条 ===== */
.page-news .news-ticker {
  background-color: var(--news-deep);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.page-news .news-ticker__inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.page-news .news-ticker__label {
  display: inline-flex;
  align-items: center;
  background-color: var(--news-orange);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.page-news .news-ticker__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.75);
}

/* ===== 通用区块布局 ===== */
.page-news .news-section {
  padding: 72px 0;
}

.page-news .news-section--dark {
  background-color: var(--news-ink);
  color: var(--text-on-dark);
}

.page-news .news-section--cream {
  background-color: var(--news-cream);
  color: var(--news-text);
}

.page-news .news-section--ink {
  background-color: var(--news-deep);
  color: var(--text-on-dark);
}

.page-news .news-section--light {
  background-color: #FFFFFF;
  color: var(--news-text);
}

.page-news .news-section__header {
  margin-bottom: 48px;
}

.page-news .news-section__header--split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .news-section__eyebrow {
  color: var(--news-blue);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-news .news-section--dark .news-section__eyebrow,
.page-news .news-section--ink .news-section__eyebrow {
  color: var(--news-blue);
}

.page-news .news-section__title {
  font-family: var(--news-font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  color: inherit;
}

.page-news .news-section--dark .news-section__title,
.page-news .news-section--ink .news-section__title {
  color: var(--text-on-dark);
}

.page-news .news-section__desc {
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0;
  opacity: 0.85;
}

.page-news .news-section__footer-link {
  margin-top: 40px;
  text-align: center;
}

/* ===== 产品更新时间线 ===== */
.page-news .update-timeline {
  position: relative;
  padding-left: 0;
}

.page-news .timeline-item {
  position: relative;
  padding: 0 0 56px 28px;
}

.page-news .timeline-item:last-child {
  padding-bottom: 0;
}

.page-news .timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--news-blue) 0%, rgba(18, 100, 255, 0.4) 40%, rgba(255, 106, 0, 0.5) 100%);
}

.page-news .timeline-item:last-child::before {
  bottom: 60%;
}

.page-news .timeline-item__marker {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-news .timeline-item__marker::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--news-blue);
  border: 3px solid var(--news-ink);
  box-shadow: 0 0 0 2px rgba(18, 100, 255, 0.3);
  z-index: 1;
}

.page-news .timeline-item:nth-child(2) .timeline-item__marker::before {
  background-color: var(--news-orange);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.3);
}

.page-news .timeline-item:nth-child(3) .timeline-item__marker::before {
  background-color: var(--news-yellow);
  box-shadow: 0 0 0 2px rgba(255, 232, 24, 0.3);
}

.page-news .timeline-item:nth-child(4) .timeline-item__marker::before {
  background-color: var(--news-green);
  box-shadow: 0 0 0 2px rgba(0, 185, 109, 0.3);
}

.page-news .timeline-item__phase {
  display: inline-block;
  background-color: rgba(245, 245, 245, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
}

.page-news .timeline-item__line {
  flex: 1;
  height: 1px;
  background: rgba(245, 245, 245, 0.12);
}

.page-news .timeline-item__body {
  background: rgba(245, 245, 245, 0.04);
  border-radius: var(--news-radius-md);
  padding: 24px;
  border-left: 3px solid var(--news-blue);
  transition: background-color 0.3s ease;
}

.page-news .timeline-item:nth-child(2) .timeline-item__body {
  border-left-color: var(--news-orange);
}

.page-news .timeline-item:nth-child(3) .timeline-item__body {
  border-left-color: var(--news-yellow);
}

.page-news .timeline-item:nth-child(4) .timeline-item__body {
  border-left-color: var(--news-green);
}

.page-news .timeline-item__body:hover {
  background: rgba(245, 245, 245, 0.07);
}

.page-news .timeline-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-news .chip {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.page-news .chip--blue {
  background-color: rgba(18, 100, 255, 0.2);
  color: #7BA5FF;
}

.page-news .chip--orange {
  background-color: rgba(255, 106, 0, 0.2);
  color: #FFA366;
}

.page-news .chip--yellow {
  background-color: rgba(255, 232, 24, 0.18);
  color: #FFE818;
}

.page-news .chip--green {
  background-color: rgba(0, 185, 109, 0.18);
  color: #5CD7A5;
}

.page-news .chip--outline {
  background-color: transparent;
  border: 1px solid rgba(245, 245, 245, 0.25);
  color: rgba(245, 245, 245, 0.7);
}

.page-news .timeline-item__title {
  font-family: var(--news-font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-on-dark);
  margin: 0 0 12px;
}

.page-news .timeline-item__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.75);
  margin: 0 0 12px;
}

.page-news .timeline-item__text:last-child {
  margin-bottom: 0;
}

.page-news .timeline-item__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .timeline-item__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 6px;
}

.page-news .timeline-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--news-blue);
  transform: rotate(45deg);
}

.page-news .timeline-item:nth-child(2) .timeline-item__list li::before {
  background-color: var(--news-orange);
}

.page-news .timeline-item:nth-child(3) .timeline-item__list li::before {
  background-color: var(--news-yellow);
}

.page-news .timeline-item:nth-child(4) .timeline-item__list li::before {
  background-color: var(--news-green);
}

/* ===== 赛事订阅指南 ===== */
.page-news .guide-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-news .guide-layout__visual {
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  position: relative;
}

.page-news .guide-layout__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: var(--news-radius-lg);
}

.page-news .guide-layout__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .guide-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-news .guide-step__num {
  font-family: var(--news-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--news-blue);
  min-width: 44px;
  text-align: right;
}

.page-news .guide-step:nth-child(2) .guide-step__num {
  color: var(--news-orange);
}

.page-news .guide-step:nth-child(3) .guide-step__num {
  color: var(--news-yellow);
}

.page-news .guide-step:nth-child(4) .guide-step__num {
  color: var(--news-green);
}

.page-news .guide-step__title {
  font-family: var(--news-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--news-heading);
  margin: 0 0 6px;
}

.page-news .guide-step__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--news-text);
  margin: 0;
}

.page-news .guide-note {
  margin-top: 8px;
  padding: 16px 20px;
  background-color: rgba(18, 100, 255, 0.06);
  border-radius: var(--news-radius-sm);
  border-left: 3px solid var(--news-blue);
}

.page-news .guide-note__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-text);
  margin: 0;
}

.page-news .guide-note a {
  color: var(--news-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 100, 255, 0.3);
  transition: border-color 0.2s ease;
}

.page-news .guide-note a:hover {
  border-bottom-color: var(--news-blue);
}

.page-news .guide-stat-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--news-border);
  border-radius: var(--news-radius-md);
  overflow: hidden;
  border: 1px solid var(--news-border);
}

.page-news .guide-stat {
  background-color: var(--news-cream);
  padding: 28px 20px;
  text-align: center;
}

.page-news .guide-stat__num {
  font-family: var(--news-font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--news-heading);
  display: block;
  line-height: 1.1;
}

.page-news .guide-stat__unit {
  font-size: 20px;
  font-weight: 500;
  margin-left: 2px;
}

.page-news .guide-stat__label {
  display: block;
  font-size: 13px;
  color: var(--news-text);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ===== 控球率数据洞察 ===== */
.page-news .insight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-news .insight-layout__main {
  border-radius: var(--news-radius-lg);
  overflow: hidden;
}

.page-news .insight-layout__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--news-radius-lg);
  border: 1px solid rgba(245, 245, 245, 0.1);
}

.page-news .insight-layout__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .insight-card {
  background: rgba(245, 245, 245, 0.05);
  border-radius: var(--news-radius-md);
  padding: 24px;
  border-left: 3px solid var(--news-blue);
}

.page-news .insight-card--orange {
  border-left-color: var(--news-orange);
}

.page-news .insight-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #7BA5FF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-news .insight-card--orange .insight-card__tag {
  color: #FFA366;
}

.page-news .insight-card__title {
  font-family: var(--news-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0 0 10px;
}

.page-news .insight-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.75);
  margin: 0;
}

.page-news .insight-points {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .insight-point {
  background: rgba(245, 245, 245, 0.05);
  border-radius: var(--news-radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-news .insight-point__num {
  font-family: var(--news-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--news-orange);
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.page-news .insight-point__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.8);
  margin: 0;
}

.page-news .insight-footer-link {
  margin-top: 40px;
}

/* ===== 看板使用说明 ===== */
.page-news .dashboard-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-news .dashboard-showcase__visual {
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.page-news .dashboard-showcase__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--news-radius-lg);
}

.page-news .dashboard-showcase__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--news-green);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 185, 109, 0.3);
  letter-spacing: 0.03em;
}

.page-news .dashboard-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .dashboard-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--news-radius-md);
  background-color: #F7F4EE;
  transition: background-color 0.25s ease;
}

.page-news .dashboard-feature:hover {
  background-color: #F0EBE0;
}

.page-news .dashboard-feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  font-family: var(--news-font-heading);
}

.page-news .dashboard-feature__icon--blue {
  background-color: var(--news-blue);
}

.page-news .dashboard-feature__icon--orange {
  background-color: var(--news-orange);
}

.page-news .dashboard-feature__icon--yellow {
  background-color: #E5C800;
}

.page-news .dashboard-feature__icon--green {
  background-color: var(--news-green);
}

.page-news .dashboard-feature__title {
  font-family: var(--news-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--news-heading);
  margin: 0 0 6px;
}

.page-news .dashboard-feature__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--news-text);
  margin: 0;
}

/* ===== 底部CTA ===== */
.page-news .news-cta {
  background-color: var(--news-cream);
  border-top: 1px solid var(--news-border);
  padding: 72px 0;
}

.page-news .news-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.page-news .news-cta__eyebrow {
  color: var(--news-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin-bottom: 10px;
}

.page-news .news-cta__title {
  font-family: var(--news-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--news-heading);
  margin: 0 0 12px;
}

.page-news .news-cta__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--news-text);
  max-width: 520px;
  margin: 0;
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  font-family: var(--news-font-body);
}

.page-news .btn-primary {
  background-color: var(--news-blue);
  color: #FFFFFF;
  border-color: var(--news-blue);
}

.page-news .btn-primary:hover {
  background-color: #0A52D6;
  border-color: #0A52D6;
}

.page-news .btn-accent {
  background-color: var(--news-orange);
  color: #FFFFFF;
  border-color: var(--news-orange);
}

.page-news .btn-accent:hover {
  background-color: #E05D00;
  border-color: #E05D00;
}

.page-news .btn-ghost {
  background-color: transparent;
  color: var(--news-heading);
  border-color: var(--news-border);
}

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

.page-news .btn-ghost--light {
  color: var(--text-on-dark);
  border-color: rgba(245, 245, 245, 0.35);
}

.page-news .btn-ghost--light:hover {
  border-color: var(--text-on-dark);
}

/* ===== 响应式适配 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 640px) {
  .page-news .news-hero {
    padding: 72px 0 48px;
  }

  .page-news .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-news .news-hero__title {
    font-size: 44px;
  }

  .page-news .news-hero__lead {
    font-size: 17px;
  }

  .page-news .news-hero__index {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .hero-index-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 16px;
  }

  .page-news .news-section__title {
    font-size: 40px;
  }

  .page-news .timeline-item {
    padding-left: 36px;
  }

  .page-news .timeline-item__marker::before {
    left: -36px;
    width: 17px;
    height: 17px;
  }

  .page-news .timeline-item__body {
    padding: 28px 32px;
  }

  .page-news .guide-stat-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .insight-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .insight-point {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 24px 16px;
  }

  .page-news .insight-point__num {
    min-width: auto;
  }

  .page-news .dashboard-showcase__badge {
    top: 20px;
    right: 20px;
    padding: 8px 18px;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 88px 0 56px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-news .news-hero__content {
    order: 1;
  }

  .page-news .news-hero__visual {
    order: 2;
  }

  .page-news .news-hero__title {
    font-size: 52px;
    line-height: 1.15;
  }

  .page-news .news-section {
    padding: 96px 0;
  }

  .page-news .news-section__header--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }

  .page-news .news-section__header--split .news-section__desc {
    max-width: 380px;
    text-align: right;
  }

  .page-news .guide-layout {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
  }

  .page-news .insight-layout {
    grid-template-columns: 7fr 5fr;
    gap: 28px;
  }

  .page-news .dashboard-showcase {
    grid-template-columns: 6fr 6fr;
    gap: 56px;
    align-items: center;
  }

  .page-news .news-cta {
    padding: 88px 0;
  }

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

  .page-news .news-cta__content {
    flex: 1;
  }

  .page-news .news-cta__actions {
    flex-shrink: 0;
    max-width: 320px;
  }
}

@media (min-width: 1200px) {
  .page-news .container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news .news-hero__title {
    font-size: 60px;
  }

  .page-news .news-section__title {
    font-size: 48px;
  }

  .page-news .insight-point {
    padding: 28px 20px;
  }
}
