/* ============================================
   PRESELL EIGHT REASONS — Solana Gear
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Colors */
  --color-text: #000000;
  --color-red: #c8102e;
  --color-blue: #106fdd;
  --color-green: #1a9069;
  --color-yellow: #ffe101;
  --color-yellow-border: #b9a300;
  --color-yellow-light: #f5f5c3;
  --color-yellow-lighter: #fdfde7;
  --color-white: #ffffff;
  --color-bg: #fff;
  --color-light-bg: #ecf5ff;

  /* Typography */
  --font-base: "Source Sans 3", system-ui, sans-serif;

  /* Derived color aliases */
  --color-title: var(--color-text);
  --color-grey: #888888;
  --color-black: #000000;

  /* Layout */
  --wrapper-max: 896px;
  --wrapper-px: 16px;
  --sidebar-width: 360px;
  --gap: 48px;
}

/* ============================================
   Reset / Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

p {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

/* ============================================
   Wrapper
   ============================================ */
.wrapper {
  max-width: var(--wrapper-max);
  padding-inline: var(--wrapper-px);
  margin-inline: auto;
  width: 100%;
  overflow-x: hidden;
}

/* Article section: two-column layout on desktop only */
.article-sidebar {
  display: none;
}

@media (min-width: 901px) {
  .article-section .wrapper {
    max-width: 1232px; /* 1200px content + 2×16px padding = left:843 + gap:93 + right:264 */
    display: grid;
    grid-template-columns: 1fr 264px;
    gap: 93px;
    align-items: start;
    overflow: visible;
  }
  .article-sidebar {
    display: block;
  }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  background-color: #1a1a1a;
}

.header-main {
  padding: 18px 0;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* .brand-logo {
  height: 36px;
  width: auto;
  display: block;
} */

.header-trending {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}
.wrapper.header-wrapper {
  max-width: 1200px;
}
.header-trending img {
  height: 18px;
  width: auto;
  display: inline;
}

/* ============================================
   Stock Notice Bar
   ============================================ */
.stock-notice {
  display: flex;
  align-items: stretch;
  /* border: 1px solid #c5d4b0; */
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.stock-notice-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6c856b;
  color: #fff;
  font-family: var(--font-base);
  font-size: 31px;
  font-weight: 800;
  width: 52px;
}

.stock-notice-text {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: #42413e;
  margin: 0;
  padding: 5px 9px 5px 17px;
  background-color: #e4f6e3;
}

.stock-notice-link {
  color: #2072dc;
  font-weight: 700;
  text-decoration: none;
}

.stock-notice-link:hover {
  text-decoration: underline;
  color: #2072dc;
}

.stock-notice-text--mob {
  display: none;
}

@media (max-width: 900px) {
  .stock-notice {
    padding-inline: 16px;
  }
  .stock-notice-text--desk {
    display: none;
  }
  .stock-notice-text--mob {
    display: block;
  }
  .stock-notice-text {
    font-size: 12px;
    padding: 5px 9px 5px 9px;
    width: 100%;
  }
  .stock-notice-icon {
    width: 27px;
    font-size: 27px;
  }
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
  padding: 20px 0 100px;
}

/* ============================================
   Article Content — full wrapper width (1100px)
   ============================================ */
.article-content {
  width: 100%;
}

.article-meta.article-meta--desk {
  display: none;
}

@media (min-width: 901px) {
  .article-meta.article-meta--desk {
    display: flex;
  }
  .article-meta.article-meta--mob {
    display: none;
  }
}

/* ============================================
   Article Left Column — Typography
   ============================================ */

/* Hero video */
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}

.editor-pick {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.article-headline {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-title);
  margin-top: 0;
  margin-bottom: 17px;
  /* letter-spacing: 0.2px; */
}
.subheadline {
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  max-width: 800px;
}
.headline-highlight {
  background-color: #fff28c;
  color: var(--color-title);
  padding: 2px 4px;
  font-style: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.article-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  /* padding: 14px 0; */
  /* border-bottom: 1px solid #dddddd; */
}

.article-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-meta-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-meta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}

