/* NEWS ARTICLE V1 PAGE
Scope: /news/[slug] body only. Header/footer are shared renderer/sync.
Assets: /images/news-article-v1/
*/

.news-article-v1-page {
  --navy: #07111f;
  --navy-2: #0b1627;
  --navy-3: #111c2d;
  --blue: #1463ff;
  --blue-2: #0b55e8;
  --orange: #f97316;
  --orange-2: #ea580c;
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #475569;
  --soft: #f6f8fb;
  --line: rgba(15, 23, 42, .10);
  --line-strong: rgba(15, 23, 42, .16);
  --shadow-sm: 0 14px 34px rgba(15, 23, 42, .07);
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --shadow-deep: 0 34px 90px rgba(2, 8, 23, .28);
  color: var(--text);
  background: #fff;
  overflow-x: clip;
}

.news-article-v1-page *,
.news-article-v1-page *::before,
.news-article-v1-page *::after {
  box-sizing: border-box;
}

.news-article-v1-page img {
  display: block;
  max-width: 100%;
}

.news-article-v1-page a {
  color: inherit;
  text-decoration: none;
}

.news-article-v1-shell {
  width: min(1188px, calc(100% - 32px));
  margin: 0 auto;
}

.news-article-v1-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 72% 26%, rgba(20,99,255,.24), transparent 32%),
    linear-gradient(115deg, rgba(7,17,31,.98), rgba(7,17,31,.94) 52%, rgba(10,25,43,.90)),
    var(--navy);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  padding: 42px 0 44px;
}

.news-article-v1-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2,8,23,.34));
}

.news-article-v1-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.news-article-v1-hero__content,
.news-article-v1-hero__image,
.news-article-v1-content,
.news-article-v1-sidebar,
.news-article-v1-layout > *,
.news-article-v1-related-grid > *,
.news-article-v1-faq-grid > * {
  min-width: 0;
}

.news-article-v1-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.4;
}

.news-article-v1-breadcrumbs a {
  transition: color .2s ease;
}

.news-article-v1-breadcrumbs a:hover {
  color: #fff;
}

.news-article-v1-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.news-article-v1-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(249, 115, 22, .28);
}

.news-article-v1-meta-row time {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
}

.news-article-v1-hero h1 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.news-article-v1-hero__lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.58;
}

.news-article-v1-mobile-break {
  display: none;
}

.news-article-v1-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 26px;
}

.news-article-v1-stats span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
}

.news-article-v1-stats img {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 10px rgba(249,115,22,.2));
}

.news-article-v1-hero__image {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
}

.news-article-v1-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  object-position: 53% 50%;
}

.news-article-v1-body {
  padding: 36px 0 48px;
  background:
    radial-gradient(circle at 16% 8%, rgba(20,99,255,.055), transparent 28%),
    #fff;
}

.news-article-v1-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.news-article-v1-content {
  display: grid;
  gap: 28px;
}

.news-article-v1-content > section {
  display: grid;
  gap: 16px;
}

.news-article-v1-intro {
  position: relative;
  max-width: 760px;
  margin: 0 0 2px;
  border-left: 3px solid var(--orange);
  padding: 2px 0 2px 22px;
  color: #334155;
  font-size: 20px;
  line-height: 1.62;
}

.news-article-v1-content h2,
.news-article-v1-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.news-article-v1-content p {
  margin: 0;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.68;
}

.news-article-v1-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.news-article-v1-check-grid div {
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 72px;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  border-radius: 16px;
  padding: 10px;
  transition: background .2s ease, transform .2s ease;
}

.news-article-v1-check-grid div:hover {
  background: #fff7ed;
  transform: translateY(-2px);
}

.news-article-v1-check-grid img {
  width: 24px;
  grid-row: span 2;
  margin-top: 1px;
}

.news-article-v1-check-grid strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.28;
}

.news-article-v1-check-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.news-article-v1-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 4px;
}

.news-article-v1-price-grid article {
  display: grid;
  gap: 12px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,247,237,.55), rgba(255,255,255,0) 44%),
    #fff;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-article-v1-price-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.34);
  box-shadow: 0 24px 58px rgba(15,23,42,.13);
}

.news-article-v1-price-grid span {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.news-article-v1-price-grid strong {
  display: block;
  color: var(--orange);
  font-size: 29px;
  line-height: 1.05;
}

.news-article-v1-price-grid p {
  font-size: 14px;
  line-height: 1.55;
}

.news-article-v1-note {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #f8fafc;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}

.news-article-v1-expert-quote {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(20,99,255,.22), transparent 28%),
    linear-gradient(135deg, #06101d, #0c1829);
  color: #fff;
  box-shadow: var(--shadow-deep);
  padding: 18px 24px;
}

.news-article-v1-expert-quote::before {
  content: "\201C";
  position: absolute;
  left: 24px;
  top: 10px;
  color: rgba(249,115,22,.26);
  font-size: 62px;
  line-height: 1;
  font-weight: 900;
}

.news-article-v1-expert-quote > div:first-child {
  position: relative;
  z-index: 1;
}

.news-article-v1-expert-quote > div:first-child span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.news-article-v1-expert-quote p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.55;
}

.news-article-v1-author-mini {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  justify-self: start;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  padding: 10px 12px;
}

.news-article-v1-author-mini img {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  object-fit: cover;
}

.news-article-v1-author-mini strong {
  color: #fff;
  font-size: 12px;
}

.news-article-v1-author-mini span {
  color: rgba(255,255,255,.64);
  font-size: 11px;
}

.news-article-v1-image-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 2px;
}

