.page-news {
  --news-neon-dim: rgba(0, 255, 194, 0.12);
  --news-flame-dim: rgba(255, 90, 60, 0.18);
  --news-line: 1px solid var(--surface-border);
  --news-radius: 0;
  --news-section-gap: clamp(72px, 10vw, 140px);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

.page-news .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============ HERO ============ */
.page-news .news-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 88px);
  border-bottom: var(--news-line);
}

.page-news .news-hero::before {
  content: '';
  position: absolute;
  right: -12%;
  top: 10%;
  width: 55%;
  height: 70%;
  background:
    linear-gradient(135deg, transparent 40%, var(--news-neon-dim) 40%, transparent 55%),
    linear-gradient(315deg, transparent 30%, var(--news-flame-dim) 30%, transparent 60%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.page-news .news-hero__inner,
.page-news .news-hero__side {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__inner {
  max-width: 820px;
}

.page-news .breadcrumb {
  margin-bottom: 28px;
}

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

.page-news .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--text-muted);
  margin-right: 8px;
  font-family: var(--font-mono);
}

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

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

.page-news .breadcrumb-item.is-active {
  color: var(--text-primary);
  font-weight: 500;
}

.page-news .news-hero .mono-label {
  margin-bottom: 12px;
}

.page-news .mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .mono-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--neon);
  flex-shrink: 0;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text-primary);
}

.page-news .news-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 28px;
}

.page-news .news-hero__lead::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--neon);
  margin-left: 8px;
  vertical-align: middle;
}

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

.page-news .news-hero__meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  color: var(--text-secondary);
}

.page-news .news-hero__meta-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-news .news-hero__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-self: end;
}

.page-news .news-hero__decoration {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: var(--news-line);
  border-bottom: var(--news-line);
}

.page-news .news-hero__decoration-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--neon);
  letter-spacing: -0.03em;
}

.page-news .news-hero__decoration-line {
  width: 44px;
  height: 2px;
  background: var(--flame);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.page-news .news-hero__decoration-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.page-news .news-hero__index {
  background: var(--bg-elevated);
  border-left: 3px solid var(--flame);
  padding: 20px 22px;
}

.page-news .news-hero__index .mono-label {
  color: var(--flame);
  margin-bottom: 14px;
}

.page-news .news-hero__index .mono-label::before {
  background: var(--flame);
}

.page-news .news-hero__index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-hero__index-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.page-news .news-hero__index-list a:hover {
  color: var(--neon);
  padding-left: 4px;
}

.page-news .news-hero__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--surface-border);
}

/* ============ SECTION BASE ============ */
.page-news .news-section {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: var(--news-section-gap);
}

.page-news .news-section__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 20px;
  margin-bottom: 36px;
}

.page-news .news-section__heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-primary);
}

.page-news .news-section__heading--center {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
}

.page-news .news-section__heading--center h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}

.page-news .news-section__sub {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  max-width: 620px;
  margin: 12px 0 0;
}

.page-news .news-section__line {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

/* ============ LATEST CARDS ============ */
.page-news .news-card {
  position: relative;
  background: var(--bg-base);
  border: 1px solid var(--surface-border);
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
}

.page-news .news-card:hover {
  border-color: var(--neon);
  border-left-color: var(--neon);
  box-shadow: 8px 8px 0px rgba(0, 255, 194, 0.06);
}

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

.page-news .news-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 26, 0.85) 100%);
  pointer-events: none;
}

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

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

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px 4px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  color: var(--text-secondary);
  white-space: nowrap;
}

.page-news .news-tag b {
  color: var(--neon);
  font-weight: 600;
}

.page-news .news-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}

.page-news .news-tag--trend {
  border-left: 3px solid var(--flame);
  background: rgba(255, 90, 60, 0.08);
  color: #ffd9d0;
}

.page-news .news-tag--trend::before {
  background: var(--flame);
}

.page-news .news-tag--post {
  border-left: 3px solid var(--neon);
  background: rgba(0, 255, 194, 0.06);
  color: #b8ffe9;
}

.page-news .news-tag--post::before {
  background: var(--neon);
}

.page-news .news-tag--user {
  border-left: 3px solid var(--warning);
  background: rgba(251, 191, 36, 0.07);
  color: #fdeeb0;
}

.page-news .news-tag--user::before {
  background: var(--warning);
}