.author-name {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 1.3;
}

.article-meta-stars {
  display: block;
  height: 17px;
  width: 92px;
}

.article-meta-read {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  color: #777;
  white-space: nowrap;
  flex-shrink: 0;
}

.article-mobile-rating {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-grey);
}

.article-mobile-rating img {
  height: 18px;
  display: inline;
}

.article-lead {
  font-family: var(--font-base);
  font-size: 20px;
  font-style: italic;
  color: var(--color-grey);
  margin-bottom: 22px;
  font-weight: 600;
}

.article-lead-mob {
  display: none;
}

.article-text {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 25px;
}

.article-text.last {
  margin-bottom: 48px;
}

.article-text a {
  font-weight: 700;
  text-decoration: none;
}

.article-text a:hover {
  text-decoration: underline;
}

.article-subheading {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-title);
  margin: 40px 0 16px;
  line-height: 1.3;
}

/* ============================================
   Reasons Section (image + text rows)
   ============================================ */
.reasons-section {
  display: grid;
  gap: 50px;
}
.reasons-heading {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-title);
  padding-bottom: 19px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 24px;
}

.reason-row {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 0;
  padding: 0;
}

/* Gray background on even rows (all --reverse rows) */
.reason-row--reverse {
  background-color: #f5f5f5;
  padding: 1.5rem 1rem;
  margin-inline: -1rem;
}

/* Image always on left (column 1) on desktop */
.reason-row:not(.reason-row--reverse) .reason-image--desk {
  order: -1;
}

/* Odd rows (no --reverse): content LEFT, image RIGHT */
/* .reason-row .reason-image {
  order: 2;
} */
/* .reason-row .reasons-cta {
  order: 3;
} */

/* Even rows (--reverse): image LEFT, content RIGHT */
/* .reason-row--reverse .reason-image {
  order: -1;
} */

.reason-image--mob-copy {
  display: none;
}

.reason-image {
  width: 370px;
  flex-shrink: 0;
}

.reason-image img,
.reason-image video {
  width: 370px !important;
  height: 370px !important;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.reason-content {
  display: flex;
  flex-direction: column;
}

.reason-label {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.reason-title {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 900;
  color: #1f1f1f;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: 0;
}

.reason-body {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 20px;
}
.line {
  display: block;
  width: 2px;
  height: 74px;
  background: #5b5b5b;
  flex-shrink: 0;
}

.reason-body-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: #5b5b5b;
}
@media (max-width: 640px) {
  .line {
    height: auto;
    flex-shrink: 0;
  }
  .reason-body-2 {
    align-items: stretch;
  }
}
.reason-body + .reason-body {
  margin-top: 14px;
}

.reason-body-brand {
  color: #1a5fb4;
  text-decoration: none;
  font-weight: 700;
}

.reason-body-brand:hover {
  color: #1a5fb4;
  text-decoration: none;
}

.reasons-cta {
  text-align: center;
  /* padding: 8px 0 48px; */
  grid-column: span 2;
}

.article-quote {
  font-family: var(--font-base);
  border-left: 4px solid #106fdd;
  padding: 14px 18px;
  background: #e8f4f8;
  margin-top: 28px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  border-radius: 0 4px 4px 0;
}
.article-quote.hero {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 29px;
  padding: 15px 26px 15px 28px;
}
.article-quote strong {
  font-weight: 700;
}
.quote-confirmed {
  color: var(--color-green);
  font-weight: 700;
}
.article-quote--symptoms strong {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
}
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.symptoms-grid li {
  padding-left: 16px;
  position: relative;
  font-size: 12px;
  line-height: 1.5;
}
.symptoms-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text);
}
@media (max-width: 480px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
}
#seen-section {
  padding-bottom: 40px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 30px;
}
.seen-title {
  font-family: "Roboto", system-ui, sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 11px;
}
/* .seen-image {
  margin-bottom: 47px;
} */
.seen-image--mobile {
  display: none;
}

