.page-news {
  --news-space: #0A1128;
  --news-soft: #F4F4F6;
  --news-white: #FFFFFF;
  --news-ink: #1A1A1A;
  --news-muted: #5A6B7B;
  --news-line: #D0D5DD;
  --news-primary: #FF4D00;
  --news-gold: #F2C94C;
  --news-fire: #FFB800;
  background: var(--news-soft);
  overflow-x: clip;
}

.page-news .container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-news .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .breadcrumb__link {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}

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

.page-news .breadcrumb__current {
  color: var(--news-gold);
  font-size: 13px;
}

/* ===== Top mast ===== */
.page-news__top {
  background: var(--news-space);
  padding: 20px 0 0;
}

.page-news__mast {
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news__edition {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--news-gold);
  text-transform: uppercase;
}

.page-news__trust {
  max-width: 780px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}

/* ===== Hero ===== */
.news-hero {
  background: var(--news-space);
  color: var(--news-white);
  padding-bottom: 52px;
}

.news-hero__grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.news-hero__media {
  position: relative;
  border: 1px solid rgba(255, 77, 0, .6);
  background: var(--news-space);
  line-height: 0;
}

.news-hero__media::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 90px;
  height: 90px;
  border-right: 3px solid var(--news-gold);
  border-bottom: 3px solid var(--news-gold);
  pointer-events: none;
}

.news-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.news-hero__code {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(10, 17, 40, .82);
  border: 1px solid rgba(242, 201, 76, .6);
  color: var(--news-gold);
  font-size: 11px;
  letter-spacing: .16em;
  padding: 6px 10px;
  line-height: 1;
}

.news-hero__content {
  padding-top: 4px;
}

.news-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.4vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .01em;
  margin: 12px 0 14px;
  color: var(--news-white);
  border-left: 4px solid var(--news-primary);
  padding-left: 18px;
}

.news-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
  margin: 0 0 26px;
}

.news-hero__story {
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--news-fire);
  background: rgba(255, 255, 255, .04);
  padding: 22px 20px 18px;
  margin-bottom: 24px;
}

.news-hero__story h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--news-white);
}

.news-hero__story p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 16px;
}

.news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 0;
}

.news-hero__stats div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 6px;
}

.news-hero__stats dt {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.news-hero__stats dd {
  font-size: 14px;
  font-weight: 700;
  color: var(--news-gold);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

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

/* ===== Listing ===== */
.news-listing {
  padding: 56px 0 68px;
  background: var(--news-soft);
  position: relative;
}

.news-listing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 28px;
  background: var(--news-space);
  transform: skewY(-1.1deg);
  transform-origin: left top;
  pointer-events: none;
}

.news-listing .section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.news-listing .section-head .heading {
  font-size: 28px;
  font-weight: 900;
}

.news-listing .section-head__remark {
  font-size: 13px;
  color: var(--news-muted);
  letter-spacing: .08em;
}

.news-listing__grid {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

.news-listing__main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* item variants */
.news-item {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-item:hover {
  transform: translateY(-3px);
}

.news-item a {
  color: inherit;
  text-decoration: none;
}

.news-item a:hover {
  color: var(--news-primary);
}

.news-item--row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--news-ink);
}

.news-item__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--news-primary);
  font-variant-numeric: tabular-nums;
}

.news-item__body h3,
.news-item--card h3,
.news-item--line h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  margin: 10px 0 8px;
}

.news-item__summary {
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-muted);
  margin: 0 0 10px;
}

.news-item__meta {
  display: inline-block;
  font-size: 12px;
  color: var(--news-muted);
  letter-spacing: .05em;
}

.news-item__pair {
  display: grid;
  gap: 16px;
}

.news-item--card {
  background: var(--news-white);
  border: 1px solid var(--news-line);
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(10, 17, 40, .06);
}

.news-item--card-alt {
  background: #E8EBEF;
  border-color: #C9CFD8;
}

.news-item--card p,
.news-item--line p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-muted);
  margin: 0;
}

