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

.news-v1-page {
  --navy: #08111f;
  --navy-2: #0f172a;
  --blue: #1463ff;
  --orange: #f97316;
  --text: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --soft-2: #f1f5f9;
  --line: rgba(15, 23, 42, .10);
  --card: #fff;
  --shadow: 0 22px 60px rgba(15, 23, 42, .12);
  color: var(--text);
  background: #fff;
  overflow-x: clip;
}

.news-v1-page * { box-sizing: border-box; }
.news-v1-page img { max-width: 100%; display: block; }
.news-v1-page a { color: inherit; text-decoration: none; }

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

.news-v1-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96), rgba(8,17,31,.78)),
    radial-gradient(circle at 80% 18%, rgba(20,99,255,.22), transparent 30%),
    var(--navy);
  color: #fff;
  padding: clamp(46px, 7vw, 86px) 0 clamp(86px, 9vw, 120px);
}

.news-v1-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .5;
  pointer-events: none;
}

.news-v1-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.news-v1-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  margin-bottom: 38px;
}

.news-v1-eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-v1-hero h1 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.news-v1-hero__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.news-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.news-v1-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 15px 24px;
  font-weight: 850;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.news-v1-btn:hover { transform: translateY(-2px); }
.news-v1-btn:focus-visible,
.news-v1-tabs a:focus-visible,
.news-v1-page summary:focus-visible {
  outline: 3px solid rgba(20,99,255,.28);
  outline-offset: 3px;
}

.news-v1-btn--blue { background: var(--blue); color: #fff; box-shadow: 0 18px 36px rgba(20,99,255,.28); }
.news-v1-btn--dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.news-v1-btn--orange { background: var(--orange); color: #fff; }

.news-v1-hero-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
}

.news-v1-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-v1-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,17,31,.72), rgba(8,17,31,.12));
}

.news-v1-hero-card__content {
  position: relative;
  z-index: 1;
  max-width: 430px;
  padding: 36px;
}

.news-v1-hero-card__content span,
.news-v1-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-v1-hero-card__content span {
  background: var(--orange);
  color: #fff;
}

.news-v1-hero-card h2 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.news-v1-hero-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.news-v1-tabs-wrap {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.news-v1-tabs {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: min(100% - 32px, 820px);
  gap: 10px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 12px;
}

.news-v1-tabs a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 850;
}

.news-v1-tabs a img {
  width: 22px;
  height: 22px;
}

.news-v1-tabs a.is-active {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  box-shadow: 0 16px 32px rgba(249,115,22,.28);
}

.news-v1-tabs a.is-active img {
  filter: brightness(0) invert(1);
}

.news-v1-section {
  padding: clamp(64px, 7vw, 104px) 0;
}

.news-v1-section--soft {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.news-v1-section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.news-v1-section h2,
.news-v1-popular h2,
.news-v1-faq-grid h2,
.news-v1-final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.news-v1-link {
  color: var(--blue);
  font-weight: 850;
}

.news-v1-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.news-v1-offer-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.news-v1-offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-v1-offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,17,31,.82), rgba(8,17,31,.28));
}

.news-v1-offer-card__content {
  position: relative;
  z-index: 1;
  max-width: 490px;
  padding: 34px 148px 34px 34px;
  color: #fff;
}

.news-v1-label--orange {
  background: #fff7ed;
  color: var(--orange);
}

.news-v1-offer-card h3 {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.news-v1-offer-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.news-v1-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}

.news-v1-meta a {
  color: #fff;
}

.news-v1-meta--offer {
  max-width: none;
  margin-top: 26px;
  gap: 14px;
  align-items: center;
}

.news-v1-offer-date {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.news-v1-offer-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.84);
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8,17,31,.18);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-v1-offer-cta:hover {
  background: #f8fafc;
  border-color: #fff;
  color: #08111f;
  box-shadow: 0 18px 34px rgba(8,17,31,.24);
  transform: translateY(-2px);
}

.news-v1-discount-badge,
.news-v1-gift-badge {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  box-shadow: 0 22px 42px rgba(249,115,22,.32);
  font-size: 30px;
  font-weight: 950;
  transform: rotate(45deg);
}

.news-v1-discount-badge {
  font-size: 34px;
}

.news-v1-gift-badge > * ,
.news-v1-discount-badge {
  transform: rotate(-45deg);
}

