/* ProductReviewLayout.astro */

  .review-landing {
    margin: 0;
    background: #fefefe;
    color: #1a1a1a;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    --color-primary: #07bf68;
    --primary-foreground: #ffffff;
  }
  .review-landing * {
    box-sizing: border-box;
  }
  .review-header {
    border-bottom: 3px solid #07bf68;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  .review-header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 80px;
    overflow: visible;
  }
  .review-logo {
    display: block;
    line-height: 0;
    overflow: visible;
  }
  .review-logo img {
    height: 66px;
    width: auto;
    max-width: min(400px, 84vw);
    object-fit: contain;
    object-position: left center;
    display: block;
    border-radius: 4px;
  }
  .review-main {
    width: 100%;
    min-width: 0;
    display: block;
  }
  .ctr-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 56px;
  }
  .ctr-kicker {
    display: inline-block;
    background: #ffd268;
    color: #000;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 0 12px;
  }
  .ctr-shell h1 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #000;
  }
  .ctr-lead {
    font-size: 18px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 28px;
    max-width: 760px;
  }
  .ctr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #07bf68;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 6px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.35);
    min-height: 48px;
  }
  .ctr-btn:hover {
    background: #06a85c;
  }
  .ctr-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #07bf68 !important;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 6px;
    border: 2px solid #07bf68;
    min-height: 48px;
  }
  .ctr-review-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 3px solid #07bf68;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    margin: 0 0 22px;
  }
  .ctr-review-card:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }
  .ctr-review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f7f7f7;
    display: block;
    min-height: 180px;
  }
  .ctr-review-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ctr-review-card h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
  }
  .ctr-review-card p {
    margin: 0 0 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
  }
  .ctr-legal {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
  }
  .ctr-legal h2 {
    font-size: 1.35rem;
    margin: 32px 0 10px;
    color: #000;
  }
  .ctr-legal ul {
    padding-left: 1.2rem;
  }
  .ctr-legal li {
    margin: 0 0 8px;
  }
  .ctr-legal a {
    color: #0056b3;
    font-weight: 700;
  }
  .review-footer {
    background: #21262c;
    color: #c8cdd3;
    padding: 48px 16px max(32px, env(safe-area-inset-bottom));
    margin-top: 24px;
  }
  .review-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
  .review-footer h4 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 16px;
  }
  .review-footer p,
  .review-footer a,
  .review-footer li {
    color: #c8cdd3;
    font-size: 14px;
    line-height: 1.6;
  }
  .review-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .review-footer li {
    margin: 0 0 8px;
  }
  .review-footer a {
    text-decoration: none;
  }
  .review-footer a:hover {
    color: #fff;
  }
  .review-footer-logo {
    height: 52px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 16px;
    display: block;
    border-radius: 4px;
  }
  .review-news {
    display: flex;
    gap: 0;
    width: 100%;
  }
  .review-news input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 12px 14px;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    font-family: inherit;
  }
  .review-news button {
    background: #07bf68;
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 0 6px 6px 0;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    min-height: 44px;
  }
  .review-disclaimer {
    max-width: 1140px;
    margin: 40px auto 0;
    font-size: 12px;
    line-height: 1.6;
    color: #9aa3ad;
  }
  @media (min-width: 641px) {
    .ctr-review-card {
      grid-template-columns: 220px minmax(0, 1fr);
    }
  }
  @media (max-width: 900px) {
    .review-footer-inner {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 640px) {
    .review-footer-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .review-logo img {
      height: 50px;
    }
    .ctr-review-card img {
      max-height: 220px;
      object-fit: cover;
    }
    .ctr-lead {
      font-size: 16px;
    }
    .review-header-inner {
      padding: 6px 12px;
      padding-top: max(6px, env(safe-area-inset-top));
    }
    .review-logo img {
      height: 50px;
    }
  }


/* BlogPost.astro */

  .ctr-article {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 16px 72px;
    font-family: Manrope, sans-serif;
    color: #1a1a1a;
    min-width: 0;
  }
  .ctr-article .ctr-page {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .ctr-article [id^="rank-"],
  .ctr-article [id^="product-"] {
    scroll-margin-top: 76px;
  }
  .ctr-article .hide-photo-rank .ctr-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .ctr-article .hide-photo-rank .ctr-img {
    object-fit: cover;
    object-position: center 78%;
    transform: scale(1.22);
    transform-origin: center bottom;
  }
  .ctr-article [data-ranking-list]:not([data-painted]) .ctr-left h3,
  .ctr-article [data-ranking-list]:not([data-painted]) .ctr-feats {
    visibility: hidden;
  }
  .ctr-article .ctr-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 18px;
    max-width: 820px;
  }
  .ctr-article .ctr-lead-last {
    margin-bottom: 28px;
  }
  .ctr-article img {
    max-width: 100%;
    height: auto;
  }
  .ctr-article img.ctr-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .ctr-article h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    text-align: left;
    color: #000;
    letter-spacing: -0.6px;
  }

  .ctr-article .ctr-review-title {
    font-size: clamp(1.6rem, 3.4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #000;
    text-align: left;
    margin: 48px 0 8px;
  }
  .ctr-article .ctr-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 0 8px;
    font-weight: 700;
  }
  .ctr-article .ctr-stars svg {
    display: inline-block;
    flex-shrink: 0;
  }
  .ctr-article .ctr-hero-shot {
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .ctr-article .ctr-demo {
    margin: 8px 0 28px;
    max-width: 640px;
  }
  .ctr-article .ctr-demo-frame {
    overflow: hidden;
    border-radius: 14px;
    background: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .ctr-article .ctr-demo video {
    display: block;
    width: 100%;
    height: auto;
  }
  .ctr-article .ctr-demo figcaption {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }
  .ctr-article .ctr-hero-shot img {
    display: block;
    width: 100%;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .ctr-article .ctr-yellow-banner {
    padding: 12px 14px;
    background-color: #ffd268;
    font-weight: 800;
    font-size: 0.95em;
    text-align: left;
    line-height: 1.35;
    color: #000;
  }
  .ctr-article .ctr-won-card {
    border: 2px solid #2e7d32;
    background-color: #f1f8e9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
  .ctr-article .ctr-won-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #c8e6c9;
    padding-bottom: 10px;
  }
  .ctr-article .ctr-won-head span {
    font-size: 28px;
    margin-right: 10px;
    line-height: 1;
  }
  .ctr-article .ctr-won-head h4 {
    margin: 0;
    color: #1b5e20;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 800;
  }
  .ctr-article .ctr-won-card p {
    margin: 0;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
  }
  .ctr-article .ctr-won-card p + p {
    margin-top: 15px;
  }
  .ctr-article .ctr-mark {
    background-color: #fff176;
    color: #000;
    padding: 2px 6px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #fdd835;
  }
  .ctr-article .ctr-virus {
    color: #d32f2f;
    font-weight: 700;
  }
  .ctr-article .ctr-scrub {
    margin-top: 15px;
    font-size: 19px !important;
    font-weight: 700;
    color: #1b5e20 !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 5px;
  }
  .ctr-article .ctr-review-img {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    border-radius: 0;
  }
  .ctr-article .ctr-hr {
    border: 0;
    border-top: 3px double #ddd;
    margin: 32px 0;
  }
  .ctr-article .ctr-section-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    color: #000;
    text-align: left;
    margin: 0 0 16px;
    line-height: 1.25;
  }
  .ctr-article .ctr-full {
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
  }
  .ctr-article .ctr-quote {
    background-color: #f8f9fa;
    border-left: 5px solid #555;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
  }
  .ctr-article .ctr-quote p {
    margin: 0;
    font-style: italic;
  }
  .ctr-article .ctr-spot {
    background-color: #ffd700;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
    color: #000;
  }
  .ctr-article .ctr-syndrome {
    text-align: center;
    color: #d32f2f;
    font-size: 24px;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .ctr-article .ctr-science {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
  }
  .ctr-article .ctr-science h4 {
    color: #0d47a1;
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
  }
  .ctr-article .ctr-solve {
    color: #2e7d32;
    font-weight: 700;
  }
  .ctr-article .ctr-subhead {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
  }
  .ctr-article .ctr-bad {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  .ctr-article .ctr-bad li {
    background: #fff5f5;
    border-left: 4px solid #ff5252;
    padding: 10px 15px;
    margin-bottom: 10px;
    color: #555;
  }
  .ctr-article .ctr-showed {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
  }
  .ctr-article .ctr-showed li {
    background: #f7faf7;
    border-left: 4px solid #07bf68;
    padding: 12px 16px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.55;
  }
  .ctr-article .ctr-weighting {
    margin: 30px 0;
    padding: 20px;
    background: #fffde7;
    border: 2px dashed #fbc02d;
    border-radius: 8px;
  }
  .ctr-article .ctr-weighting h4 {
    color: #f57f17;
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
  }
  .ctr-article .ctr-sleep {
    margin: 28px 0 32px;
    padding: 20px 18px 18px;
    background: #f7faf8;
    border: 2px solid #c8e6c9;
    border-radius: 16px;
  }
  .ctr-article .ctr-sleep > h4 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.3px;
  }
  .ctr-article .ctr-sleep-photo {
    overflow: hidden;
    border-radius: 12px;
    margin: 0 0 14px;
  }
  .ctr-article .ctr-sleep-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 0;
  }
  .ctr-article .ctr-sleep-lead {
    margin: 0 0 18px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
  }
  .ctr-article .ctr-days {
    list-style: none;
    margin: 0;
    padding: 0 0 0 8px;
    position: relative;
  }
  .ctr-article .ctr-days::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: linear-gradient(#cfd8dc, #07bf68);
    border-radius: 2px;
  }
  .ctr-article .ctr-day {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    margin: 0 0 12px;
  }
  .ctr-article .ctr-day:last-child {
    margin-bottom: 0;
  }
  .ctr-article .ctr-day-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 0 4px #f7faf8;
  }
  .ctr-article .ctr-day-body {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px 14px;
  }
  .ctr-article .ctr-day-label {
    background: transparent;
    color: #111;
    padding: 0;
    min-width: 0;
    margin: 0 0 4px;
    text-align: left;
    font-weight: 800;
    font-size: 15px;
  }
  .ctr-article .ctr-day-body p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
  }
  .ctr-article .ctr-day-win .ctr-day-step {
    background: #07bf68;
  }
  .ctr-article .ctr-day-win .ctr-day-body {
    border-color: #07bf68;
    background: #f1f8e9;
  }
  .ctr-article .ctr-day-win .ctr-day-label {
    background: transparent;
    color: #1b5e20;
  }
  .ctr-article .ctr-day-win .ctr-day-body p {
    color: #1b5e20;
    font-weight: 700;
  }
  @media (min-width: 768px) {
    .ctr-article .ctr-days.is-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      padding: 8px 0 0;
    }
    .ctr-article .ctr-days.is-grid::before {
      display: none;
    }
    .ctr-article .ctr-days.is-grid .ctr-day {
      flex-direction: column;
      align-items: stretch;
      margin: 0;
      height: 100%;
    }
    .ctr-article .ctr-days.is-grid .ctr-day-step {
      margin: 0 auto;
      box-shadow: 0 0 0 4px #f7faf8;
    }
    .ctr-article .ctr-days.is-grid .ctr-day-body {
      height: 100%;
      text-align: center;
      padding: 16px 14px 18px;
    }
    .ctr-article .ctr-days.is-grid .ctr-day-label {
      text-align: center;
      font-size: 16px;
      margin-bottom: 6px;
    }
  }
  .ctr-article .ctr-best-for {
    margin: 16px 0 0;
    padding: 12px 14px;
    background: #fff;
    border-left: 4px solid #07bf68;
    border-radius: 0 10px 10px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
  }
  .ctr-article .ctr-pc {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
  .ctr-article .ctr-pc > div {
    flex: 1 1 100%;
    min-width: 0;
    border-radius: 8px;
    padding: 15px;
  }
  @media (min-width: 640px) {
    .ctr-article .ctr-pc > div {
      flex: 1 1 220px;
    }
  }
  .ctr-article .ctr-pros {
    border: 1px solid #c8e6c9;
    background: #f1f8e9;
  }
  .ctr-article .ctr-cons {
    border: 1px solid #ffcdd2;
    background: #ffebee;
  }
  .ctr-article .ctr-pros h4,
  .ctr-article .ctr-cons h4 {
    margin: 0 0 10px;
    padding-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .ctr-article .ctr-pros h4 {
    color: #2e7d32;
    border-bottom: 1px solid #c8e6c9;
  }
  .ctr-article .ctr-cons h4 {
    color: #c62828;
    border-bottom: 1px solid #ffcdd2;
  }
  .ctr-article .ctr-pc ul {
    padding-left: 20px;
    margin: 0;
  }
  .ctr-article .ctr-pc li {
    margin-bottom: 8px;
  }
  .ctr-article .ctr-update {
    background-color: #f4d1d1;
    padding: 15px;
    border: 4px dashed red;
    margin-bottom: 16px;
  }
  .ctr-article .ctr-update p {
    font-size: 1.1em;
    line-height: 1.3;
    text-align: left;
    color: #000;
    margin: 0;
  }
  .ctr-article .ctr-buy p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0 0 16px;
  }
  .ctr-article .ctr-cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    background: #07bf68;
    color: #fff !important;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    padding: 15px 16px;
    margin-top: 8px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 2px 3px 4px 0 #000;
    line-height: 1.25;
  }
  .ctr-article .ctr-cta-main:hover {
    background: #06a85c;
    color: #fff !important;
  }
  .ctr-article .ctr-cta-main p,
  .ctr-article .ctr-cta-avail p {
    margin: 0;
    color: inherit;
  }
  .ctr-article .ctr-sale-ends {
    padding: 10px;
    font-size: 1.1em;
    text-align: center;
    font-weight: 700;
    margin: 0 0 24px;
  }
  .ctr-article .ctr-sale-ends span {
    color: #e00;
  }
  .ctr-article .ctr-side-card {
    display: block;
    padding: 26px 26px 20px;
    background-image: linear-gradient(#00abab, #003ee1);
    border-radius: 15px;
    color: #fff;
    overflow: hidden;
  }
  .ctr-article .ctr-side-meta {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  .ctr-article .ctr-side-name {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.2;
  }
  .ctr-article .ctr-side-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .ctr-article .ctr-side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    color: #fff;
  }
  .ctr-article .ctr-side-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
  }
  .ctr-article .ctr-side-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #07bf68;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .ctr-article .ctr-cta-avail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    color: #111 !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px;
    margin-top: 4px;
    border-radius: 6px;
    border: 2px solid #07bf68;
    box-sizing: border-box;
  }
  .ctr-article .ctr-limited {
    padding-top: 18px;
    color: #caff0a !important;
    font-weight: 900;
    text-align: center;
    font-size: 1.2em;
    margin: 0 !important;
  }
  .ctr-article .ctr-author {
    background: #fff;
    border: 1px solid #ececec;
    padding: 22px 20px 18px;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
  }
  .ctr-article .ctr-author img,
  .ctr-article .ctr-author-photo {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
    flex-shrink: 0;
    margin: 0 0 14px;
    display: block;
  }
  .ctr-article .ctr-author-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 0 0 12px;
  }
  .ctr-article .ctr-author-stars svg { display: block; }
  .ctr-article .ctr-author-name {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
  }
  .ctr-article .ctr-author-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 10px;
  }
  .ctr-article .ctr-author-chips span,
  .ctr-article .ctr-author-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
  }
  .ctr-article .ctr-author-chips svg { color: #6b7280; flex-shrink: 0; }
  .ctr-article .ctr-author-cert {
    margin: 0 0 16px;
    background: #f3f4f6;
  }
  .ctr-article .ctr-author-bio {
    margin: 0 !important;
    max-width: none;
    width: 100%;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
    background: #f3f4f6;
    border-radius: 14px;
    padding: 14px 16px;
    box-sizing: border-box;
  }
  .ctr-article .ctr-table-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    margin: 0 0 16px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    border: 2px solid #07bf68;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(7, 191, 104, 0.12);
    scrollbar-width: thin;
  }
  .ctr-article .ctr-compare {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 15px;
  }
  @media (min-width: 769px) {
    .ctr-article .ctr-compare {
      min-width: 560px;
      table-layout: auto;
    }
  }
  .ctr-article .ctr-compare th,
  .ctr-article .ctr-compare td {
    border: 1px solid #e5e5e5;
    padding: 13px 12px;
    text-align: left;
    vertical-align: top;
  }
  .ctr-article .ctr-compare th {
    background: #07bf68;
    color: #fff;
    font-weight: 800;
  }
  .ctr-article .ctr-compare th:first-child {
    background: #1a1a1a;
  }
  .ctr-article .ctr-compare-best {
    background: #f1f8e9;
    font-weight: 800;
    color: #1b5e20;
  }
  .ctr-article .ctr-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px;
  }
  .ctr-article .ctr-jump a,
  .ctr-article .ctr-jump-more a {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    min-height: 40px;
    border: 2px solid #07bf68;
  }
  .ctr-article .ctr-jump a {
    background: #07bf68;
    color: #fff;
  }
  .ctr-article .ctr-jump a:hover {
    background: #06a85c;
    border-color: #06a85c;
    color: #fff;
  }
  .ctr-article .ctr-jump-more {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
  }
  .ctr-article .ctr-jump-more a {
    background: #fff;
    color: #1b5e20;
  }
  .ctr-article .ctr-jump-more a:hover {
    background: #07bf68;
    color: #fff;
  }
  .ctr-article .ctr-picks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 8px 0 28px;
  }
  @media (min-width: 640px) {
    .ctr-article .ctr-picks {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    }
  }
  .ctr-article .ctr-related {
    max-width: 760px;
    margin: 8px auto 0;
    padding: 16px 0 0;
    border-top: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
  }
  .ctr-article .ctr-related a {
    color: #07bf68;
    font-weight: 800;
    text-decoration: none;
  }
  .ctr-article .ctr-related a:hover {
    text-decoration: underline;
  }
  .ctr-article .ctr-pick-card {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px 16px 14px;
    background: #fff;
  }
  .ctr-article .ctr-pick-card.is-top {
    border-color: #07bf68;
    background: #f1f8e9;
    box-shadow: 0 6px 16px rgba(7, 191, 104, 0.14);
  }
  .ctr-article .ctr-pick-card b {
    display: block;
    margin-bottom: 6px;
    color: #07bf68;
    font-size: 0.95em;
  }
  .ctr-article .ctr-pick-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
  }
  .ctr-article .ctr-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: #07bf68;
    color: #fff !important;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    padding: 12px 18px;
    min-height: 64px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    width: calc(100% - 24px);
    max-width: min(720px, calc(100vw - 24px));
    margin: 0 auto;
    box-sizing: border-box;
  }
  .ctr-article .ctr-sticky-cta:hover {
    background: #06a85c;
    color: #fff !important;
  }
  .ctr-article .ctr-sticky-cta,
  .essay-sticky {
    overflow: hidden;
    isolation: isolate;
    animation: cv-sticky-glow 3.4s ease-in-out infinite;
  }
  .ctr-article .ctr-sticky-cta::after,
  .essay-sticky::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: translateX(-160%);
    animation: cv-sticky-shine 3.6s ease-in-out infinite;
    pointer-events: none;
  }
  .cv-sticky-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1em;
    letter-spacing: -0.02em;
  }
  .cv-sticky-sub {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    color: #ffef9a;
    min-height: 1.2em;
  }
  @keyframes cv-sticky-glow {
    0%, 100% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(7, 191, 104, 0.2); }
    50% { box-shadow: 0 12px 32px rgba(7, 191, 104, 0.4), 0 0 0 5px rgba(7, 191, 104, 0.1); }
  }
  @keyframes cv-sticky-shine {
    0% { transform: translateX(-160%); }
    50%, 100% { transform: translateX(280%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ctr-article .ctr-sticky-cta,
    .essay-sticky,
    .ctr-article .ctr-sticky-cta::after,
    .essay-sticky::after {
      animation: none;
    }
  }
  .ctr-article .ctr-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 8px 0 24px;
  }
  @media (min-width: 769px) {
    .ctr-article .ctr-highlights {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .ctr-article .ctr-highlights > div {
    border: 2px solid #07bf68;
    background: #f1f8e9;
    border-radius: 12px;
    padding: 16px;
  }
  .ctr-article .ctr-highlights h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1b5e20;
  }
  .ctr-article .ctr-highlights p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
  }
  .ctr-article .ctr-best-tag {
    display: inline-block;
    background: #07bf68;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0 0 8px;
  }
  .ctr-article .ctr-choice-banner {
    background: #07bf68;
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin: 0 0 16px;
    font-size: 1.15em;
  }
  .ctr-article .ctr-choice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 1.05em;
    line-height: 1.7;
  }
  .ctr-article .ctr-choice-score {
    text-align: center;
    font-weight: 800;
    font-size: 1.2em;
    margin: 0 0 20px;
  }
  .ctr-article .ctr-full ul {
    padding-left: 1.2rem;
    margin: 0 0 18px;
  }
  .ctr-article .ctr-full li {
    margin: 0 0 10px;
  }
  .ctr-article .ctr-faq {
    max-width: 760px;
    margin: 0 auto 40px;
  }
  .ctr-article .ctr-faq details {
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 12px;
    margin: 0 0 10px;
    padding: 0;
  }
  .ctr-article .ctr-faq details[open] {
    border-color: #07bf68;
  }
  .ctr-article .ctr-faq details:hover {
    border-color: #07bf68;
  }
  .ctr-article .ctr-faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 18px;
    list-style: none;
  }
  .ctr-article .ctr-faq summary::-webkit-details-marker {
    display: none;
  }
  .ctr-article .ctr-faq details p {
    margin: 0;
    padding: 0 18px 16px;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .ctr-article {
      padding: 20px 14px 92px;
    }
    .ctr-article .ctr-lead {
      font-size: 16px;
    }
    .ctr-article .ctr-won-card p,
    .ctr-article .ctr-full {
      font-size: 16px;
    }
    .ctr-article .ctr-won-head h4 {
      font-size: 15px;
    }
    .ctr-article .ctr-syndrome {
      font-size: 18px;
    }
    .ctr-article .ctr-hero-shot img {
      aspect-ratio: 16 / 9;
    }
    .ctr-article .ctr-picks {
      grid-template-columns: 1fr;
    }
    .ctr-article .ctr-highlights {
      grid-template-columns: 1fr;
    }
    .ctr-article .ctr-sticky-cta {
      font-size: 15px;
      padding: 11px 12px;
      min-height: 58px;
      line-height: 1.25;
    }
    .cv-sticky-sub { font-size: 12px; }
    .ctr-article .ctr-cta-main {
      font-size: 17px;
    }
    .ctr-article .ctr-jump a,
    .ctr-article .ctr-jump-more a {
      font-size: 13px;
      padding: 7px 12px;
    }
    .ctr-article .ctr-compare {
      min-width: 0;
      table-layout: fixed;
      font-size: 12px;
      line-height: 1.35;
    }
    .ctr-article .ctr-compare th,
    .ctr-article .ctr-compare td {
      padding: 8px 5px;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .ctr-article .ctr-compare th:first-child,
    .ctr-article .ctr-compare td:first-child {
      width: 23%;
      font-weight: 700;
    }
  }


/* EssayLayout.astro */

  .essay-progress {
    position: sticky;
    top: 0;
    z-index: 39;
    height: 4px;
    background: #e8e8e8;
  }
  .essay-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #07bf68;
  }
  .essay {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px 96px;
    font-family: Manrope, sans-serif;
    color: #1a1a1a;
    counter-reset: essay-h;
  }
  .essay-head {
    margin: 0 0 8px;
  }
  .essay-kicker {
    display: inline-block;
    margin: 0 0 12px;
    background: #ffd268;
    color: #000;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .essay h1 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 4.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
    color: #000;
  }
  .essay-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
  }
  .essay-toc {
    display: none;
  }
  .essay-toc-label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #07bf68;
  }
  .essay-toc a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 8px;
    margin: 0 -8px;
    border-radius: 6px;
    color: #1b5e20;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
  }
  .essay-toc .essay-toc-num {
    flex-shrink: 0;
    min-width: 1.8em;
    color: #07bf68;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
  }
  .essay-toc .essay-toc-text {
    min-width: 0;
    flex: 1;
  }
  .essay-toc a:hover,
  .essay-toc a.is-active {
    background: #fff;
    color: #000;
  }
  .essay-body {
    min-width: 0;
  }
  .essay .essay-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 22px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9;
    background: #f7f7f7;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
  .essay .lede {
    margin: 0 0 8px;
    padding: 16px 18px;
    background: #f7faf8;
    border-left: 4px solid #07bf68;
    border-radius: 0 10px 10px 0;
    font-size: 18px;
    line-height: 1.65;
    color: #222;
  }
  .essay h2 {
    margin: 40px 0 14px;
    padding-top: 8px;
    border-top: 2px solid #f0f0f0;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.28;
    color: #000;
    scroll-margin-top: 84px;
    counter-increment: essay-h;
  }
  .essay h2::before {
    content: counter(essay-h, decimal-leading-zero);
    display: inline-block;
    margin-right: 10px;
    color: #07bf68;
    font-size: 0.88em;
  }
  .essay p {
    margin: 0 0 16px;
    color: #333;
    font-size: 17px;
    line-height: 1.7;
  }
  .essay p strong {
    font-weight: 800;
    color: #111;
  }
  .essay .essay-figure {
    margin: 6px 0 26px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    background: #fff;
  }
  .essay .essay-figure img {
    display: block;
    width: 100%;
    height: auto;
    background: #f7f7f7;
  }
  .essay .essay-cap {
    margin: 0 !important;
    padding: 10px 12px;
    background: #f7f7f7;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #666 !important;
    font-weight: 600;
  }
  .essay .essay-rules {
    margin: 4px 0 20px;
    padding: 0;
    list-style: none;
  }
  .essay .essay-rules li {
    position: relative;
    margin: 0 0 10px;
    padding: 13px 14px 13px 42px;
    background: #f1f8e9;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    color: #1b5e20;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
  }
  .essay .essay-rules li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 13px;
    color: #07bf68;
    font-weight: 800;
  }
  .essay .essay-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0 28px;
    padding: 14px 22px;
    background: #07bf68;
    color: #fff !important;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.35);
    min-height: 48px;
  }
  .essay .essay-cta:hover {
    background: #06a85c;
  }
  .essay .essay-offer {
    display: block;
    margin: 8px 0 32px;
    border: 3px solid #07bf68;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 10px 28px rgba(7, 191, 104, 0.22);
  }
  .essay .essay-offer:hover {
    box-shadow: 0 14px 32px rgba(7, 191, 104, 0.32);
  }
  .essay .essay-offer-sale {
    background: #ffd268;
    color: #111;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 10px 12px;
  }
  .essay .essay-offer-body {
    display: grid;
    gap: 16px;
    padding: 16px;
  }
  .essay .essay-offer-photo {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
  }
  .essay .essay-offer-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }
  .essay .essay-offer-kicker {
    margin: 0 0 4px !important;
    color: #07bf68 !important;
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .essay .essay-offer h3 {
    margin: 0 0 4px;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #000;
    line-height: 1.2;
  }
  .essay .essay-offer-name {
    margin: 0 0 2px !important;
    font-size: 16px !important;
    font-weight: 700;
    color: #222 !important;
  }
  .essay .essay-offer-score {
    margin: 0 0 10px !important;
    font-size: 15px !important;
    font-weight: 800;
    color: #c47b00 !important;
  }
  .essay .essay-offer ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
  }
  .essay .essay-offer li {
    position: relative;
    margin: 0 0 6px;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
  }
  .essay .essay-offer li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #07bf68;
    font-weight: 800;
  }
  .essay .essay-offer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 18px;
    background: #07bf68;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 0 #058a4c;
  }
  .essay .essay-offer:hover .essay-offer-btn {
    background: #06a85c;
  }
  .essay .essay-offer em {
    display: block;
    margin: 8px 0 0;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-align: center;
  }
  .essay hr {
    border: 0;
    border-top: 2px solid #eee;
    margin: 28px 0;
  }
  .essay .essay-faq {
    display: grid;
    gap: 10px;
    margin: 4px 0 8px;
  }
  .essay .essay-faq p {
    margin: 0;
    padding: 16px 18px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    border-left: 4px solid #07bf68;
    font-size: 16px;
  }
  .essay .essay-faq strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
    color: #000;
  }
  .essay .essay-author {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    align-items: center;
    padding: 16px 22px 18px;
    background: #f2f2f2;
    border-radius: 12px;
    margin: 8px 0 0;
  }
  .essay .essay-author img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .essay .essay-author-label {
    display: block;
    font-size: 13px;
    color: #505050;
    margin-bottom: 2px;
  }
  .essay .essay-author-name {
    font-weight: 800;
    color: #000;
    margin-right: 8px;
  }
  .essay .essay-author-role {
    color: #07bf68;
    font-size: 14px;
    font-weight: 700;
  }
  .essay .essay-author p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
  }
  .essay-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 68px;
    padding: 12px 18px;
    background: #07bf68;
    color: #fff !important;
    font-weight: 800;
    font-size: 16px;
    flex-direction: column;
    gap: 3px;
    letter-spacing: -0.01em;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(7, 191, 104, 0.45), 0 4px 14px rgba(0, 0, 0, 0.22);
    width: calc(100% - 24px);
    max-width: min(720px, calc(100vw - 24px));
    margin: 0 auto;
    box-sizing: border-box;
  }
  .essay-sticky b {
    background: #ffd268;
    color: #111;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 6px;
  }
  .essay-sticky:hover {
    background: #06a85c;
  }
  @media (min-width: 960px) {
    .essay {
      max-width: 1100px;
      display: grid;
      grid-template-columns: 230px minmax(0, 760px);
      column-gap: 40px;
      row-gap: 0;
      padding: 32px 16px 108px;
      align-items: start;
    }
    .essay-head {
      grid-column: 1 / -1;
      max-width: 760px;
      margin: 0 0 8px;
    }
    .essay-toc {
      display: flex;
      flex-direction: column;
      gap: 2px;
      grid-column: 1;
      grid-row: 2;
      position: sticky;
      top: 88px;
      margin: 8px 0 0;
      padding: 16px 14px;
      align-self: start;
      height: fit-content;
      background: #f1f8e9;
      border: 2px solid #07bf68;
      border-radius: 10px;
    }
    .essay-body {
      grid-column: 2;
      grid-row: 2;
    }
    .essay .essay-offer-body {
      grid-template-columns: 200px minmax(0, 1fr);
      align-items: center;
      padding: 18px;
    }
    .essay h2 {
      border-top: 0;
      padding-top: 0;
    }
  }
  @media (max-width: 639px) {
    .essay {
      padding-bottom: 96px;
    }
    .essay .essay-hero {
      width: calc(100% + 32px);
      max-width: none;
      margin-left: -16px;
      margin-right: -16px;
      border-radius: 0;
      box-shadow: none;
    }
    .essay .lede {
      font-size: 16px;
      padding: 14px 14px;
    }
    .essay h2 {
      font-size: 1.22rem;
    }
    .essay p {
      font-size: 16px;
    }
    .essay .essay-author {
      flex-direction: column;
      text-align: center;
    }
    .essay .essay-cta {
      font-size: 16px;
    }
    .essay-sticky {
      font-size: 16px;
      min-height: 56px;
    }
  }


