/* ========== READ PROGRESS ========== */
.read-progress { position: fixed; top: 78px; left: 0; right: 0; height: 3px; background: var(--teal-soft); z-index: 99; }
.read-progress-bar { height: 100%; background: linear-gradient(90deg, var(--coral), var(--yellow)); width: 0%; transition: width .15s; }

/* ========== BREADCRUMB ========== */
.crumb-bar { background: var(--teal-bg); border-bottom: 1px solid var(--line-lt); padding: 12px 0; font-size: 12px; }
.crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--ink-mid); }
.crumb a { color: var(--teal); font-weight: 700; }
.crumb a:hover { text-decoration: underline; }
.crumb-sep { color: var(--ink-vlt); }
.crumb-current { color: var(--ink); font-weight: 700; }

/* ========== ARTICLE HEAD ========== */
.art-head { padding: 40px 0 0; }
.art-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.art-tag-cat { background: var(--coral); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; padding: 3px 12px; border-radius: var(--r-sm); }
.art-tag-sub { background: var(--teal-soft); color: var(--teal); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-sm); }
.art-tag-best { background: var(--yellow); color: var(--teal-dk); font-size: 11px; font-weight: 900; padding: 3px 10px; border-radius: var(--r-sm); display: inline-flex; align-items: center; gap: 4px; }
.art-tag-best::before { content: '★'; }
.art-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; line-height: 1.35; letter-spacing: .005em; color: var(--ink); margin-bottom: 16px; max-width: 920px; }
.art-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.art-meta-dates { display: flex; gap: 14px; font-size: 11.5px; color: var(--ink-mid); flex-wrap: wrap; }
.art-meta-dates span { display: inline-flex; align-items: center; gap: 5px; }

/* ========== HERO IMAGE ========== */
.art-hero-img { aspect-ratio: 16/9; border-radius: var(--r-lg); margin-bottom: 32px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: var(--teal-bg); }
.art-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.art-hero-img-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--teal-bg), var(--teal-soft)); display: flex; align-items: center; justify-content: center; }
.art-hero-img-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(143,160,168,.18) 12px, rgba(143,160,168,.18) 13px); }

/* ========== LAYOUT 3col ========== */
.art-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr) 280px; gap: 40px; }
.art-side-l, .art-side-r { position: relative; }
.art-side-sticky { position: sticky; top: 100px; }

/* ========== TOC ========== */
.toc-card { background: var(--teal-bg); border-radius: var(--r-md); padding: 18px 16px; }
.toc-card-title { font-size: 11px; font-weight: 900; letter-spacing: .15em; color: var(--teal-dk); margin-bottom: 12px; font-family: var(--font-display); text-transform: uppercase; padding-bottom: 8px; border-bottom: 1.5px solid var(--teal-soft); display: flex; align-items: center; gap: 6px; }
.toc-list { display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: flex; gap: 8px; font-size: 12px; line-height: 1.5; padding: 6px 4px; color: var(--ink-mid); border-radius: 4px; transition: all .2s; }
.toc-list a:hover, .toc-list a.active { background: #fff; color: var(--teal); font-weight: 700; }
.toc-list a::before { content: attr(data-num); font-family: var(--font-display); font-weight: 900; color: var(--coral); flex-shrink: 0; font-size: 10px; padding-top: 2px; }

/* ========== ARTICLE BODY ========== */
.art-body { font-size: 15px; line-height: 1.95; color: var(--ink); }
.art-body p { margin-bottom: 22px; }
.art-body p > strong, .art-body p > b { color: var(--coral-dk); font-weight: 800; background: linear-gradient(transparent 65%, var(--yellow-lt) 65%); padding: 0 2px; }
.art-lead { font-size: 17px; line-height: 1.95; color: var(--ink); padding: 22px 26px; background: var(--teal-bg); border-left: 4px solid var(--teal); border-radius: 0 var(--r-md) var(--r-md) 0; margin-bottom: 36px; }
.art-body h2 { font-size: 24px; font-weight: 900; color: var(--ink); margin: 56px 0 22px; padding: 12px 18px; background: var(--teal-soft); border-left: 6px solid var(--teal); border-radius: 0 var(--r-md) var(--r-md) 0; line-height: 1.45; scroll-margin-top: 100px; position: relative; }
.art-body h2::before { content: attr(data-num); position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--teal); opacity: .15; line-height: 1; }
.art-body h3 { font-size: 18px; font-weight: 900; color: var(--ink); margin: 38px 0 14px; padding-left: 14px; border-left: 4px solid var(--coral); line-height: 1.5; scroll-margin-top: 100px; }
.art-body ul { list-style: none; margin: 0 0 22px; padding: 0; }
.art-body ul li { position: relative; padding: 4px 0 4px 22px; }
.art-body ul li::before { content: ''; position: absolute; left: 4px; top: 14px; width: 8px; height: 8px; background: var(--coral); border-radius: 2px; transform: rotate(45deg); }
.art-body ol { padding-left: 22px; margin-bottom: 22px; }
.art-body ol li { padding: 4px 0; }
.art-body ol li::marker { color: var(--teal); font-weight: 900; font-family: var(--font-display); }