.news-v1-gift-badge img {
  position: static;
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.news-v1-gift-badge span {
  display: block;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

.news-v1-gift-badge {
  align-content: center;
  justify-items: center;
  gap: 6px;
  text-align: center;
  padding-top: 4px;
}

.news-v1-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.news-v1-article-card,
.news-v1-popular-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15,23,42,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

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

.news-v1-article-card:hover > img {
  transform: scale(1.03);
}

.news-v1-article-card > div {
  padding: 20px;
}

.news-v1-article-card time {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.news-v1-article-card h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.news-v1-article-card p {
  color: var(--muted);
  line-height: 1.55;
}

.news-v1-article-card a {
  color: var(--blue);
  font-weight: 850;
  transition: color .2s ease, transform .2s ease;
}

.news-v1-article-card a:hover {
  color: #0b4fe8;
  transform: translateX(2px);
}

.news-v1-popular {
  padding-top: 32px;
}

.news-v1-popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.news-v1-popular-grid a {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 7px 16px;
  align-items: start;
  min-height: 112px;
  padding: 14px;
}

.news-v1-popular-grid img {
  grid-row: 1 / 4;
  width: 94px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
}

.news-v1-popular-grid .news-v1-popular-number {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.news-v1-popular-grid a:hover .news-v1-popular-number {
  background: var(--orange);
  color: #fff;
}

.news-v1-popular-grid .news-v1-popular-title {
  display: block;
  color: var(--text);
  font-weight: 900;
  line-height: 1.22;
}

.news-v1-popular-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.news-v1-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.news-v1-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.news-v1-faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

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

.news-v1-faq-list summary::-webkit-details-marker { display: none; }
.news-v1-faq-list summary::after { content: "+"; color: var(--blue); font-size: 22px; }
.news-v1-faq-list details[open] summary::after { content: "−"; color: var(--orange); }
.news-v1-faq-list p { margin: 0; padding: 0 22px 20px; color: var(--muted); line-height: 1.55; }

.news-v1-question-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.news-v1-question-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-v1-question-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,17,31,.82), rgba(8,17,31,.28));
}

.news-v1-question-card__panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(310px, 44%);
  min-height: 100%;
  max-width: 360px;
  margin-left: auto;
  padding: 42px 34px;
  text-align: center;
  background: rgba(8, 17, 31, .82);
  border-left: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.news-v1-question-card__panel i {
  margin-bottom: 18px;
  color: #fff;
  font-size: 58px;
  line-height: 1;
}

.news-v1-question-card span {
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.news-v1-question-card h3 {
  max-width: 230px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.news-v1-question-card p {
  max-width: 230px;
  margin: 8px 0 22px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.6;
}

.news-v1-question-card .news-v1-btn {
  min-height: 54px;
  border-radius: 8px;
  padding: 16px 28px;
}

.news-v1-final-cta {
  padding: clamp(54px, 7vw, 82px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96), rgba(8,17,31,.82)),
    url("/images/news-v1/images/cta-worker.jpg") center/cover;
}

.news-v1-final-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.news-v1-final-cta h2 {
  color: #fff;
}

.news-v1-final-cta p {
  max-width: 560px;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .news-v1-shell { width: min(1220px, calc(100% - 48px)); }
  .news-v1-articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-v1-popular-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .news-v1-hero__grid { grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr); }
  .news-v1-section-head { grid-template-columns: 1fr auto; align-items: end; }
  .news-v1-offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-v1-articles-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .news-v1-popular-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .news-v1-faq-grid { grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr); }
  .news-v1-final-cta__inner { grid-template-columns: 1fr auto; }
  .news-v1-final-cta .news-v1-actions { justify-content: flex-end; margin-top: 0; }
}

@media (max-width: 430px) {
  .news-v1-shell { width: min(100% - 24px, 1220px); }
  .news-v1-actions { display: grid; grid-template-columns: 1fr; }
  .news-v1-btn { width: 100%; }
  .news-v1-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 24px); }
  .news-v1-tabs a { width: 100%; min-width: 0; justify-content: center; padding-inline: 10px; font-size: 14px; }
  .news-v1-hero-card__content,
  .news-v1-offer-card__content,
  .news-v1-question-card__panel { padding: 24px; }
  .news-v1-hero h1 { font-size: 40px; }
  .news-v1-hero__lead { font-size: 17px; }
  .news-v1-hero-card h2,
  .news-v1-offer-card h3 { font-size: 25px; }
  .news-v1-discount-badge,
  .news-v1-gift-badge { width: 84px; height: 84px; right: 18px; bottom: 18px; font-size: 24px; }
}