@media (max-width: 640px) {
  .seen-image--desktop {
    display: none;
  }
  .seen-image--mobile {
    display: block;
    width: 100%;
    /* max-width: 264px; */
    margin-inline: auto;
    /* margin-bottom: 47px; */
  }
  #seen-section {
    padding-bottom: 20px;
    margin-bottom: 18px;
  }
  .author-name {
    font-size: 10px;
    line-height: 18px;
    max-width: 175px;
  }
  .article-meta-right-mob {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: end;
  }
  .article-meta-stars {
    height: 14px;
    width: auto;
  }
  .article-meta-read {
    font-size: 10px;
    line-height: 1;
  }
}
@media (max-width: 640px) {
  .editor-pick {
    display: block;
    text-align: left;
    margin-bottom: 10px;
  }
  .reason-row,
  .reason-row--reverse {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  /* On mobile, hide desktop image, show mobile copy (after title) */
  .reason-image--desk {
    display: none;
  }
  .reason-image--mob-copy {
    display: block;
    margin-bottom: 16px;
  }

  .reason-image {
    width: 100%;
  }
  .reason-image img,
  .reason-image video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  /* .reason-row .reason-content,
  .reason-row--reverse .reason-content {
    order: 1;
  } */
}

/* ============================================
   Reason Items (old list style — unused)
   ============================================ */
.reasons-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 4px solid var(--color-red);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.reason-number {
  font-family: var(--font-base);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.reason-body {
  flex: 1;
}

.reason-text {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}

/* ============================================
   CTA / Attention Box
   ============================================ */
.attention-box {
  background: var(--color-yellow-light);
  border: 2px solid var(--color-yellow);
  border-radius: 8px;
  padding: 32px 28px;
  margin: 40px 0;
  text-align: center;
}

.attention-box p {
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-title);
  margin-bottom: 12px;
}

.attention-box a.go-to-offer {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
}

/* ============================================
   CTA Buttons — Shared Base
   ============================================ */
@keyframes cta-pulse {
  0%,
  100% {
    background-color: #004df7;
    color: #fff !important;
    border-color: #004df7;
  }
  50% {
    background-color: rgba(0, 77, 247, 0.4);
    color: #fff !important;
    border-color: #004df7;
  }
}

.cta-btn,
.reviews-cta-btn,
.verdict-cta-btn,
.sticky-cta-btn,
.sidebar-cta-btn {
  background-color: #004df7;
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid #004df7;
  box-shadow: 0 4px 0 0 #02021b;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  line-height: 1.2;
  animation: cta-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-btn:hover,
.reviews-cta-btn:hover,
.verdict-cta-btn:hover,
.sticky-cta-btn:hover,
.sidebar-cta-btn:hover {
  background-color: #004df7;
  text-decoration: none;
  color: #fff !important;
  animation-play-state: paused;
}

.cta-btn:active,
.reviews-cta-btn:active,
.verdict-cta-btn:active,
.sticky-cta-btn:active,
.sidebar-cta-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 0 #02021b;
}

/* Per-button overrides */
.cta-btn {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 20px 40px;
  margin-top: 8px;
}

/* ============================================
   Latest Update Box
   ============================================ */
.update-box {
  background: #e8f0e9;
  border: 1px solid var(--color-green);
  border-left: 4px solid var(--color-green);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 40px 0;
}

.update-box-title {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.update-box-text {
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-title);
  margin: 0 0 4px;
  line-height: 1.7;
}

.update-box-text a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}

/* ============================================
   Reviews
   ============================================ */
.reviews-section {
  margin: 24px 0;
}

.review-box {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  color: var(--color-title);
  font-size: 15px;
  margin-bottom: 2px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-grey);
}

.review-rating-row img {
  height: 16px;
  display: inline;
}

.review-date {
  font-size: 13px;
  color: var(--color-grey);
  margin: 8px 0 2px;
}

/* ============================================
   Reviews Card
   ============================================ */
.reviews-card {
  margin-bottom: 48px;
}

.reviews-card-title {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-title);
  margin: 0 0 27px;
  line-height: 1.2;
  text-align: center;
}