.news-item__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--news-primary);
  border-bottom: 2px solid var(--news-primary);
  margin-bottom: 4px;
}

.news-item__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item--line {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 16px 0 14px;
  border-bottom: 1px dashed var(--news-line);
}

.news-item--line:first-child {
  border-top: 1px solid var(--news-line);
}

.news-item--line:last-child {
  border-bottom: none;
}

.news-item--line .news-item__num {
  font-size: 22px;
  color: var(--news-muted);
}

.news-item__line-body h3 {
  margin: 6px 0 4px;
}

/* rail */
.news-listing__rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-tags {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--news-line);
  background: var(--news-white);
  padding: 26px 24px 30px;
}

.news-tags__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-tags__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  display: block;
}

.news-tags__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 244, 246, .96));
}

.news-tags .kicker,
.news-tags__title,
.news-tags__cloud {
  position: relative;
  z-index: 1;
}

.news-tags__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 0;
}

.news-tags__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid var(--news-line);
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  color: var(--news-ink);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.news-tag:nth-child(3n) {
  transform: rotate(-1.6deg);
}

.news-tag:nth-child(4n) {
  transform: rotate(1.2deg);
}

.news-tag:nth-child(5n) {
  transform: rotate(-.8deg);
}

.news-tag:hover {
  background: var(--news-primary);
  border-color: var(--news-primary);
  color: var(--news-white);
  transform: rotate(0deg) translateY(-2px);
}

.news-mini-card {
  background: var(--news-space);
  color: var(--news-white);
  padding: 28px 24px;
}

.news-mini-card__kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--news-gold);
  border-bottom: 2px solid var(--news-gold);
  padding-bottom: 4px;
}

.news-mini-card__text {
  font-size: 14px;
  line-height: 1.75;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, .8);
}

/* ===== Focus ===== */
.news-focus {
  background: var(--news-space);
  color: var(--news-white);
  padding: 72px 0 64px;
  position: relative;
}

.news-focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(to right, var(--news-primary) 0%, var(--news-primary) 46%, transparent 46%);
  opacity: .85;
}

.news-focus .kicker {
  color: var(--news-fire);
}

.news-focus__header {
  max-width: 800px;
  margin-bottom: 38px;
}

.news-focus__header .heading--light {
  color: var(--news-white);
  margin-top: 10px;
}

.news-focus__header p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  margin: 16px 0 0;
}

.news-focus__compare {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.news-focus__match {
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 26px 24px;
  position: relative;
}

.news-focus__match--a {
  border-top: 4px solid var(--news-primary);
}

.news-focus__match--b {
  border-bottom: 4px solid var(--news-gold);
}

.news-focus__round {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--news-gold);
  border: 1px solid rgba(242, 201, 76, .4);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.news-focus__match h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 18px;
}

.news-focus__match ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-focus__match li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
}

.news-focus__match li:last-child {
  border-bottom: none;
}

.news-focus__match li b {
  color: var(--news-white);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.news-focus__vs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  background: var(--news-primary);
  padding: 16px;
  min-height: 74px;
}

.news-focus__vs span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
}

.news-focus__vs p {
  font-size: 12px;
  margin: 0;
  opacity: .88;
  letter-spacing: .04em;
}

.news-focus__foot {
  display: grid;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 14px;
  background: rgba(255, 255, 255, .03);
}

.news-focus__foot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

.news-focus__foot p {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin: 0;
  padding: 0 8px;
}

/* ===== Update ===== */
.news-update {
  background: var(--news-white);
  padding: 72px 0;
}

.news-update .section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.news-update .heading {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
}

.news-update .section-head__remark {
  font-size: 13px;
  color: var(--news-muted);
  letter-spacing: .1em;
}

.news-update__grid {
  display: grid;
  gap: 44px;
  margin-top: 36px;
  align-items: center;
}