/* Reference-fit overrides for the /news landing page. */
@media (min-width: 1200px) {
  .news-v1-shell {
    width: min(1524px, calc(100% - 136px));
  }

  .news-v1-hero {
    padding: 98px 0 78px;
  }

  .news-v1-hero__grid {
    grid-template-columns: minmax(0, 610px) minmax(560px, 710px);
    justify-content: space-between;
    gap: 72px;
  }

  .news-v1-breadcrumbs {
    margin-bottom: 42px;
  }

  .news-v1-hero h1 {
    max-width: 610px;
    font-size: 62px;
    line-height: .98;
    letter-spacing: -.04em;
  }

  .news-v1-hero__lead {
    max-width: 575px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
  }

  .news-v1-actions {
    margin-top: 34px;
    gap: 22px;
  }

  .news-v1-btn {
    min-height: 64px;
    border-radius: 8px;
    padding: 19px 34px;
    font-size: 15px;
  }

  .news-v1-hero-card {
    min-height: 430px;
    border-radius: 14px;
  }

  .news-v1-hero-card__content {
    max-width: 500px;
    padding: 58px 48px;
  }

  .news-v1-hero-card h2 {
    font-size: 48px;
    line-height: 1.05;
  }

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

  .news-v1-section--soft {
    padding-top: 86px;
  }

  .news-v1-section-head {
    margin-bottom: 42px;
  }

  .news-v1-section h2,
  .news-v1-popular h2,
  .news-v1-faq-grid h2,
  .news-v1-final-cta h2 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .news-v1-offers-grid {
    gap: 32px;
  }

  .news-v1-offer-card {
    min-height: 388px;
    border-radius: 14px;
  }

  .news-v1-offer-card__content {
    max-width: 535px;
    padding: 46px 164px 38px 38px;
  }

  .news-v1-offer-card h3 {
    font-size: 34px;
  }

  .news-v1-articles-grid {
    gap: 32px;
  }

  .news-v1-article-card,
  .news-v1-popular-grid a {
    border-radius: 14px;
  }

  .news-v1-popular-grid {
    gap: 24px;
  }

  .news-v1-popular-grid a {
    min-height: 124px;
    padding: 16px;
  }

  .news-v1-faq-grid {
    grid-template-columns: minmax(0, 700px) minmax(560px, 710px);
    justify-content: space-between;
    gap: 64px;
  }

  .news-v1-question-card {
    min-height: 390px;
    border-radius: 14px;
  }
}

.news-v1-hero-card__arrow {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 34px rgba(2, 6, 23, .22);
}

.news-v1-hero-card__arrow::before {
  content: "";
  width: 17px;
  height: 17px;
  background: var(--navy);
  mask: url("/images/news-v1/icons/arrow.svg") center / contain no-repeat;
}

.news-v1-hero-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.news-v1-hero-dots span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  flex: 0 0 auto;
}

.news-v1-hero-dots .is-active {
  background: var(--orange);
  width: 52px;
}

.news-v1-section-head .news-v1-eyebrow,
.news-v1-popular > .news-v1-shell > .news-v1-eyebrow,
.news-v1-faq-grid .news-v1-eyebrow {
  width: 26px;
  height: 3px;
  overflow: hidden;
  color: transparent;
  background: var(--orange);
}

.news-v1-final-cta {
  padding: 46px 0 54px;
  background: #fff;
}

.news-v1-final-cta__inner {
  overflow: hidden;
  border-radius: 14px;
  padding: 56px 58px;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96), rgba(8,17,31,.78)),
    url("/images/news-v1/images/cta-worker.jpg") center/cover;
}

@media (max-width: 1199px) {
  .news-v1-hero-card__arrow,
  .news-v1-hero-dots {
    display: none;
  }
}