/* ========== VERDICT / SCORE CARD ========== */
.verdict { background: linear-gradient(180deg, #FFFBEC 0%, #fff 50%); border: 1.5px solid var(--yellow); border-radius: var(--r-lg); padding: 28px 28px 24px; margin-bottom: 40px; position: relative; }
.verdict-tag { position: absolute; top: -14px; left: 24px; background: var(--yellow); color: var(--teal-dk); padding: 5px 16px; border-radius: var(--r-pill); font-size: 11px; font-weight: 900; letter-spacing: .12em; display: inline-flex; align-items: center; gap: 6px; box-shadow: var(--shadow-sm); }
.verdict-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral-dk); }
.verdict-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding-bottom: 22px; border-bottom: 1px dashed var(--line); margin-bottom: 22px; }
.verdict-h-text h2 { font-size: 17px; font-weight: 900; color: var(--ink); margin-bottom: 4px; line-height: 1.4; background: none; border: none; padding: 0; margin-top: 0; }
.verdict-h-text p { font-size: 12.5px; color: var(--ink-mid); line-height: 1.7; }
.verdict-score { text-align: center; flex-shrink: 0; }
.verdict-score-num { font-family: var(--font-display); font-size: 56px; font-weight: 900; color: var(--coral-dk); line-height: 1; }
.verdict-score-num small { font-size: 16px; color: var(--ink-lt); font-weight: 700; }
.verdict-score-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; }
.verdict-score-label { font-size: 10px; letter-spacing: .15em; color: var(--ink-lt); margin-top: 4px; font-family: var(--font-display); font-weight: 700; }
.verdict-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.vbar { text-align: center; }
.vbar-label { font-size: 11.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.vbar-track { height: 6px; background: var(--line-lt); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.vbar-fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--coral-dk)); border-radius: 3px; }
.vbar-value { font-family: var(--font-display); font-size: 13px; font-weight: 900; color: var(--coral-dk); }
.vbar-value small { font-size: 10px; color: var(--ink-lt); font-weight: 700; }