/* ProductListing.astro */

  .ctr-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    border: 3px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 0 0 45px;
    background: #fff;
    font-family: Manrope, sans-serif;
  }
  .ctr-card.is-best {
    border-color: #07bf68;
    box-shadow: 0 6px 20px rgba(7, 191, 104, 0.22);
  }
  .ctr-card:hover {
    transform: scale(1.01);
  }
  @media (hover: none) {
    .ctr-card:hover {
      transform: none;
    }
  }
  .ctr-left {
    position: relative;
    flex: 1 1 240px;
    min-width: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .ctr-pick {
    position: absolute;
    top: 0;
    left: 0;
    background: #07bf68;
    color: #fff;
    font-weight: 800;
    margin-top: -1px;
    font-size: 1.05em;
    padding: 8px 20px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    line-height: 1.4;
    z-index: 1;
    letter-spacing: 0.02em;
  }
  .ctr-img-wrap {
    position: relative;
    width: calc(100% - 24px);
    aspect-ratio: 1;
    max-width: 320px;
    margin: 44px 12px 8px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
  }
  .ctr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ctr-left h3 {
    text-align: center;
    font-size: 1.25em;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-weight: 800;
  }
  .ctr-mid {
    flex: 2 1 400px;
    min-width: 0;
    background: #fff;
    padding: 5px 25px 16px;
  }
  .ctr-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 8px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 4px;
  }
  .ctr-rating-label {
    font-weight: 700;
    font-size: 1em;
    color: #888;
  }
  .ctr-stars {
    display: flex;
    margin-top: -4px;
  }
  .ctr-stars.sm {
    justify-content: center;
    margin: 0;
  }
  .ctr-grade {
    color: #4caf50;
    font-weight: 700;
    font-size: 1.8em;
    letter-spacing: -0.7px;
  }
  .ctr-feats {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
  }
  .ctr-feats li,
  .ctr-feats li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 11px;
    font-size: 16px;
    line-height: 1.35;
    color: #1a1a1a;
  }
  .ctr-check,
  .ctr-x,
  .ctr-check,
  .ctr-x {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ctr-check svg,
  .ctr-x svg,
  .ctr-check svg,
  .ctr-x svg {
    display: block;
  }
  .ctr-check,
  .ctr-check {
    background: #07bf68;
  }
  .ctr-x,
  .ctr-x {
    background: #fe2f2f;
  }
  .ctr-right {
    flex: 1 1 220px;
    min-width: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ctr-score-label {
    font-weight: 700;
    font-size: 14px;
  }
  .ctr-score {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1;
  }
  .ctr-users {
    margin-top: 12px;
    color: #888;
    font-size: 0.9em;
    line-height: 1.3;
  }
  .ctr-sale {
    width: 100%;
    margin: 13px 0 0;
    text-align: center;
    background-image: linear-gradient(to bottom, #ff4800, #e14e4e);
    color: #fff;
    font-size: 0.9em;
    border-radius: 5px;
    padding: 11px;
    line-height: 21px;
  }
  .ctr-sale strong {
    font-size: 1.15em;
    text-shadow: 0.04em 0.05em 2px rgba(0, 0, 0, 0.42);
  }
  .ctr-card .ctr-buy {
    background-color: #02b04f;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 30px;
    margin-top: 10px;
    font-weight: 800;
    width: 80%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    box-sizing: border-box;
    box-shadow: 0 4px 0 #018a3e;
  }
  .ctr-card:hover .ctr-buy {
    background-color: #07bf68;
  }
  .ctr-article div.ctr-buy {
    display: block;
    width: 100%;
    max-width: 100%;
    background: none;
    color: inherit;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
    min-height: 0;
  }
  @media (max-width: 900px) {
    .ctr-card {
      flex-direction: column;
      flex-wrap: nowrap;
    }
    .ctr-left,
    .ctr-mid,
    .ctr-right {
      flex: 0 0 auto;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }
    .ctr-left {
      order: 1;
    }
    .ctr-right {
      order: 2;
      padding: 20px 16px;
    }
    .ctr-mid {
      order: 3;
      padding: 8px 16px 18px;
    }
    .ctr-img-wrap {
      max-width: 280px;
      width: calc(100% - 32px);
      margin-top: 48px;
      margin-left: auto;
      margin-right: auto;
    }
    .ctr-left h3 {
      font-size: 1.35em;
    }
    .ctr-stars svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }
    .ctr-grade {
      font-size: 1.4em;
    }
    .ctr-score {
      font-size: 3.2em;
    }
    .ctr-card .ctr-buy {
      width: 100%;
      max-width: 320px;
    }
    .ctr-feats li {
      font-size: 15px;
      gap: 12px;
      margin-bottom: 12px;
    }
    .ctr-check,
    .ctr-x {
      width: 26px;
      height: 26px;
    }
  }


/* [...page].astro */

  .rev {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 16px 48px;
    font-family: Manrope, sans-serif;
  }
  .rev-head {
    margin: 0 0 20px;
  }
  .rev-kicker {
    display: inline-block;
    margin: 0 0 10px;
    background: #ffd268;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 4px;
  }
  .rev h1 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: #111;
  }
  .rev-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #555;
  }
  .rev-hero {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    min-height: 280px;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
  }
  .rev-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rev-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 20%,
      rgba(0, 0, 0, 0.78) 100%
    );
  }
  .rev-hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    padding: 22px 18px 20px;
  }
  .rev-hero-copy span {
    display: inline-block;
    align-self: flex-start;
    margin: 0 0 8px;
    background: #ffd268;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .rev-hero-copy h2 {
    margin: 0 0 8px;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.3px;
  }
  .rev-hero-copy p {
    display: none;
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
  }
  .rev-hero-copy em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    padding: 0 16px;
    background: #07bf68;
    color: #fff;
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
  }
  .rev-more {
    margin: 28px 0 0;
  }
  .rev-more-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #07bf68;
  }
  .rev-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rev-row {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    min-height: 88px;
  }
  .rev-row:hover {
    border-color: #07bf68;
  }
  .rev-thumb {
    position: relative;
    width: 108px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
  }
  .rev-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .rev-row-copy span {
    display: block;
    margin: 0 0 4px;
    color: #07bf68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .rev-row-copy h2 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
  }
  .rev-row-copy p {
    display: none;
  }
  .rev-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
    font-weight: 700;
    color: #555;
  }
  .rev-pager a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    border: 2px solid #07bf68;
    border-radius: 8px;
    color: #1b5e20;
    text-decoration: none;
    font-weight: 800;
  }
  .rev-pager a.is-next,
  .rev-pager a:hover {
    background: #07bf68;
    color: #fff;
  }
  @media (min-width: 720px) {
    .rev {
      padding: 36px 20px 72px;
    }
    .rev h1 {
      font-size: 2.35rem;
    }
    .rev-lead {
      max-width: 560px;
      font-size: 17px;
    }
    .rev-hero {
      min-height: 420px;
    }
    .rev-hero-copy {
      min-height: 420px;
      padding: 36px 32px;
    }
    .rev-hero-copy h2 {
      max-width: 18ch;
      font-size: 2rem;
    }
    .rev-hero-copy p {
      display: block;
      max-width: 46ch;
    }
    .rev-list {
      gap: 14px;
    }
    .rev-row {
      grid-template-columns: 200px minmax(0, 1fr);
      gap: 18px;
      padding: 12px;
    }
    .rev-thumb {
      width: 200px;
      height: 120px;
    }
    .rev-row-copy h2 {
      font-size: 1.2rem;
    }
    .rev-row-copy p {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin: 6px 0 0;
      font-size: 14px;
      line-height: 1.45;
      color: #555;
    }
  }