@media (max-width: 640px) {
  .news-v1-hero-card__content,
  .news-v1-offer-card__content,
  .news-v1-question-card__panel {
    max-width: 100%;
  }

  .news-v1-hero-card h2,
  .news-v1-offer-card h3 {
    max-width: calc(100% - 18px);
  }

  .news-v1-final-cta__inner {
    padding: 32px 24px;
  }

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

  .news-v1-popular-grid a {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 108px;
  }

  .news-v1-popular-grid img {
    width: 88px;
    height: 78px;
  }

  .news-v1-question-card__panel {
    width: 100%;
    min-height: auto;
    margin-top: 210px;
    padding: 28px 22px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .news-v1-question-card__panel i {
    font-size: 42px;
  }
}

/* UX/UI density pass for the news landing page. */
.news-v1-page {
  --news-section-y: clamp(40px, 4.8vw, 68px);
  --news-section-y-tight: clamp(32px, 4vw, 54px);
}

.news-v1-section {
  padding-block: var(--news-section-y);
}

.news-v1-section--soft {
  padding-block: var(--news-section-y);
}

.news-v1-section-head {
  margin-bottom: 24px;
}

.news-v1-tabs-wrap {
  margin-top: -34px;
  margin-bottom: -10px;
}

.news-v1-tabs {
  border-radius: 18px;
  padding: 9px;
}

.news-v1-tabs a {
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 16px;
}

.news-v1-offers-grid,
.news-v1-articles-grid,
.news-v1-popular-grid {
  gap: 20px;
}

.news-v1-offer-card {
  min-height: 300px;
  border-radius: 18px;
}

.news-v1-offer-card__content {
  padding: 28px;
}

.news-v1-offer-card h3 {
  margin-top: 18px;
}

.news-v1-meta {
  margin-top: 22px;
}

.news-v1-article-card,
.news-v1-popular-grid a,
.news-v1-faq-list details {
  border-radius: 16px;
}

.news-v1-article-card > div {
  padding: 18px;
}

.news-v1-article-card h3 {
  margin-top: 10px;
}

.news-v1-article-card p {
  margin-bottom: 12px;
}

.news-v1-popular {
  padding-top: var(--news-section-y-tight);
}

.news-v1-faq-list {
  margin-top: 20px;
}

.news-v1-final-cta {
  padding-block: 36px 42px;
}

.news-v1-final-cta__inner {
  padding: 42px 46px;
}

@media (min-width: 1200px) {
  .news-v1-hero {
    padding: 64px 0 58px;
  }

  .news-v1-hero__grid {
    grid-template-columns: minmax(0, 560px) minmax(560px, 700px);
    align-items: center;
    gap: 58px;
  }

  .news-v1-breadcrumbs {
    margin-bottom: 28px;
  }

  .news-v1-hero h1 {
    font-size: 56px;
    line-height: 1;
  }

  .news-v1-hero__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .news-v1-actions {
    margin-top: 28px;
  }

  .news-v1-btn {
    min-height: 54px;
    padding: 16px 28px;
  }

  .news-v1-hero-card {
    min-height: 360px;
  }

  .news-v1-hero-card__content {
    padding: 42px;
  }

  .news-v1-hero-card h2 {
    margin-top: 20px;
    font-size: 42px;
  }

  .news-v1-hero-dots {
    margin-top: 28px;
  }

  .news-v1-section {
    padding-block: 58px;
  }

  .news-v1-section--soft {
    padding-block: 62px;
  }

  .news-v1-section-head {
    margin-bottom: 30px;
  }

  .news-v1-section h2,
  .news-v1-popular h2,
  .news-v1-faq-grid h2,
  .news-v1-final-cta h2 {
    font-size: 34px;
  }

  .news-v1-offers-grid,
  .news-v1-articles-grid {
    gap: 26px;
  }

  .news-v1-offer-card {
    min-height: 340px;
  }

  .news-v1-offer-card__content {
    padding: 34px 140px 34px 34px;
  }

  .news-v1-offer-card h3 {
    font-size: 31px;
  }

  .news-v1-discount-badge,
  .news-v1-gift-badge {
    right: 24px;
    bottom: 24px;
  }

  .news-v1-popular-grid {
    gap: 18px;
  }

  .news-v1-faq-grid {
    gap: 46px;
  }

  .news-v1-question-card {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .news-v1-page,
  .news-v1-page * {
    min-width: 0;
    max-width: 100%;
  }

  .news-v1-shell {
    width: min(1220px, calc(100% - 32px));
  }

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

  .news-v1-breadcrumbs {
    margin-bottom: 22px;
  }

  .news-v1-hero h1 {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .news-v1-hero h1 span,
  .news-v1-section h2 span {
    display: block;
  }

  .news-v1-hero__lead {
    margin-top: 16px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .news-v1-section h2,
  .news-v1-popular h2,
  .news-v1-faq-grid h2,
  .news-v1-final-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .news-v1-hero-card h2,
  .news-v1-offer-card h3,
  .news-v1-article-card h3,
  .news-v1-popular-title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .news-v1-hero-card h2 {
    max-width: 280px;
    font-size: 24px;
    line-height: 1.14;
  }

  .news-v1-offer-card h3 {
    max-width: 280px;
    font-size: 23px;
    line-height: 1.16;
  }

  .news-v1-hero-card p,
  .news-v1-offer-card p,
  .news-v1-meta {
    max-width: 280px;
  }

  .news-v1-meta--offer {
    max-width: 100%;
    align-items: flex-start;
  }

  .news-v1-tabs-wrap {
    margin-top: -28px;
    margin-bottom: 0;
  }

  .news-v1-section {
    padding-block: 38px;
  }

  .news-v1-section-head {
    margin-bottom: 20px;
  }

  .news-v1-offer-card {
    min-height: 280px;
  }

  .news-v1-offer-card__content,
  .news-v1-hero-card__content {
    padding: 24px 28px;
  }

  .news-v1-offer-date,
  .news-v1-offer-cta {
    min-height: 42px;
  }

  .news-v1-discount-badge,
  .news-v1-gift-badge {
    right: -18px;
    bottom: 18px;
  }

  .news-v1-final-cta__inner {
    padding: 28px 22px;
  }
}

/* Final reference-alignment pass for /news. */
.news-v1-hero .news-v1-eyebrow {
  display: none;
}

.news-v1-btn {
  gap: 10px;
}

.news-v1-btn--hero-primary::after,
.news-v1-btn--hero-calc::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.news-v1-btn--hero-primary::after {
  background: currentColor;
  mask: url("/images/news-v1/icons/arrow.svg") center / contain no-repeat;
}

.news-v1-btn--hero-calc::after {
  background: currentColor;
  mask: url("/images/news-v1/icons/calc.svg") center / contain no-repeat;
}

.news-v1-hero-card__content span,
.news-v1-offer-card .news-v1-label--orange {
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .03em;
}

.news-v1-hero-card h2 {
  max-width: 390px;
}

.news-v1-offer-card::after {
  background: linear-gradient(90deg, rgba(8,17,31,.86), rgba(8,17,31,.32));
}

.news-v1-meta--offer {
  align-items: center;
  gap: 16px;
}

.news-v1-offer-date::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 8px;
  background: var(--orange);
  mask: url("/images/news-v1/icons/calendar.svg") center / contain no-repeat;
}

.news-v1-offer-cta {
  min-height: 44px;
  padding: 0 18px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.news-v1-offer-cta:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8,17,31,.20);
}

.news-v1-discount-badge,
.news-v1-gift-badge {
  right: 22px;
  bottom: 22px;
  width: 94px;
  height: 94px;
  border-radius: 24px;
}

.news-v1-discount-badge {
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding-top: 2px;
}

.news-v1-discount-badge__value,
.news-v1-discount-badge__text {
  display: block;
  transform: rotate(-45deg);
}

.news-v1-discount-badge__value {
  font-size: 28px;
  line-height: .95;
  font-weight: 950;
}

.news-v1-discount-badge__text {
  width: 58px;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.news-v1-gift-badge img {
  width: 26px;
  height: 26px;
}

.news-v1-gift-badge span {
  width: 60px;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}

.news-v1-article-card > div {
  padding: 0 18px 18px;
}

.news-v1-article-card .news-v1-label {
  position: relative;
  top: -18px;
  margin-bottom: -4px;
  box-shadow: 0 10px 24px rgba(15,23,42,.12);
}

.news-v1-article-card time {
  margin-top: 4px;
}

.news-v1-article-card h3 {
  font-size: 20px;
  line-height: 1.24;
}

.news-v1-article-card p {
  margin: 10px 0 14px;
  font-size: 14px;
}

.news-v1-article-card a::after,
.news-v1-link::after {
  content: "→";
  margin-left: 8px;
}

.news-v1-popular-grid a {
  min-height: 118px;
  padding: 14px 16px;
}

.news-v1-popular-grid .news-v1-popular-title {
  font-size: 15px;
}

.news-v1-faq-list summary {
  min-height: 58px;
  padding: 16px 20px;
  font-size: 15px;
}

.news-v1-question-card {
  min-height: 346px;
}

.news-v1-question-card__panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(248px, calc(100% - 44px));
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 26px 22px 22px;
  text-align: left;
  background: linear-gradient(180deg, rgba(15,23,42,.90), rgba(15,23,42,.82));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.30);
  backdrop-filter: blur(14px);
}

.news-v1-question-card__panel i {
  margin-bottom: 14px;
  font-size: 36px;
}

.news-v1-question-card span {
  display: none;
}

.news-v1-question-card h3 {
  max-width: none;
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.news-v1-question-card p {
  max-width: none;
  margin: 12px 0 18px;
  font-size: 14px;
}

.news-v1-question-card .news-v1-btn {
  min-height: 48px;
  width: 100%;
  border-radius: 10px;
  padding: 14px 18px;
}

.news-v1-final-cta__copy p:last-child {
  max-width: 420px;
}

.news-v1-actions--final {
  gap: 14px;
}

@media (min-width: 1200px) {
  .news-v1-shell {
    width: min(1360px, calc(100% - 96px));
  }

  .news-v1-hero {
    padding: 58px 0 56px;
  }

  .news-v1-hero__grid {
    grid-template-columns: minmax(0, 500px) minmax(520px, 720px);
    gap: 56px;
  }

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

  .news-v1-hero h1 {
    max-width: 520px;
    font-size: 54px;
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .news-v1-hero__lead {
    max-width: 430px;
    margin-top: 18px;
    font-size: 18px;
  }

  .news-v1-actions {
    margin-top: 26px;
    gap: 14px;
  }

  .news-v1-btn {
    min-height: 52px;
    padding: 15px 22px;
    font-size: 14px;
  }

  .news-v1-hero-card {
    min-height: 332px;
    border-radius: 18px;
  }

  .news-v1-hero-card__content {
    max-width: 400px;
    padding: 30px 28px;
  }

  .news-v1-hero-card h2 {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1.16;
  }

  .news-v1-hero-card p {
    margin-top: 14px;
    font-size: 15px;
  }

  .news-v1-hero-dots {
    margin-top: 26px;
  }

  .news-v1-section {
    padding-block: 54px;
  }

  .news-v1-section--soft {
    padding-block: 58px;
  }

  .news-v1-section h2,
  .news-v1-popular h2,
  .news-v1-faq-grid h2,
  .news-v1-final-cta h2 {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -.03em;
  }

  .news-v1-offers-grid {
    gap: 18px;
  }

  .news-v1-offer-card {
    min-height: 258px;
    border-radius: 18px;
  }

  .news-v1-offer-card__content {
    max-width: 380px;
    padding: 26px 130px 26px 26px;
  }

  .news-v1-offer-card h3 {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.14;
  }

  .news-v1-offer-card p {
    margin-top: 12px;
    font-size: 14px;
  }

  .news-v1-articles-grid {
    gap: 18px;
  }

  .news-v1-article-card > img {
    aspect-ratio: 1.34 / 1;
  }

  .news-v1-article-card h3 {
    font-size: 18px;
  }

  .news-v1-popular {
    padding-top: 18px;
  }

  .news-v1-popular-grid {
    gap: 14px;
  }

  .news-v1-faq-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 370px);
    gap: 22px;
  }

  .news-v1-final-cta {
    padding: 24px 0 0;
  }

  .news-v1-final-cta__inner {
    min-height: 168px;
    padding: 38px 250px 38px 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    background-position: right center;
  }

  .news-v1-final-cta h2 {
    font-size: 28px;
  }

  .news-v1-final-cta p {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .news-v1-offer-card__content {
    padding: 22px 22px 108px;
  }

  .news-v1-meta--offer {
    gap: 12px;
  }

  .news-v1-offer-date {
    min-height: 38px;
    font-size: 14px;
  }

  .news-v1-offer-cta {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .news-v1-question-card {
    min-height: 340px;
  }

  .news-v1-question-card__panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 22px 18px 18px;
  }

  .news-v1-question-card h3 {
    font-size: 22px;
  }
}

/* Restore the approved reference look after CTA/link cleanup. */
.news-v1-hero-dots span {
  cursor: default;
}

.news-v1-hero-card__arrow {
  cursor: pointer;
}

.news-v1-offer-cta {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: none;
  backdrop-filter: none;
}

.news-v1-offer-cta::after {
  content: "→";
  margin-left: 10px;
  color: currentColor;
}

.news-v1-offer-cta:hover {
  background: transparent;
  border-color: transparent;
  color: #fff;
  box-shadow: none;
  transform: translateX(2px);
}

.news-v1-discount-badge,
.news-v1-gift-badge {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  transform: rotate(45deg);
}

.news-v1-discount-badge__value,
.news-v1-discount-badge__text,
.news-v1-gift-badge > * {
  transform: rotate(-45deg);
}

.news-v1-discount-badge__value {
  font-size: 30px;
}

.news-v1-gift-badge img {
  width: 30px;
  height: 30px;
}

.news-v1-gift-badge span,
.news-v1-discount-badge__text {
  width: 70px;
  font-size: 11px;
}

.news-v1-question-card__panel {
  position: relative;
  inset: auto;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(310px, 44%);
  min-height: 100%;
  max-width: 360px;
  margin-left: auto;
  padding: 42px 34px;
  text-align: center;
  background: rgba(8,17,31,.82);
  border: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.news-v1-question-card__panel i {
  margin-bottom: 18px;
  font-size: 58px;
}

.news-v1-question-card h3 {
  max-width: 230px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.news-v1-question-card p {
  max-width: 230px;
  margin: 10px 0 22px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
}

.news-v1-question-card .news-v1-btn {
  min-height: 46px;
  width: auto;
  border-radius: 8px;
  padding: 14px 24px;
}

.news-v1-final-cta {
  padding: 46px 0 54px;
  background: #fff;
}

.news-v1-final-cta__inner {
  min-height: 168px;
  overflow: hidden;
  border-radius: 14px;
  padding: 42px 250px 42px 46px;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96), rgba(8,17,31,.78)),
    url("/images/news-v1/images/cta-worker.jpg") center/cover;
}

.news-v1-final-cta__copy p:last-child {
  max-width: 520px;
}

@media (min-width: 1200px) {
  .news-v1-hero {
    padding: 72px 0 66px;
  }

  .news-v1-hero__grid {
    grid-template-columns: minmax(0, 510px) minmax(520px, 640px);
  }

  .news-v1-hero-card {
    min-height: 330px;
  }

  .news-v1-offer-card {
    min-height: 300px;
  }

  .news-v1-offer-card__content {
    max-width: 470px;
    padding: 34px 140px 34px 34px;
  }

  .news-v1-offer-card h3 {
    font-size: 27px;
  }

  .news-v1-offer-card p {
    font-size: 15px;
  }

  .news-v1-meta--offer {
    margin-top: 24px;
  }

  .news-v1-faq-grid {
    grid-template-columns: minmax(0, .92fr) minmax(440px, .98fr);
    gap: 64px;
  }

  .news-v1-question-card {
    min-height: 340px;
  }

  .news-v1-final-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 640px) {
  .news-v1-question-card__panel {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 210px 0 0;
    padding: 28px 22px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .news-v1-question-card__panel i {
    font-size: 42px;
  }

  .news-v1-final-cta__inner {
    padding: 32px 24px;
  }
}

/* Final FAQ layout for the trimmed /news page: no ask-card, 2x2 questions. */
.news-v1-faq-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

.news-v1-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 18px;
  margin-top: 20px;
}

.news-v1-faq-list details {
  height: 100%;
}

@media (min-width: 980px) {
  .news-v1-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final spacing compaction for the trimmed /news page. */
.news-v1-section,
.news-v1-section--soft {
  padding-block: 34px !important;
}

.news-v1-section-head {
  margin-bottom: 18px !important;
}

.news-v1-faq-ask {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

.news-v1-final-cta {
  padding-top: 18px !important;
  padding-bottom: 28px !important;
}

.news-v1-final-cta__inner {
  padding: 32px 38px !important;
}

@media (max-width: 640px) {
  .news-v1-section,
  .news-v1-section--soft {
    padding-block: 24px !important;
  }

  .news-v1-section-head {
    margin-bottom: 14px !important;
  }

  .news-v1-faq-ask {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .news-v1-final-cta {
    padding-top: 14px !important;
    padding-bottom: 20px !important;
  }

  .news-v1-final-cta__inner {
    padding: 24px 20px !important;
  }
}