.review-item {
  background-color: #e4f6e3;

  padding: 25px 43px 22px 16px;
  margin-bottom: 18px;
}

.review-item:last-of-type {
  margin-bottom: 0;
}

.review-stars-img {
  display: block;
  height: 20px;
  width: auto;
  margin-bottom: 18px;
}

.review-title {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.review-text {
  font-family: var(--font-base);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 15px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author-name {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: #3ab890;
}

.review-verified-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

.reviews-cta-btn {
  display: block;
  width: 100%;
  font-family: var(--font-base);
  font-size: 28px;
  text-align: center;
  padding: 20px;
  margin-top: 16px;
}

/* ============================================
   Stock Alert
   ============================================ */
.stock-alert {
  margin-bottom: 48px;
}

.stock-alert p {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.stock-alert strong {
  font-weight: 700;
}
.margin-0 {
  margin: 0 !important;
}
/* ============================================
   Sticky CTA
   ============================================ */
.sticky-cta-section {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
  .sticky-cta-section.is-visible {
    display: block;
  }
}

.sticky-cta-btn {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-base);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: #3d3d3d;
  padding: 36px 0 40px;
  text-align: center;
}
.site-footer .wrapper {
  max-width: 1070px;
  margin-inline: auto;
}
.footer-copyright {
  font-family: var(--font-base);
  font-size: 14px;
  color: #808080;
  margin: 0 0 4px;
  line-height: 1.5;
}

.footer-links {
  font-family: var(--font-base);
  font-size: 14px;
  color: #808080;
  margin: 0 0 24px;
  line-height: 1.5;
}

.footer-links a {
  color: #808080;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal {
  font-family: var(--font-base);
  font-size: 14px;
  color: #888888;
  margin: 0 auto 24px;
  line-height: 1.75;
  max-width: 1070px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer-dmca {
  margin-top: 20px;
}

.footer-dmca img {
  display: inline-block;
  height: 28px;
  width: auto;
}

/* ============================================
   Verdict CTA Section
   ============================================ */
.verdict-section {
  background-color: #fff8c7;
  border: 2px dashed var(--color-black);
  /* border-radius: 8px; */
  max-width: 844px;
  margin-inline: auto;
}

.verdict-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 28px 51px 32px;
}

.verdict-headline {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.verdict-subtext {
  font-family: var(--font-base);
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  margin-bottom: 9px;
  max-width: 660px;
}

.verdict-update {
  background-color: #ffef6a;
  border-radius: 0;
  padding: 10px;
  font-family: var(--font-base);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text);

  margin-bottom: 32px;
}

.verdict-update-link {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.verdict-update-link:hover {
  text-decoration: underline;
  color: var(--color-blue);
}

.verdict-cta-btn {
  display: block;
  width: 100%;
  font-family: var(--font-base);
  font-size: 28px;
  text-align: center;
  padding: 20px;
}

/* ============================================
   Latest Update Bar
   ============================================ */
.latest-update-bar {
  background-color: #f2f2f0;
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.lub-date {
  flex-shrink: 0;
  text-align: center;
  padding-right: 18px;
  border-right: 1px solid #d0d0ce;
  min-width: 58px;
}

.lub-month {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-blue);
  text-transform: uppercase;
}

.lub-day {
  font-family: var(--font-base);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  color: var(--color-text);
}

.lub-year {
  font-family: var(--font-base);
  font-size: 12px;
  color: #6b6b6b;
}

.lub-body {
  flex: 1;
}

.latest-update-badge {
  display: block;
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 6px;
}

.latest-update-text {
  font-family: var(--font-base);
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.latest-update-text strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .article-mobile-rating {
    display: flex;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .header-main {
    padding: 8px 0;
  }
  .brand-logo {
    width: 189px;
  }
  .header-trending {
    gap: 4px;
    font-size: 12px;
    text-align: right;
    max-width: 120px;
    text-wrap: auto;
  }
  .header-trending img {
    display: none;
    height: 13px;
  }
  .reasons-heading {
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
    max-width: 310px;
    margin-inline: auto;
  }
  .article-section {
    padding-top: 24px;
  }

  .article-headline {
    font-size: 32px;
  }

  .article-lead:not(.article-lead-mob) {
    display: none;
  }

  .article-lead-mob {
    display: block;
    font-size: 16px;
  }

  .article-text {
    font-size: 18px;
  }

  .reasons-cta {
    grid-column: span 1;
  }

  .reason-item {
    padding: 16px 14px;
    gap: 14px;
  }

  .reason-number {
    font-size: 28px;
    min-width: 36px;
  }

  .attention-box {
    padding: 24px 16px;
  }

  .cta-btn {
    display: block;
    text-align: center;
    padding: 20px;
  }

  .reason-row .reasons-cta {
    display: none;
  }

  .verdict-headline {
    font-size: 26px;
  }
  .verdict-subtext {
    font-size: 18px;
  }
  .verdict-img-wrap {
    padding-top: 28px;
    max-width: 302px;
    margin-inline: auto;
  }
  .verdict-update {
    font-size: 18px;
  }
  .latest-update-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px 20px;
    margin-top: 24px;
    gap: 0;
  }
  .lub-date {
    border-right: none;
    border-bottom: 1px solid #d0d0ce;
    padding-right: 0;
    padding-bottom: 16px;
    min-width: 0;
    width: 100%;
    margin-bottom: 16px;
  }
  .lub-month {
    font-size: 11px;
  }
  .lub-day {
    font-size: 30px;
    margin: 4px 0;
  }
  .lub-year {
    font-size: 11px;
  }
  .lub-body {
    text-align: left;
  }
  .latest-update-text {
    font-size: 16px;
  }
  .subheadline {
    font-size: 18px;
    text-align: center;
  }
  .article-meta {
    /* padding: 24px 0 18px; */
    align-items: center;
  }
  .article-quote.hero {
    font-size: 16px;
    padding: 5px 9px 6px 18px;
  }
  .reviews-card-title {
    font-size: 32px;
  }
  .verdict-inner {
    padding: 20px 16px 24px;
  }
  .article-meta-avatar {
    width: 40px;
    height: 40px;
  }
  .mob-hidden {
    display: none;
  }
  .verdict-cta-btn,
  .reviews-cta-btn,
  .cta-btn {
    font-size: 22px;
    padding: 21px 50px;
  }
  .sticky-cta-btn {
    font-size: 16px;
  }
  .hero-video {
    display: block;
    width: 110%;
    height: 230px;
    margin-bottom: 28px;
    margin-inline: -16px;
    max-width: 110%;
  }
  .review-stars-img {
    margin-bottom: 10px;
  }
  .review-title {
    font-size: 16px;
    margin: 0 0 3px;
  }
  .review-text {
    font-size: 16px;
    line-height: 1.3;
  }
}

/* ============================================
   Sidebar (desktop only)
   ============================================ */
.article-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

.sidebar-card {
  /* border: 1px solid #e0e0e0; */
  background: #fff;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  text-align: center;
}

.sidebar-img-wrap {
  width: 100%;
}

.sidebar-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1.4px solid #e0e0e0;
  border-left: 1.4px solid #e0e0e0;
  border-right: 1.4px solid #e0e0e0;
}

.sidebar-body {
  padding: 20px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  border-left: 2px solid #000;
}

.sidebar-product-title {
  font-family: var(--font-base);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 10px;
  line-height: 1.1;
}

.sidebar-stars {
  display: block;
  height: 16px;
  width: auto;
  margin: 13px auto 15px;
}
.sidebar-rating-text {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
  line-height: 1;
}

.sidebar-review-count {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1;
}

.sidebar-cta-btn {
  display: block;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 16px;
  margin-bottom: 20px;
}

.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-features li {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.cc-blue {
  color: #106fdd;
}
.border {
  border: 1px solid #e2e2e2;
  border-radius: 10px !important;
}

@media (max-width: 600px) {
  .verdict-section {
    margin-inline: -16px;
    text-align: center;
  }
  .seen-title {
    font-size: 14px;
  }
  .reasons-section {
    gap: 40px;
  }
}