.page-news .news-tag--product {
  border-left: 3px solid var(--success);
  background: rgba(74, 222, 128, 0.07);
  color: #cbf5d5;
}

.page-news .news-tag--product::before {
  background: var(--success);
}

.page-news .news-tag--read {
  background: transparent;
  border-style: dashed;
  color: var(--text-muted);
}

.page-news .news-tag--read::before {
  display: none;
}

.page-news .news-card__title {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.page-news .news-card__summary {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.page-news .news-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--surface-border);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.page-news .news-card__arrow {
  color: var(--neon);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.page-news .news-card:hover .news-card__arrow {
  transform: translateX(5px);
}

.page-news .news-card__date {
  color: var(--text-secondary);
}

.page-news .news-card__category {
  color: var(--neon);
  font-size: 12px;
}

.page-news .news-card__readtime {
  color: var(--text-muted);
}

/* Feature card */
.page-news .news-card--feature {
  margin-bottom: 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  border-left-width: 4px;
  border-left-color: var(--neon);
}

.page-news .news-card--feature .news-card__body {
  padding: clamp(22px, 4vw, 36px);
}

.page-news .news-card--feature .news-card__title {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.22;
}

.page-news .news-card--feature .news-card__summary {
  font-size: 15px;
  max-width: 660px;
}

/* Compact grid */
.page-news .news-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .news-card--compact {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.page-news .news-card--compact .news-card__title {
  font-size: 17px;
  line-height: 1.35;
}

.page-news .news-card--compact .news-card__summary {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Sidebar */
.page-news .news-sidebar {
  margin-top: 48px;
}

.page-news .news-sidebar__panel {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  padding: 22px 20px;
  margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.page-news .news-sidebar__panel--dark {
  background: #0d1322;
  border-left: 3px solid var(--flame);
}

.page-news .news-sidebar__taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-news .news-sidebar__links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .news-sidebar__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-left: 1px solid var(--surface-border);
  display: block;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-news .news-sidebar__links a:hover {
  color: var(--neon);
  border-left-color: var(--neon);
  background: rgba(0, 255, 194, 0.04);
}

/* ============ DATA SECTION ============ */
.page-news .news-section--data {
  position: relative;
  background: linear-gradient(180deg, var(--bg-base) 0%, #0c121f 60%, #0a0e1a 100%);
}

.page-news .news-section--data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  background:
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(0, 255, 194, 0.07) 31px 32px);
  pointer-events: none;
}

.page-news .news-section--data .news-section__heading--center {
  position: relative;
}

.page-news .news-data__table {
  position: relative;
  border: 1px solid var(--surface-border);
  overflow-x: auto;
  margin-bottom: 40px;
}

.page-news .news-data__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr 0.8fr 0.8fr 0.7fr 0.9fr;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  min-width: 720px;
}

.page-news .news-data__row--head {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--surface-border);
  padding: 10px 16px;
}

.page-news .news-data__row:not(:last-child) {
  border-bottom: 1px solid var(--surface-border);
}

.page-news .news-data__row--head .news-data__stat,
.page-news .news-data__row--head .news-data__match,
.page-news .news-data__row--head .news-data__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.page-news .news-data__match {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-data__match-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.page-news .news-data__match-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.page-news .news-data__stat {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.page-news .news-data__row:not(.news-data__row--head):hover .news-data__stat {
  color: var(--neon);
}

.page-news .news-data__row:nth-child(3) .news-data__stat,
.page-news .news-data__row:nth-child(4) .news-data__stat {
  color: var(--text-primary);
}

.page-news .news-data__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.page-news .news-data__tag--hot {
  color: var(--flame);
  font-weight: 600;
}

.page-news .news-data__tag--hot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--flame);
  margin-right: 5px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.page-news .news-data__insight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-left: 4px solid var(--flame);
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-news .news-data__insight-media {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-news .news-data__insight-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-data__insight-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .news-data__insight-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin: 12px 0 16px;
  color: var(--text-primary);
}

.page-news .news-data__insight-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.page-news .news-data__insight-text:last-of-type {
  margin-bottom: 18px;
}

.page-news .news-data__insight-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--surface-border);
}

/* ============ PRODUCT SECTION ============ */
.page-news .news-section--product {
  background: #0a0e1a;
  border-top: 1px solid var(--surface-border);
}

.page-news .news-section__product-intro {
  padding-right: 24px;
}

.page-news .news-section__product-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin: 14px 0 16px;
}