.news-update__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.news-update__phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  border: 10px solid var(--news-space);
  border-bottom-width: 34px;
  background: var(--news-space);
  box-shadow: 0 24px 48px rgba(10, 17, 40, .2);
}

.news-update__phone::after {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #33415C;
  border-radius: 60px;
}

.news-update__phone img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, .1);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.news-update__screen-note {
  display: block;
  text-align: center;
  padding: 12px 0 6px;
  font-size: 12px;
  color: var(--news-gold);
  letter-spacing: .1em;
}

.news-update__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 26px;
}

.news-update__list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-update__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--news-line);
}

.news-update__list li:first-child {
  border-top: 1px solid var(--news-line);
}

.news-update__icon {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--news-primary);
  line-height: 1.2;
}

.news-update__list h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.news-update__list p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-muted);
  margin: 0;
}

/* ===== Index ===== */
.news-index {
  background: #E9EBF0;
  padding: 72px 0;
}

.news-index .section-head {
  margin-bottom: 4px;
}

.news-index .heading {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
}

.news-index__grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.news-index__col {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--news-line);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-index__col h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--news-ink);
  letter-spacing: .04em;
}

.news-index__link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed var(--news-line);
  color: var(--news-ink);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease, padding-left .2s ease;
}

.news-index__link:last-child {
  border-bottom: none;
}

.news-index__link:hover {
  color: var(--news-primary);
  padding-left: 8px;
  border-bottom-color: var(--news-primary);
}

.news-index__col--highlight {
  background: var(--news-space);
  border-color: var(--news-space);
  color: var(--news-white);
  justify-content: center;
}

.news-index__col--highlight h3 {
  color: var(--news-gold);
}

.news-index__col--highlight p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 12px;
}

/* ===== Subscribe ===== */
.news-subscribe {
  background: var(--news-space);
  color: var(--news-white);
  padding: 72px 0;
  border-top: 4px solid var(--news-primary);
  position: relative;
  overflow: hidden;
}

.news-subscribe::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border: 3px solid rgba(242, 201, 76, .18);
  border-radius: 0;
  transform: rotate(12deg);
  pointer-events: none;
}

.news-subscribe__inner {
  max-width: 800px;
}

.news-subscribe h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  margin: 14px 0 16px;
}

.news-subscribe p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 28px;
}

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

/* ===== Shared button tweaks within scope ===== */
.page-news .button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 22px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.page-news .button:hover {
  transform: translateY(-2px);
}

.page-news .button--gold {
  background: var(--news-gold);
  color: var(--news-space);
  border-color: var(--news-gold);
}

.page-news .button--gold:hover {
  background: #FFD766;
  border-color: #FFD766;
  color: var(--news-space);
}

.page-news .button--ghost {
  background: transparent;
  color: var(--news-white);
  border-color: rgba(255, 255, 255, .5);
}

.page-news .button--ghost:hover {
  border-color: var(--news-white);
  color: var(--news-white);
  background: rgba(255, 255, 255, .08);
}

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

/* ===== Responsive ===== */
@media (min-width: 720px) {
  .news-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .news-item--pair {
    grid-template-columns: 1fr 1fr;
  }

  .news-focus__compare {
    grid-template-columns: 1fr 120px 1fr;
  }

  .news-focus__foot {
    grid-template-columns: minmax(360px, 560px) 1fr;
    padding: 20px;
  }

  .news-update__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .news-update__visual {
    justify-content: flex-start;
  }

  .news-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-news__mast {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
  }

  .news-hero {
    padding-bottom: 76px;
  }

  .news-hero__grid {
    grid-template-columns: 57fr 43fr;
    gap: 48px;
  }

  .news-hero__content {
    padding-top: 0;
  }

  .news-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .news-listing {
    padding: 68px 0 96px;
  }

  .news-listing__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
  }

  .news-item__pair {
    grid-template-columns: 5fr 7fr;
  }

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

  .news-subscribe {
    padding: 84px 0;
  }

  .news-subscribe h2 {
    font-size: 36px;
  }
}