/* ========== GOOD / BAD ========== */
.gb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 36px 0; }
.gb-card { border-radius: var(--r-md); padding: 20px 22px 22px; border: 1px solid; }
.gb-card.good { background: var(--good-bg); border-color: #B5D9C6; }
.gb-card.bad { background: var(--bad-bg); border-color: #EFC4BF; }
.gb-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1.5px dashed; }
.gb-card.good .gb-card-head { border-color: #B5D9C6; }
.gb-card.bad .gb-card-head { border-color: #EFC4BF; }
.gb-card-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 14px; }
.gb-card.good .gb-card-icon { background: var(--good); }
.gb-card.bad .gb-card-icon { background: var(--bad); }
.gb-card-title { font-size: 14px; font-weight: 900; color: var(--ink); }
.gb-list { list-style: none; padding: 0; margin: 0; }
.gb-list li { font-size: 13px; line-height: 1.7; padding: 7px 0 7px 22px; position: relative; }
.gb-list li + li { border-top: 1px dashed; }
.gb-card.good .gb-list li + li { border-color: #C3DECF; }
.gb-card.bad .gb-list li + li { border-color: #ECCAC5; }
.gb-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 14px; height: 14px; border-radius: 50%; }
.gb-card.good .gb-list li::before { background: var(--good); }
.gb-card.bad .gb-list li::before { background: var(--bad); }

/* ========== CALLOUT ========== */
.callout { background: var(--coral-soft); border-left: 4px solid var(--coral-dk); padding: 18px 22px; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 28px 0; display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.callout-mark { width: 36px; height: 36px; border-radius: 50%; background: var(--coral-dk); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; }
.callout-title { font-size: 13px; font-weight: 900; color: var(--coral-dk); margin-bottom: 4px; letter-spacing: .03em; }
.callout p { font-size: 13.5px; line-height: 1.85; color: var(--ink); margin: 0; }
.callout.tip { background: var(--teal-bg); border-color: var(--teal); }
.callout.tip .callout-mark { background: var(--teal); }
.callout.tip .callout-title { color: var(--teal); }

/* ========== SPEC TABLE ========== */
.spec-wrap { margin: 32px 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.spec-wrap-head { background: var(--teal); color: #fff; padding: 14px 22px; display: flex; align-items: center; gap: 10px; }
.spec-wrap-head h4 { font-size: 14px; font-weight: 900; }
.spec-tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.spec-tbl tr { border-bottom: 1px solid var(--line-lt); }
.spec-tbl tr:last-child { border: 0; }
.spec-tbl th { background: var(--teal-bg); color: var(--ink); font-weight: 800; padding: 12px 22px; text-align: left; width: 30%; font-size: 12.5px; vertical-align: top; }
.spec-tbl td { padding: 12px 22px; color: var(--ink-mid); vertical-align: top; }

/* ========== PRICE COMPARE BOX ========== */
.price-box { background: linear-gradient(180deg, #fff 0%, var(--teal-bg) 100%); border: 1.5px solid var(--teal-soft); border-radius: var(--r-lg); padding: 28px; margin: 40px 0; }
.price-box-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.price-box-title { font-size: 17px; font-weight: 900; color: var(--ink); }
.price-box-title small { display: block; font-family: var(--font-display); font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: .15em; margin-bottom: 4px; text-transform: uppercase; }
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-row { display: grid; grid-template-columns: 100px 1fr auto auto; align-items: center; gap: 16px; background: #fff; padding: 14px 18px; border-radius: var(--r-md); border: 1px solid var(--line); transition: box-shadow .2s; }
.price-row:hover { box-shadow: var(--shadow-md); }
.price-store { font-size: 12px; font-weight: 900; color: var(--ink); letter-spacing: .03em; }
.price-store small { display: block; font-size: 9.5px; color: var(--ink-lt); font-family: var(--font-display); letter-spacing: .15em; margin-top: 2px; font-weight: 700; }
.price-val { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--coral-dk); line-height: 1; text-align: right; }
.price-val small { font-size: 10px; color: var(--ink-lt); font-weight: 700; display: block; margin-top: 2px; }
.price-cta { display: inline-flex; align-items: center; gap: 5px; background: var(--coral-dk); color: #fff; padding: 10px 18px; border-radius: var(--r-sm); font-size: 12px; font-weight: 800; transition: background .2s; white-space: nowrap; }
.price-cta:hover { background: #B86A5E; }
.price-cta.teal { background: var(--teal); }
.price-cta.teal:hover { background: var(--teal-dk); }

/* ========== RIGHT SIDEBAR ========== */
.r-side-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; margin-bottom: 16px; }
.r-side-title { font-size: 12px; font-weight: 900; color: var(--ink); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--teal-soft); position: relative; display: flex; align-items: center; gap: 6px; }
.r-side-title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 28px; height: 2px; background: var(--teal); }
.r-side-title small { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: .15em; color: var(--ink-lt); margin-left: auto; text-transform: uppercase; }
.r-product-card { display: flex; flex-direction: column; gap: 10px; }
.r-product-thumb { aspect-ratio: 4/3; background: var(--teal-bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.r-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.r-product-name { font-size: 13px; font-weight: 900; color: var(--ink); line-height: 1.45; }
.r-product-score { display: flex; align-items: baseline; gap: 6px; }
.r-product-score-n { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--coral-dk); line-height: 1; }
.r-product-stars { color: var(--yellow); font-size: 12px; letter-spacing: 1px; }
.r-product-cta { display: flex; align-items: center; justify-content: center; gap: 4px; background: var(--coral-dk); color: #fff; padding: 9px; border-radius: var(--r-sm); font-size: 11.5px; font-weight: 800; }
.r-product-cta:hover { background: #B86A5E; }

/* ========== RIGHT SIDEBAR: 購入ボタン2種 ========== */
.r-buy-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.r-buy-btn { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 12px; border-radius: var(--r-sm); font-size: 11.5px; font-weight: 800; text-align: center; transition: opacity .2s; }
.r-buy-btn:hover { opacity: .85; }
.r-buy-amazon  { background: var(--coral-dk); color: #fff; }
.r-buy-rakuten { background: var(--teal);    color: #fff; }

/* ========== FAQ ========== */
.faq-section { padding: 40px 0 24px; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; font-size: 14px; font-weight: 800; color: var(--ink); }
.faq-q-mark { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 900; flex-shrink: 0; }
.faq-q-text { flex: 1; }
.faq-q-icon { width: 20px; height: 20px; color: var(--teal); transition: transform .25s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px 64px; font-size: 13px; color: var(--ink-mid); line-height: 1.85; display: none; }
.faq-item.open .faq-a { display: block; }

/* ========== INLINE CTA（本文内アフィリエイトリンク） ========== */
.art-body .art-cta-inline { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }

/* ========== ARTICLE BODY: 自動ボタン化（Amazon・楽天リンク） ========== */
/* content フィールドに埋め込まれた既存リンクをクラスなしでボタン化 */
.art-body a[href*="amazon.co.jp"],
.art-body a[href*="hb.afl.rakuten.co.jp"] {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  margin: 6px 6px 6px 0;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.art-body a[href*="amazon.co.jp"]:hover,
.art-body a[href*="hb.afl.rakuten.co.jp"]:hover { opacity: .85; transform: translateY(-1px); }
.art-body a[href*="amazon.co.jp"]            { background: #FF9900; }
.art-body a[href*="hb.afl.rakuten.co.jp"]    { background: #BF0000; }

.mini-toc li { padding: 6px 0; border-bottom: 1px dashed var(--line-lt); font-size: 11.5px; }
.mini-toc li:last-child { border: 0; }
.mini-toc a { color: var(--ink-mid); display: flex; gap: 6px; }
.mini-toc a:hover { color: var(--teal); }
.mini-toc a::before { content: '›'; color: var(--teal); font-weight: 900; }

/* ========== END CTA ========== */
.end-cta { background: linear-gradient(135deg, var(--teal-dk), var(--teal)); color: #fff; border-radius: var(--r-lg); padding: 36px; margin: 48px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; position: relative; overflow: hidden; }
.end-cta::before { content: ''; position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px; border-radius: 50%; background: var(--yellow); opacity: .12; }
.end-cta h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; line-height: 1.4; position: relative; background: none; border: none; padding: 0; }
.end-cta p { font-size: 13px; line-height: 1.8; opacity: .9; max-width: 480px; position: relative; }
.end-cta-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow); color: var(--teal-dk); padding: 14px 28px; border-radius: var(--r-pill); font-size: 14px; font-weight: 900; position: relative; transition: background .2s, transform .15s; white-space: nowrap; }
.end-cta-btn:hover { background: var(--yellow-dk); transform: translateY(-1px); }
.end-cta-btn::after { content: '→'; }

/* ========== RELATED ARTICLES ========== */
.related-section { background: var(--teal-bg); padding: 56px 0; margin-top: 56px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rel-thumb { aspect-ratio: 16/9; background: var(--teal-soft); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rel-thumb::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(143,160,168,.18) 8px, rgba(143,160,168,.18) 9px); }
.rel-body { padding: 14px 16px 16px; }
.rel-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-lt); margin-bottom: 6px; }
.rel-meta-cat { font-weight: 800; color: var(--teal); }
.rel-title { font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.5; }
.rel-card:hover .rel-title { color: var(--teal); }

/* グリッドアイテムの最小幅を0に（テーブル等によるサイドバー落ち防止） */
.art-layout > main, .art-layout > aside { min-width: 0; }

/* 記事本文内の幅超過対策 */
.art-body { overflow-wrap: break-word; word-break: break-word; }
.art-body table { display: block; overflow-x: auto; max-width: 100%; }
.art-body pre, .art-body code { overflow-x: auto; max-width: 100%; white-space: pre-wrap; }
.art-body img { max-width: 100%; height: auto; }
.table-wrapper { overflow-x: auto; max-width: 100%; }

/* ========== PRODUCT CARD（ランキング記事本文内製品カード）========== */
.product-card {
  background: #fff;
  border: 1px solid var(--line-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  overflow: hidden;
}
.product-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--teal-bg);
  border-bottom: 1px solid var(--line-lt);
}
.product-card-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  background: none;
  border: none;
  padding: 0;
  color: var(--ink);
}
.product-card-rank {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}
.product-card:nth-child(1) .product-card-rank { background: linear-gradient(135deg,#C9A84C,#E8C96A); }
.product-card:nth-child(2) .product-card-rank { background: linear-gradient(135deg,#7E8F97,#A8B8C0); }
.product-card:nth-child(3) .product-card-rank { background: linear-gradient(135deg,#A0673A,#C08050); }
.product-card-body { padding: 18px 20px; }
.product-card-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  margin: 0 0 16px;
  font-size: 13.5px;
  border: 1px solid var(--line-lt);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.product-card-specs dt,
.product-card-specs dd {
  padding: 8px 14px;
  border-bottom: 1px solid var(--line-lt);
  margin: 0;
}
.product-card-specs dt {
  background: var(--teal-bg);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.product-card-specs dd { color: var(--ink-mid); }
.product-card-specs dt:last-of-type,
.product-card-specs dd:last-child { border-bottom: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .art-layout { grid-template-columns: 1fr 280px; gap: 32px; }
  .art-side-l { display: none; }
}
@media (max-width: 880px) {
  .art-layout { grid-template-columns: 1fr; }
  .art-side-r { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .verdict-bars { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gb-grid { grid-template-columns: 1fr; }
  .end-cta { grid-template-columns: 1fr; text-align: center; }
  .end-cta-btn { justify-self: center; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
  .verdict-bars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .price-row { grid-template-columns: 1fr; }
  .price-val { text-align: left; }
  .price-cta { width: 100%; justify-content: center; }
  .spec-tbl th, .spec-tbl td { padding: 10px 14px; }
}