/* contact.astro */

  .ctr-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
    margin-top: 24px;
  }
  .ctr-contact label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
  }
  .ctr-contact input,
  .ctr-contact textarea {
    font: inherit;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    width: 100%;
  }
  .ctr-contact input:focus,
  .ctr-contact textarea:focus {
    outline: none;
    border-color: #07bf68;
  }
  .ctr-contact .ctr-btn {
    border: 0;
    cursor: pointer;
    width: fit-content;
  }

.flex { display:flex; }
.flex-wrap { flex-wrap:wrap; }
.items-center { align-items:center; }
.justify-between { justify-content:space-between; }
.gap-2 { gap:8px; }
.mb-6 { margin-bottom:24px; }
.text-sm { font-size:14px; }
.font-medium { font-weight:500; }
.text-\[\#07bf68\], .text-green { color:#07bf68; }
.text-gray-500 { color:#6b7280; }
.text-gray-500:hover, .hover\:text-gray-800:hover { color:#1f2937; }
.inline-flex { display:inline-flex; }
.min-h-11 { min-height:44px; }
.w-4 { width:16px; } .h-4 { height:16px; }
.w-5 { width:20px; } .h-5 { height:20px; }
.shrink-0 { flex-shrink:0; }
.rounded-full { border-radius:999px; }
.border { border:1px solid #9ca3af; }
.text-\[10px\] { font-size:10px; }
.font-bold { font-weight:700; }
.font-extrabold { font-weight:800; }
.text-2xl { font-size:1.5rem; }
.sm\:text-3xl { font-size:1.5rem; }
@media (min-width: 640px) {
  .sm\:text-3xl { font-size:1.875rem; }
}
.mt-2 { margin-top:8px; }
.mb-4 { margin-bottom:16px; }
.mt-12 { margin-top:48px; }
.mb-10 { margin-bottom:40px; }
.text-center { text-align:center; }
.text-3xl { font-size:1.875rem; }

.cv-home { color:#1a1a1a; }
.cv-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 16px 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .cv-hero { padding: 56px 16px 64px; }
}
.cv-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cv-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
}
.cv-blob-a {
  top: 18%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(7, 191, 104, 0.15);
}
.cv-blob-b {
  bottom: 16%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: rgba(255, 210, 104, 0.4);
}
@media (min-width: 640px) {
  .cv-blob-a, .cv-blob-b { width: 420px; height: 420px; filter: blur(110px); }
}
.cv-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.cv-hero-content { animation: cvFadeUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
@keyframes cvFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.cv-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffd268;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(7, 191, 104, 0.3);
}
.cv-hero h1 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.cv-hero h1 span { color: #07bf68; }
.cv-hero p {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.7);
}
@media (min-width: 640px) {
  .cv-hero h1 { font-size: 3rem; }
  .cv-hero p { font-size: 1.25rem; }
  .cv-badge { margin-bottom: 24px; }
}
@media (min-width: 768px) {
  .cv-hero h1 { font-size: 4.5rem; }
}
.cv-benefits { padding: 56px 0; }
@media (min-width: 768px) {
  .cv-benefits { padding: 80px 0; }
}
.cv-benefits-head {
  max-width: 48rem;
  margin: 0 auto 40px;
  padding: 0 16px;
  text-align: center;
}
.cv-benefits-head h2 { margin: 0 0 16px; font-size: 1.5rem; font-weight: 800; }
.cv-benefits-head p { margin: 0; color: #6b7280; }
@media (min-width: 640px) {
  .cv-benefits-head h2 { font-size: 1.875rem; }
  .cv-benefits-head { margin-bottom: 64px; }
}
.cv-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .cv-features { gap: 24px; padding: 0 24px; }
}
@media (min-width: 768px) {
  .cv-features { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cv-features { grid-template-columns: 1fr 1fr 1fr; }
}
.cv-feature {
  padding: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
}
.cv-feature:hover { border-color: #07bf68; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); }
.cv-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #07bf68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
}
.cv-feature-icon svg { width: 24px; height: 24px; display: block; }
.cv-feature h3 { margin: 0 0 8px; font-size: 1.125rem; font-weight: 800; }
.cv-feature:hover h3 { color: #07bf68; }
.cv-feature p { margin: 0; color: #6b7280; line-height: 1.65; }
@media (min-width: 640px) {
  .cv-feature { padding: 32px; }
  .cv-feature-icon { width: 56px; height: 56px; margin-bottom: 24px; }
  .cv-feature h3 { font-size: 1.25rem; }
}
.cv-stats {
  padding: 56px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #f7f7f7;
}
@media (min-width: 768px) {
  .cv-stats { padding: 80px 24px; }
}
.cv-stats-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .cv-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.cv-stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #07bf68;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.cv-stat-label { color: #6b7280; font-weight: 600; }
@media (min-width: 640px) {
  .cv-stat-value { font-size: 2.25rem; }
}
@media (min-width: 768px) {
  .cv-stat-value { font-size: 3rem; }
}
.cv-quotes { padding: 64px 0 80px; overflow: hidden; }
@media (min-width: 768px) {
  .cv-quotes { padding: 80px 0; }
}
.cv-quotes h2 {
  margin: 0 0 40px;
  padding: 0 16px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.cv-quotes h2 span { color: #07bf68; }
@media (min-width: 640px) {
  .cv-quotes h2 { font-size: 1.875rem; margin-bottom: 48px; }
}
.cv-quotes-mask { overflow: hidden; }
.cv-quotes-track { display: flex; gap: 32px; width: max-content; }
.cv-quotes-track.is-moving { animation: cvMarquee 60s linear infinite; }
.cv-quotes:hover .cv-quotes-track.is-moving { animation-play-state: paused; }
@keyframes cvMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cv-quote {
  width: 350px;
  flex-shrink: 0;
  padding: 32px;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
}
.cv-quote p { margin: 0 0 24px; font-size: 1.125rem; line-height: 1.65; }
.cv-quote-who { display: flex; align-items: center; gap: 16px; }
.cv-quote-av {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #07bf68;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-quote-who strong { display: block; font-size: 14px; }
.cv-quote-who span { display: block; font-size: 12px; color: #6b7280; }
.cv-faq { padding: 56px 16px 80px; }
@media (min-width: 768px) {
  .cv-faq { padding: 80px 24px; }
}
.cv-faq-inner { max-width: 48rem; margin: 0 auto; }
.cv-faq-head { text-align: center; margin: 0 0 32px; }
.cv-faq-head h2 { margin: 0 0 12px; font-size: 1.5rem; font-weight: 800; }
.cv-faq-head p { margin: 0; color: #6b7280; }
@media (min-width: 640px) {
  .cv-faq-head h2 { font-size: 1.875rem; }
}
@media (min-width: 768px) {
  .cv-faq-head h2 { font-size: 2.25rem; margin-bottom: 16px; }
  .cv-faq-head { margin-bottom: 48px; }
}
.cv-faq details {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 12px;
  margin: 0 0 12px;
}
.cv-faq details[open],
.cv-faq details:hover { border-color: #07bf68; }
.cv-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  font-weight: 600;
}
.cv-faq summary::-webkit-details-marker { display: none; }
.cv-faq summary svg { color: #07bf68; flex-shrink: 0; }
.cv-faq details[open] summary svg { transform: rotate(180deg); }
.cv-faq details[open] summary ~ div { animation: cvFaqIn 0.3s ease-out; }
.cv-faq details > div {
  padding: 0 16px 20px;
  color: #6b7280;
  line-height: 1.65;
}
@keyframes cvFaqIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cv-cta { max-width: 64rem; margin: 32px auto 16px; padding: 0 16px; }
.cv-cta-box {
  padding: 32px 24px;
  border-radius: 16px;
  background: #07bf68;
  color: #fff;
  text-align: center;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.25);
}
.cv-cta-box h2 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cv-cta-box h2 span { color: #ffd268; }
.cv-cta-box p { margin: 0 auto; max-width: 32rem; color: rgba(255, 255, 255, 0.9); }
@media (min-width: 640px) {
  .cv-cta { padding: 0 24px; }
  .cv-cta-box { padding: 48px; }
  .cv-cta-box h2 { font-size: 2.25rem; }
}

html {
  overflow-x: clip;
}
html, body {
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
}
.ctr-card,
.ctr-left,
.ctr-mid,
.ctr-right,
.ctr-page,
.review-main,
.review-footer-inner {
  min-width: 0;
  max-width: 100%;
}
.ctr-article {
  min-width: 0;
  width: 100%;
  max-width: 1100px;
}
.essay {
  min-width: 0;
}

@media (max-width: 900px) {
  .review-landing {
    overflow-x: clip;
  }
  .ctr-article {
    padding: 16px 14px 72px;
  }
  .ctr-article h1 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    letter-spacing: -0.4px;
  }
  .ctr-article .ctr-hero-shot {
    margin: 0 -14px 22px;
    width: auto;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
  .ctr-article .ctr-hero-shot img {
    border-radius: 0;
    width: 100%;
  }
  .ctr-article .ctr-yellow-banner {
    font-size: 0.86em;
    padding: 10px 12px;
  }
  .ctr-card {
    margin-bottom: 22px;
    transform: none !important;
  }
  .ctr-article .ctr-sticky-cta,
  .essay-sticky {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
  }
  .ctr-article .ctr-cta-main,
  .ctr-article .ctr-cta-avail {
    font-size: 16px;
    padding: 14px 12px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .essay {
    padding: 16px 16px 108px;
  }
}

@media (max-width: 768px) {
  .review-header-inner {
    min-height: 64px;
    padding: 8px 12px;
    padding-top: max(8px, env(safe-area-inset-top));
  }
  .review-logo img {
    height: 44px;
    max-width: min(240px, 72vw);
  }
  .ctr-jump a,
  .ctr-jump-more a {
    font-size: 12px;
    padding: 7px 10px;
    min-height: 36px;
  }
  .ctr-article .ctr-table-wrap {
    margin-left: -14px;
    margin-right: -14px;
    width: auto;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .ctr-author {
    padding: 24px 16px;
  }
  .essay h1 {
    font-size: 1.45rem;
  }
  .review-news {
    flex-wrap: nowrap;
  }
  .review-news input,
  .review-news button {
    font-size: 16px;
  }
}

.cv-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
}
.cv-popup[hidden] { display: none !important; }
.cv-popup-open { overflow: hidden; }
.cv-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 32, 0.45);
}
.cv-popup-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.cv-popup-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  background: #07bf68;
  color: #fff;
  padding: 14px 44px 14px 16px;
  border-radius: 18px 18px 0 0;
}
.cv-popup-head p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
}
.cv-popup-head svg,
.cv-popup-head .cv-popup-timer {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.cv-popup-x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.cv-popup-body {
  padding: 18px 22px 24px;
  text-align: center;
}
.cv-popup-body img {
  display: block;
  width: min(280px, 72%);
  height: auto;
  margin: 8px auto 10px;
  object-fit: contain;
}
.cv-popup-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  color: #1d3f8a;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 26px;
  text-transform: uppercase;
}
.cv-popup-body h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}
.cv-popup-body p {
  margin: 0 auto 12px;
  max-width: 22rem;
  color: #222;
  font-size: 16px;
  line-height: 1.45;
}
.cv-urge {
  margin: 0 0 16px;
  padding: 12px 12px 10px;
  background: #fff6f4;
  border: 1px solid #f3c7bf;
  border-radius: 12px;
  text-align: left;
}
.cv-urge-stock {
  margin: 0 0 8px !important;
  max-width: none !important;
  color: #b42318 !important;
  font-size: 15px !important;
  font-weight: 800;
}
.cv-urge-stock strong {
  font-size: 1.15em;
}
.cv-urge-bar {
  height: 8px;
  background: #f8d7d2;
  border-radius: 99px;
  overflow: hidden;
}
.cv-urge-bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: #e11d48;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.cv-urge.is-low .cv-urge-bar i {
  animation: cv-urge-pulse 1.1s ease-in-out infinite;
}
.cv-urge-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 0 !important;
  max-width: none !important;
  color: #5c3a36 !important;
  font-size: 12px !important;
  font-weight: 700;
}
.cv-urge-row b {
  font-variant-numeric: tabular-nums;
}
@keyframes cv-urge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.cv-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: #f5a623;
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 3px 0 #d48912;
}
.cv-popup-btn:hover { background: #f0b43a; }

.cv-proof {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  left: auto;
  bottom: max(108px, calc(92px + env(safe-area-inset-bottom)));
  z-index: 55;
  width: min(280px, calc(100vw - 32px));
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cv-proof.is-on {
  pointer-events: auto;
  opacity: 0.8;
  transform: translateY(0);
}
.cv-proof[hidden] { display: none !important; }
.cv-proof-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px 8px 8px;
  background: #fff;
  border: 1px solid #e6ebe8;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(17, 24, 32, 0.12);
  text-decoration: none;
  color: inherit;
}
.cv-proof.is-low .cv-proof-card {
  border-color: #f3c7bf;
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.14);
}
.cv-proof-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #f4f7f5;
  border-radius: 8px;
  flex-shrink: 0;
}
.cv-proof-copy { min-width: 0; }
.cv-proof-who,
.cv-proof-what,
.cv-proof-when {
  margin: 0;
  line-height: 1.22;
}
.cv-proof-who {
  font-weight: 800;
  font-size: 13px;
  color: #111;
}
.cv-proof-what {
  margin-top: 1px;
  font-size: 12px;
  color: #333;
  overflow-wrap: anywhere;
}
.cv-proof-when {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  font-size: 11px;
  color: #667;
}
.cv-proof-left {
  color: #b42318;
  font-weight: 800;
}
.cv-proof-x {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #88a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .cv-proof {
    bottom: max(24px, env(safe-area-inset-bottom));
  }
}
@media (prefers-reduced-motion: reduce) {
  .cv-proof { transition: none; }
}

.ctr-article.is-cc [id] {
  scroll-margin-top: 96px;
}
.ctr-article.is-cc .ctr-page > p {
  font-size: 17px;
  line-height: 1.7;
  color: #2c2c2c;
}
.ctr-article.is-cc h2 {
  letter-spacing: -0.02em;
}
.ctr-article.is-cc .ctr-hero-shot img {
  aspect-ratio: 1360 / 740;
  object-fit: cover;
  object-position: center 30%;
}
.ctr-article.is-cc .cc-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0 0 14px;
  border-bottom: 1px solid #ececec;
}
.ctr-article.is-cc .cc-toc a {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
}
.ctr-article.is-cc .cc-toc a:hover {
  color: #1f7a45;
  border-color: #1f7a45;
}
.ctr-article.is-cc .cc-disclose {
  background: #eef5ff;
  color: #1e3a5f;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
}
.ctr-article.is-cc .cc-skip {
  text-align: center;
  margin: 8px 0 20px;
}
.ctr-article.is-cc .cc-skip a {
  color: #15803d;
  font-weight: 800;
  text-decoration: none;
}
.ctr-article.is-cc .cc-labbox {
  background: #fff;
  border-left: 4px solid #16a34a;
  border-radius: 0 12px 12px 0;
  padding: 16px 18px 8px;
  margin: 0 0 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.ctr-article.is-cc .cc-labbox h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #15803d;
}
.ctr-article.is-cc .cc-labbox ul,
.ctr-article.is-cc .cc-lab {
  margin: 12px 0 8px;
  padding: 0;
  list-style: none;
  counter-reset: lab;
}
.ctr-article.is-cc .cc-lab li {
  counter-increment: lab;
  position: relative;
  padding-left: 2.4rem;
  margin: 0 0 12px;
  line-height: 1.55;
  color: #333;
}
.ctr-article.is-cc .cc-lab li::before {
  content: counter(lab, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1f7a45;
}
.ctr-article.is-cc .cc-table-card {
  background: #fff;
  border-radius: 16px;
  padding: 8px 8px 22px;
  margin: 0 0 28px;
  box-shadow: 0 8px 28px rgba(17,24,39,.06);
}
.ctr-article.is-cc .cc-table-card h2 {
  margin: 8px 12px 12px;
  font-size: 22px;
}
.ctr-article.is-cc .cc-table-wrap {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
}
.ctr-article.is-cc .cc-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}
.ctr-article.is-cc .cc-table th {
  background: #f3f6f4;
  color: #334;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 12px 10px;
  text-align: left;
  border: 0;
}
.ctr-article.is-cc .cc-table td {
  padding: 14px 10px;
  border-top: 1px solid #eee;
  vertical-align: middle;
  background: #fff;
}
.ctr-article.is-cc .cc-table tr.is-win td {
  background: #ecfdf3;
  font-weight: 700;
}
.ctr-article.is-cc .cc-table tr.is-win td:first-child {
  box-shadow: inset 4px 0 0 #07bf68;
}
.ctr-article.is-cc .cc-table td.ok { color: #15803d; font-weight: 700; }
.ctr-article.is-cc .cc-table td.bad { color: #b42318; font-weight: 700; }
.ctr-article.is-cc .cc-table a { color: #15803d; font-weight: 700; }
.ctr-article.is-cc .cc-table a.cc-amz { color: #c2410c; }
.ctr-article.is-cc .cc-rank {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-right: 4px;
}
.ctr-article.is-cc .cc-rank.is-2 { background: #94a3b8; }
.ctr-article.is-cc .cc-rank.is-3 { background: #cbd5e1; color: #334; }
.ctr-article.is-cc .cc-rank.is-4,
.ctr-article.is-cc .cc-rank.is-5 { background: #e5e7eb; color: #555; }
.ctr-article.is-cc .cc-note {
  font-size: 12px;
  color: #667;
  margin: 8px 12px 16px;
}
.ctr-article.is-cc .cc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 24px);
  max-width: 420px;
  margin: 0 auto;
  background: #b42318;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 8px;
}
.ctr-article.is-cc .cc-btn:hover { filter: brightness(1.05); }
.ctr-article.is-cc .cc-winner {
  position: relative;
  border: 3px solid #07bf68;
  border-radius: 18px;
  padding: 22px 18px 18px;
  margin: 8px 0 36px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 191, 104, 0.12);
  overflow: hidden;
}
.ctr-article.is-cc .cc-winner-badge {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #07bf68;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 11px 20px 11px 16px;
  border-radius: 16px 0 18px 0;
  border: 0;
  box-shadow: none;
  line-height: 1;
}
.ctr-article.is-cc .cc-winner-badge svg,
.ctr-article.is-cc .cc-winner-badge .cc-trophy {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.ctr-article.is-cc .cc-winner-badge::before { content: none; }
.ctr-article.is-cc .cc-winner-grid {
  display: grid;
  gap: 20px;
}
.ctr-article.is-cc .cc-winner-kicker {
  margin: 0 0 4px;
  color: #07bf68;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .ctr-article.is-cc .cc-winner-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
  }
}
.ctr-article.is-cc .cc-winner-photo img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.06);
}
.ctr-article.is-cc .cc-winner-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.ctr-article.is-cc .cc-winner h2 {
  margin: 0 0 8px;
  font-size: 28px;
}
.ctr-article.is-cc .cc-winner h2 a { color: inherit; text-decoration: none; }
.ctr-article.is-cc .cc-scorebox { text-align: right; flex-shrink: 0; min-width: 132px; }
.ctr-article.is-cc .cc-score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #07bf68;
}
.ctr-article.is-cc .cc-score-lab {
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 800;
  color: #888;
}
.ctr-article.is-cc .cc-scorebox p {
  margin: 4px 0 6px;
  font-size: 12px;
  color: #667;
}
.ctr-article.is-cc .cc-choice {
  display: inline-block;
  background: #07bf68;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
.ctr-article.is-cc .cc-winner .cc-btn {
  width: 100%;
  max-width: none;
  margin-top: 10px;
  min-height: 52px;
  font-size: 17px;
}
.ctr-article.is-cc .cc-pros,
.ctr-article.is-cc .cc-cons {
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0;
}
.ctr-article.is-cc .cc-pros { background: #f7fbf8; }
.ctr-article.is-cc .cc-cons { background: #fff5f5; }
.ctr-article.is-cc .cc-pros h3 { color: #15803d; margin: 0 0 8px; font-size: 12px; letter-spacing: .08em; }
.ctr-article.is-cc .cc-cons h3 { color: #b42318; margin: 0 0 8px; font-size: 12px; letter-spacing: .08em; }
.ctr-article.is-cc .cc-pros ul,
.ctr-article.is-cc .cc-cons ul { margin: 0; padding: 0; list-style: none; }
.ctr-article.is-cc .cc-pros li,
.ctr-article.is-cc .cc-cons li {
  position: relative;
  padding-left: 18px;
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.45;
}
.ctr-article.is-cc .cc-pros li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 800; }
.ctr-article.is-cc .cc-cons li::before { content: "×"; position: absolute; left: 0; color: #b42318; font-weight: 800; }
.ctr-article.is-cc .cc-full { margin: 0 0 32px; }
.ctr-article.is-cc .cc-full h3,
.ctr-article.is-cc .cc-full h2 { margin: 0 0 12px; }
.ctr-article.is-cc .cc-full h4 { margin: 18px 0 8px; }
.ctr-article.is-cc .cc-owners { margin: 4px 0 24px; }
.ctr-article.is-cc .cc-owners-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "a b c d"
    "e t t f"
    "g h i j";
  gap: 6px;
}
.ctr-article.is-cc .cc-owners-mosaic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 10px;
  display: block;
  background: #eef1f4;
}
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(1) { grid-area: a; object-position: center 18%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(2) { grid-area: b; object-position: center 14%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(3) { grid-area: c; object-position: center 34%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(4) { grid-area: d; object-position: center 10%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(5) { grid-area: e; object-position: center 8%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(7) { grid-area: f; object-position: center 16%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(8) { grid-area: g; object-position: center 6%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(9) { grid-area: h; object-position: center 10%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(10) { grid-area: i; object-position: center 8%; }
.ctr-article.is-cc .cc-owners-mosaic img:nth-child(11) { grid-area: j; object-position: center 14%; }
.ctr-article.is-cc .cc-owners-copy {
  grid-area: t;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #111;
  padding: 4px 8px;
}
@media (max-width: 640px) {
  .ctr-article.is-cc .cc-owners-mosaic { gap: 5px; }
  .ctr-article.is-cc .cc-owners-copy { font-size: 0.92rem; padding: 4px; }
}
.ctr-article.is-cc img.cc-fig {
  width: 100%;
  border-radius: 12px;
  margin: 8px 0 16px;
}
.ctr-article.is-cc .cc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 18px;
}
@media (min-width: 768px) {
  .ctr-article.is-cc .cc-stats { grid-template-columns: repeat(4, 1fr); }
}
.ctr-article.is-cc .cc-stats > div {
  background: #f7fbf8;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.ctr-article.is-cc .cc-stats b {
  display: block;
  font-size: 22px;
  color: #15803d;
}
.ctr-article.is-cc .cc-stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #555;
  line-height: 1.35;
}
.ctr-article.is-cc .cc-quote-fig {
  display: flex;
  gap: 14px;
  margin: 20px 0 8px;
  padding: 14px 16px 14px 14px;
  background: #f7f8f7;
  border-radius: 12px;
  border-left: 3px solid #1f7a45;
  align-items: flex-start;
}
.ctr-article.is-cc .cc-quote-fig img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
}
.ctr-article.is-cc .cc-quote-fig blockquote { margin: 0; }
.ctr-article.is-cc .cc-quote-fig p {
  margin: 0 0 8px;
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: #222;
}
.ctr-article.is-cc .cc-quote-fig figcaption {
  font-size: 13px;
  color: #667;
  font-weight: 600;
}
.ctr-article.is-cc .cc-deal { list-style: none; padding: 0; }
.ctr-article.is-cc .cc-deal li { margin: 0 0 6px; font-weight: 600; padding-left: 0; }
.ctr-article.is-cc .cc-deal li::before { content: none; }
.ctr-article.is-cc .cc-warn {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  counter-reset: warn;
}
.ctr-article.is-cc .cc-warn li {
  counter-increment: warn;
  position: relative;
  margin: 0;
  padding: 14px 0 14px 44px;
  border-top: 1px solid #ececec;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
}
.ctr-article.is-cc .cc-warn li::before {
  content: counter(warn);
  position: absolute;
  left: 0;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctr-article.is-cc .cc-runner {
  display: grid;
  gap: 16px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .ctr-article.is-cc .cc-runner {
    grid-template-columns: 160px minmax(0, 1fr);
  }
}
.ctr-article.is-cc .cc-runner-photo img {
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  background: #f3f4f6;
}
.ctr-article.is-cc .cc-runner h2 { margin: 0 0 6px; font-size: 20px; color: #333; }
.ctr-article.is-cc .cc-runner-badge {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.ctr-article.is-cc .cc-mini-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  font-weight: 800;
}
.ctr-article.is-cc .cc-mini-score span { font-weight: 600; color: #667; font-size: 13px; }
.ctr-article.is-cc .cc-pc {
  display: grid;
  gap: 8px;
  margin: 10px 0 14px;
}
@media (min-width: 640px) {
  .ctr-article.is-cc .cc-pc { grid-template-columns: 1fr 1fr; }
}
.ctr-article.is-cc .cc-pc ul { margin: 0; padding-left: 18px; }
.ctr-article.is-cc .cc-pc .ok { color: #166534; }
.ctr-article.is-cc .cc-pc .bad { color: #9f1239; }
.ctr-article.is-cc .cc-reality {
  background: #fff7ed;
  border-left: 4px solid #ea580c;
  padding: 10px 12px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 14px;
}
.ctr-article.is-cc .cc-reality h4 { margin: 0 0 6px; }
.ctr-article.is-cc .cc-reality p { margin: 0; }
.ctr-article.is-cc .cc-runner .cc-btn {
  width: 100%;
  max-width: none;
  background: #fff;
  color: #1f2937 !important;
  border: 1px solid #d1d5db;
  font-size: 15px;
  min-height: 44px;
  padding: 10px 14px;
}
.ctr-article.is-cc .cc-runner .cc-btn:hover { filter: none; background: #f3f4f6; }
.ctr-article.is-cc .cc-others {
  margin: 8px 0 28px;
  padding: 16px;
  background: #fafafa;
  border-radius: 16px;
}
.ctr-article.is-cc .cc-others h2 { margin: 0 0 14px; }
.ctr-article.is-cc .cc-other {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  align-items: center;
}
@media (min-width: 640px) {
  .ctr-article.is-cc .cc-other { grid-template-columns: 120px minmax(0, 1fr); }
}
.ctr-article.is-cc .cc-other img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1;
}
.ctr-article.is-cc .cc-other h3 { margin: 0 0 6px; }
.ctr-article.is-cc .cc-other p { margin: 0; }
.ctr-article.is-cc .cc-winner-compact { padding-top: 28px; }
.ctr-article.is-cc .cc-endpick {
  text-align: center;
  padding: 20px 16px;
  border: 2px solid #16a34a;
  border-radius: 16px;
  margin: 24px 0 8px;
}
.ctr-article.is-cc .cc-endpick h3 { margin: 0 0 6px; }
.ctr-article.is-cc .cc-endpick-img {
  width: min(280px, 100%);
  margin: 12px auto;
  display: block;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .ctr-article.is-cc .cc-btn { width: 100%; }
  .ctr-article.is-cc .cc-score { font-size: 28px; }
}

/* SEO fork: nav, crumbs, related, hub — no popup/sticky */
.seo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 650;
}
.seo-nav a {
  color: #1a1a1a;
  text-decoration: none;
}
.seo-nav a[aria-current="page"] {
  color: #067a44;
}
.seo-crumbs {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 16px 0;
  font-size: 13px;
}
.seo-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #555;
}
.seo-crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #bbb;
}
.seo-crumbs a { color: #067a44; }
.seo-related {
  margin: 36px 0 8px;
  padding: 20px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}
.seo-related h2 { margin: 0 0 12px; font-size: 20px; }
.seo-related ul { margin: 0; padding: 0; list-style: none; }
.seo-related li { margin: 0 0 12px; }
.seo-related li:last-child { margin: 0; }
.seo-related a { font-weight: 700; color: #067a44; }
.seo-related p { margin: 4px 0 0; color: #555; font-size: 14px; }
.seo-home .seo-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-top: 20px;
}
.seo-text-link { font-weight: 700; color: #067a44; }
.seo-hubs, .seo-guides-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 16px 8px;
}
.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.seo-hub-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.seo-hub-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.seo-hub-card span, .seo-hub-card h3, .seo-hub-card p {
  display: block;
  padding: 0 14px;
}
.seo-hub-card span { padding-top: 12px; font-size: 12px; font-weight: 700; color: #067a44; }
.seo-hub-card h3 { margin: 4px 0 6px; font-size: 18px; }
.seo-hub-card p { padding-bottom: 16px; margin: 0; color: #555; font-size: 14px; }
.seo-guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.seo-guide-list a { font-weight: 800; color: #111; }
.seo-guide-list p { margin: 4px 0 0; color: #555; }
@media (max-width: 900px) {
  .seo-hub-grid { grid-template-columns: 1fr; }
  .review-header-inner { flex-wrap: wrap; }
  .seo-nav { width: 100%; justify-content: flex-start; }
}
.essay .ctr-table-wrap {
  overflow-x: auto;
  margin: 8px 0 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.essay table.ctr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.essay table.ctr-table th,
.essay table.ctr-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.essay table.ctr-table thead th { background: #f7f7f7; }