.news-article-v1-image-text img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.news-article-v1-image-text ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-article-v1-image-text li {
  position: relative;
  min-height: 32px;
  padding-left: 34px;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.news-article-v1-image-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(249,115,22,.36);
  border-radius: 50%;
  background: #fff7ed;
}

.news-article-v1-image-text li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(.2em + 6px);
  width: 6px;
  height: 9px;
  border: solid var(--orange);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.news-article-v1-info-cta {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(20,99,255,.22);
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #f8fbff);
  box-shadow: 0 18px 42px rgba(20,99,255,.09);
  padding: 20px;
}

.news-article-v1-info-cta strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.42;
}

.news-article-v1-info-cta span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.5;
}

.news-article-v1-btn {
  display: inline-flex;
  min-height: 42px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.news-article-v1-btn:hover,
.news-article-v1-btn:focus-visible {
  transform: translateY(-2px);
}

.news-article-v1-btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(20,99,255,.24);
}

.news-article-v1-btn--blue:hover,
.news-article-v1-btn--blue:focus-visible {
  background: var(--blue-2);
  box-shadow: 0 20px 44px rgba(20,99,255,.32);
}

.news-article-v1-btn--dark {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.news-article-v1-btn--dark:hover,
.news-article-v1-btn--dark:focus-visible {
  background: rgba(255,255,255,.12);
}

.news-article-v1-btn--light {
  min-height: 46px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(2,8,23,.16);
}

.news-article-v1-page .news-article-v1-btn--blue,
.news-article-v1-page .news-article-v1-btn--dark {
  color: #fff;
}

.news-article-v1-page .news-article-v1-btn--light {
  color: var(--blue);
}

.news-article-v1-sidebar {
  display: grid;
  gap: 18px;
}

.news-article-v1-sidebar > * {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.news-article-v1-toc {
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: var(--shadow-deep);
}

.news-article-v1-toc h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.news-article-v1-toc a {
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 13px 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  transition: color .2s ease, padding-left .2s ease;
}

.news-article-v1-toc a::before {
  content: "\203A";
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.news-article-v1-toc a:hover,
.news-article-v1-toc a:focus-visible {
  color: #fff;
  padding-left: 4px;
}

.news-article-v1-calc-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1768ff, #0b4ed0);
  color: #fff;
  border: 0;
}

.news-article-v1-calc-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  transform: rotate(14deg);
}

.news-article-v1-calc-card > * {
  position: relative;
  z-index: 1;
}

.news-article-v1-calc-card > img {
  width: 50px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.news-article-v1-calc-card h2,
.news-article-v1-author-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.news-article-v1-calc-card p {
  margin: 12px 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}

.news-article-v1-calc-card .news-article-v1-btn {
  width: fit-content;
}

.news-article-v1-author-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
}

.news-article-v1-author-card > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15,23,42,.16);
}

.news-article-v1-author-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.news-article-v1-author-card p {
  margin: 7px 0 10px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.news-article-v1-author-card a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.news-article-v1-author-card a:hover {
  color: var(--orange);
}

.news-article-v1-trust-list {
  display: grid;
  gap: 14px;
}

.news-article-v1-trust-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
}

.news-article-v1-trust-list img {
  width: 38px;
  height: 38px;
  grid-row: span 2;
  border-radius: 12px;
  background: #eff6ff;
  padding: 8px;
}

.news-article-v1-trust-list span {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.news-article-v1-trust-list small {
  color: var(--muted);
  font-size: 13px;
}

.news-article-v1-wide-cta {
  padding: 6px 0 38px;
  background: #fff;
  color: #fff;
}

.news-article-v1-wide-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7,17,31,.98), rgba(7,17,31,.86) 48%, rgba(7,17,31,.70)),
    url("/images/news-article-v1/images/cta-bg.jpg") center/cover;
  box-shadow: 0 16px 46px rgba(2,8,23,.16);
  padding: 24px 32px;
}

.news-article-v1-wide-cta h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: 0;
}

.news-article-v1-wide-cta p {
  max-width: 510px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}

.news-article-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.news-article-v1-section {
  padding: 50px 0;
}

.news-article-v1-section--faq {
  background: var(--soft);
}

.news-article-v1-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.news-article-v1-section-head a {
  color: var(--blue);
  font-weight: 900;
  transition: color .2s ease;
}