.page-news .news-product__highlight {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--neon);
  padding: 22px;
  margin-top: 32px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.page-news .news-product__version {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
}

.page-news .news-product__highlight-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.page-news .news-product__media {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
}

.page-news .news-product__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-product__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-product__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--bg-base);
  border: 1px solid var(--surface-border);
  padding: 18px 20px;
  transition: border-color 0.2s ease;
}

.page-news .news-product__item:hover {
  border-color: var(--surface-border);
  border-left-color: var(--neon);
}

.page-news .news-product__item-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--neon);
  padding-top: 3px;
  border-top: 1px solid var(--neon);
}

.page-news .news-product__item-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.page-news .news-product__item-body p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.page-news .news-product__item-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ============ CTA ============ */
.page-news .news-cta {
  padding-top: 0;
  padding-bottom: clamp(48px, 8vw, 100px);
}

.page-news .news-cta__inner {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.page-news .news-cta__inner::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -10%;
  width: 45%;
  height: 70%;
  background: linear-gradient(215deg, var(--news-flame-dim), transparent 70%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
  pointer-events: none;
}

.page-news .news-cta__inner h2 {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 14px 0 14px;
}

.page-news .news-cta__inner p {
  position: relative;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.page-news .news-cta__link {
  position: relative;
  display: inline-block;
  margin-left: 18px;
}

.page-news .news-cta__link a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-cta__link a:hover {
  color: var(--text-primary);
}

/* ============ SCROLL REVEAL ============ */
.page-news [data-reveal] {
  opacity: 1;
  transform: none;
}

.page-news .is-visible {
  opacity: 1;
  transform: none;
}

/* ============ MEDIA FRAME OVERRIDE ============ */
.page-news .media-frame {
  display: block;
  overflow: hidden;
  background: var(--bg-elevated);
}

.page-news .media-frame::before {
  display: none;
}

.page-news .media-frame img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.page-news .news-card:hover .media-frame img {
  transform: scale(1.02);
}

/* ============ TABLET MEDIA ============ */
@media (min-width: 768px) {
  .page-news .news-hero {
    grid-template-columns: 1fr 280px;
    align-items: end;
  }

  .page-news .news-hero__side {
    grid-template-columns: 1fr;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 24px;
    border-left: 1px solid var(--surface-border);
  }

  .page-news .news-card__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .page-news .news-data__insight {
    grid-template-columns: 1fr 1.2fr;
    padding: 0;
    gap: 0;
  }

  .page-news .news-data__insight-media {
    min-height: 260px;
  }

  .page-news .news-data__insight-media img {
    height: 100%;
    min-height: 260px;
  }

  .page-news .news-data__insight-body {
    padding: 28px 30px;
  }

  .page-news .news-product__item {
    grid-template-columns: 90px 1fr;
    padding: 20px 24px;
  }

  .page-news .news-cta__inner {
    padding-left: 48px;
  }
}

/* ============ DESKTOP MEDIA ============ */
@media (min-width: 1200px) {
  .page-news .news-hero {
    grid-template-columns: 1fr 340px;
  }

  .page-news .news-hero__inner {
    padding-right: 80px;
  }

  .page-news .news-sidebar {
    margin-top: 0;
    padding-left: 24px;
  }

  .page-news .news-data__row {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 0.7fr 0.7fr 0.6fr 0.8fr;
    gap: 12px;
    padding: 16px 24px;
  }

  .page-news .news-data__row--head {
    padding: 12px 24px;
  }

  .page-news .news-data__insight-body {
    padding: 36px 40px;
  }

  .page-news .news-data__insight-text {
    font-size: 15px;
  }

  .page-news .news-product__item-body p {
    max-width: 520px;
  }

  .page-news .news-cta__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-left: clamp(40px, 6vw, 72px);
  }

  .page-news .news-cta__inner .mono-label {
    flex-shrink: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-self: stretch;
    justify-content: center;
  }

  .page-news .news-cta__inner h2 {
    flex-shrink: 0;
    margin-right: 12px;
  }

  .page-news .news-cta__inner p {
    margin-bottom: 0;
    flex: 1;
  }

  .page-news .news-cta__inner .btn {
    flex-shrink: 0;
  }

  .page-news .news-cta__link {
    flex-shrink: 0;
    margin-left: 8px;
  }
}

/* ============ REDUCED MOTION ============ */
@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;
  }
}