.news-article-v1-section-head a:hover {
  color: var(--orange);
}

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

.news-article-v1-related-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-article-v1-related-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(20,99,255,.24);
  box-shadow: 0 24px 58px rgba(15,23,42,.14);
}

.news-article-v1-related-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-article-v1-related-grid article:hover img {
  transform: scale(1.035);
}

.news-article-v1-related-grid span,
.news-article-v1-related-grid time,
.news-article-v1-related-grid h3,
.news-article-v1-related-grid a {
  margin-left: 18px;
  margin-right: 18px;
}

.news-article-v1-related-grid span {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-article-v1-related-grid time {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.news-article-v1-related-grid h3 {
  min-height: 92px;
  margin-top: 7px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.24;
}

.news-article-v1-related-grid a {
  display: inline-flex;
  margin-top: auto;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
  transition: color .2s ease;
}

.news-article-v1-related-grid article:hover a {
  color: var(--orange);
}

.news-article-v1-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.news-article-v1-faq-grid details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-article-v1-faq-grid details:hover {
  transform: translateY(-2px);
  border-color: rgba(20,99,255,.18);
  box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.news-article-v1-faq-grid summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.news-article-v1-faq-grid summary::-webkit-details-marker {
  display: none;
}

.news-article-v1-faq-grid summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.news-article-v1-faq-grid details[open] summary::after {
  content: "\2212";
  color: var(--orange);
}

.news-article-v1-faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .news-article-v1-shell {
    width: min(1188px, calc(100% - 48px));
  }

  .news-article-v1-check-grid,
  .news-article-v1-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-article-v1-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-article-v1-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .news-article-v1-hero {
    padding: 46px 0 48px;
  }

  .news-article-v1-hero__grid {
    grid-template-columns: minmax(0, 520px) minmax(420px, 520px);
    gap: 86px;
  }

  .news-article-v1-hero h1 {
    font-size: 38px;
  }

  .news-article-v1-hero__image img {
    min-height: 0;
  }

  .news-article-v1-body {
    padding: 34px 0 48px;
  }

  .news-article-v1-layout {
    grid-template-columns: minmax(0, 760px) 330px;
    gap: 56px;
  }

  .news-article-v1-sidebar {
    position: sticky;
    top: 24px;
  }

  .news-article-v1-expert-quote {
    grid-template-columns: minmax(0, 1fr) 170px;
    align-items: center;
  }

  .news-article-v1-author-mini {
    justify-self: end;
  }

  .news-article-v1-image-text {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: 30px;
  }

  .news-article-v1-info-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 22px;
  }

  .news-article-v1-wide-cta__inner {
    grid-template-columns: 1fr auto;
  }

  .news-article-v1-section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .news-article-v1-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .news-article-v1-hero h1 {
    font-size: 39px;
  }
}

@media (max-width: 979px) {
  .news-article-v1-sidebar {
    order: 2;
  }
}

@media (max-width: 639px) {
  .news-article-v1-shell {
    width: min(1188px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .news-article-v1-hero {
    padding: 38px 0 42px;
  }

  .news-article-v1-breadcrumbs {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .news-article-v1-meta-row {
    align-items: flex-start;
    gap: 12px;
  }

  .news-article-v1-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.14;
    text-wrap: wrap;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .news-article-v1-hero__lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .news-article-v1-mobile-break {
    display: block;
  }

  .news-article-v1-stats {
    display: grid;
    gap: 10px;
  }

  .news-article-v1-hero__image {
    border-radius: 20px;
  }

  .news-article-v1-hero__image img {
    min-height: 0;
  }

  .news-article-v1-body {
    padding: 42px 0 48px;
  }

  .news-article-v1-content {
    gap: 28px;
  }

  .news-article-v1-intro {
    padding-left: 16px;
    font-size: 18px;
  }

  .news-article-v1-content h2,
  .news-article-v1-section h2 {
    font-size: 28px;
  }

  .news-article-v1-check-grid,
  .news-article-v1-price-grid article,
  .news-article-v1-expert-quote,
  .news-article-v1-info-cta,
  .news-article-v1-sidebar > * {
    border-radius: 18px;
  }

  .news-article-v1-author-card {
    grid-template-columns: 72px 1fr;
  }

  .news-article-v1-author-card > img {
    width: 72px;
    height: 72px;
  }

  .news-article-v1-btn,
  .news-article-v1-actions,
  .news-article-v1-calc-card .news-article-v1-btn {
    width: 100%;
  }

  .news-article-v1-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-article-v1-wide-cta {
    min-height: 0;
    padding: 0 0 34px;
  }

  .news-article-v1-wide-cta__inner {
    min-height: 0;
    padding: 24px 20px;
  }

  .news-article-v1-wide-cta h2 {
    font-size: 30px;
  }

  .news-article-v1-section {
    padding: 46px 0;
  }

  .news-article-v1-related-grid h3 {
    min-height: 0;
  }
}
