/*
================================================================================
BUYERBENCH BLOCKS — CENTRALISED STYLES
================================================================================
All block styles using CSS variables from buyerbench-variables.css.
This file must be loaded AFTER buyerbench-variables.css.

Last updated: April 2026
================================================================================
*/


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE BLOCKS
═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   BLOCK: Editorial Hero (Homepage)
───────────────────────────────────────────────────────────── */
.bb-hero {
  position: relative;
  background: var(--bb-white);
  margin: -20px -20px 0 -20px;
  padding: 48px 24px 56px;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.bb-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  padding: 7px 14px;
  border: 1px solid var(--bb-blue-alpha-25);
  border-radius: var(--bb-radius-pill);
  background: var(--bb-blue-alpha-06);
  margin-bottom: 20px;
}
.bb-hero-eyebrow::before { display: none; }
.bb-hero h1 {
  font-family: var(--bb-font-heading);
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 900;
  color: var(--bb-navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 0;
  margin-bottom: 16px;
}
.bb-hero h1 .bb-hero-accent {
  color: var(--bb-amber);
  font-style: italic;
  font-family: var(--bb-font-body);
  font-weight: 500;
}
.bb-hero-sub {
  font-family: var(--bb-font-body);
  font-size: 18px;
  color: var(--bb-text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 24px;
}
.bb-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bb-amber);
  color: var(--bb-navy-dark);
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--bb-shadow-cta);
  transition: transform var(--bb-transition), box-shadow var(--bb-transition), color var(--bb-transition);
}
.bb-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--bb-shadow-cta-hover);
  color: var(--bb-text-white);
}
.bb-hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--bb-transition);
}
.bb-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bb-navy);
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--bb-border);
  transition: background var(--bb-transition), border-color var(--bb-transition);
}
.bb-hero-ghost:hover {
  background: var(--bb-bg);
  border-color: var(--bb-border-mid);
}
.bb-hero-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bb-border-light);
  flex-wrap: wrap;
}
.bb-hero-meta-item {
  font-family: var(--bb-font-heading);
  font-size: 12px;
  color: var(--bb-text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.bb-hero-meta-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--bb-navy);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 0;
}
@media(max-width:640px) {
  .bb-hero { padding: 40px 20px 48px; }
  .bb-hero-meta { gap: 24px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Promise Strip (Homepage)
───────────────────────────────────────────────────────────── */
.bb-promise {
  background: var(--bb-white);
  border-bottom: 1px solid var(--bb-border-light);
  margin: 0 -20px;
  padding: 36px 24px;
}
.bb-promise-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.bb-promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bb-promise-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--bb-bg), var(--bb-blue-wash));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bb-border);
}
.bb-promise-icon svg {
  width: 20px;
  height: 20px;
  color: var(--bb-blue);
}
.bb-promise-text {
  font-family: var(--bb-font-heading);
  font-size: 13px;
  color: var(--bb-text-mid);
  line-height: 1.5;
}
.bb-promise-text strong {
  display: block;
  color: var(--bb-navy);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 2px;
}
@media(max-width:860px) {
  .bb-promise-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media(max-width:480px) {
  .bb-promise-inner { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Categories Grid (Homepage)
───────────────────────────────────────────────────────────── */
.bb-cats {
  padding: 56px 0 64px;
}
.bb-cats-header {
  text-align: center;
  margin-bottom: 36px;
}
.bb-cats-heading {
  max-width: 600px;
  margin: 0 auto;
}
.bb-cats-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 10px;
  justify-content: center;
}
.bb-cats-label::before,
.bb-cats-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-cats-heading h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(28px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 12px;
}
.bb-cats-heading p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.7;
}
.bb-cats-rule {
  height: 2px;
  background: var(--bb-gradient-rule);
  margin: 0 auto 40px;
  max-width: 80px;
}
.bb-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bb-cat {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--bb-transition-smooth), box-shadow var(--bb-transition-smooth), border-color var(--bb-transition-smooth);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.bb-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-card-hover);
  border-color: var(--bb-border-mid);
}
.bb-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bb-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--bb-radius-md);
  background: var(--bb-gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-cat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bb-amber);
}
.bb-cat-tag {
  font-family: var(--bb-font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bb-amber-dark);
  background: var(--bb-amber-light);
  padding: 5px 11px;
  border-radius: var(--bb-radius-pill);
  border: 1px solid var(--bb-amber-dark-alpha);
}
.bb-cat h3 {
  font-family: var(--bb-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bb-cat p {
  font-family: var(--bb-font-body);
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.65;
  flex: 1;
}
.bb-cat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--bb-border-light);
  margin-top: 16px;
}
.bb-cat-link {
  font-family: var(--bb-font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--bb-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bb-cat-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--bb-transition-smooth);
}
.bb-cat:hover .bb-cat-link svg {
  transform: translateX(4px);
}
.bb-cat-count {
  font-family: var(--bb-font-heading);
  font-size: 11px;
  color: var(--bb-text-light);
  font-weight: 600;
}
@media(max-width:860px) {
  .bb-cats-grid { grid-template-columns: 1fr; gap: 18px; }
  .bb-cat { min-height: auto; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Promise Block (Focus over Breadth)
───────────────────────────────────────────────────────────── */
.bb-promise-block {
  position: relative;
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 20px 20px;
  margin: 32px 0 32px;
  overflow: hidden;
  isolation: isolate;
}
.bb-promise-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--bb-amber), var(--bb-blue));
}
.bb-promise-block::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--bb-amber-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.bb-promise-inner-block {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.bb-promise-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 22px;
  justify-content: center;
}
.bb-promise-label::before,
.bb-promise-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-promise-block h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 560px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.bb-promise-block h2 em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--bb-font-body);
  color: var(--bb-blue);
}
.bb-promise-block p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.bb-promise-block p:last-child {
  margin-bottom: 0;
}
.bb-promise-block p strong {
  color: var(--bb-navy);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 80%, rgba(240,165,0,0.25) 62%);
  padding: 0 2px;
}
@media(max-width:640px) {
  .bb-promise-block { padding: 44px 28px 44px 36px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: How We Work (Homepage)
───────────────────────────────────────────────────────────── */
.bb-how {
  padding: 56px 0 64px;
  border-top: 1px solid var(--bb-border-light);
  position: relative;
}
.bb-how-header {
  text-align: center;
  margin-bottom: 44px;
}
.bb-how-heading {
  max-width: 640px;
  margin: 0 auto;
}
.bb-how-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 10px;
  justify-content: center;
}
.bb-how-label::before,
.bb-how-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-how-heading h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 12px;
}
.bb-how-heading p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.65;
}
.bb-how-rule {
  height: 2px;
  background: var(--bb-gradient-rule);
  margin: 0 auto 40px;
  max-width: 80px;
}
.bb-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  background: var(--bb-white);
  overflow: hidden;
}
.bb-how-step {
  padding: 36px 32px;
  border-right: 1px solid var(--bb-border-light);
  position: relative;
}
.bb-how-step:last-child {
  border-right: none;
}
.bb-how-num {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--bb-font-heading);
  font-weight: 800;
  color: var(--bb-border-mid);
  margin-bottom: 10px;
}
.bb-how-num .n {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--bb-blue) 0%, var(--bb-navy) 50%, var(--bb-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bb-how-num .l {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bb-text-light);
}
.bb-how-step h3 {
  font-family: var(--bb-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bb-how-step p {
  font-family: var(--bb-font-body);
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.7;
}
.bb-how-step-tag {
  display: inline-block;
  font-family: var(--bb-font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bb-amber-dark);
  background: var(--bb-amber-light);
  padding: 4px 10px;
  border-radius: var(--bb-radius-pill);
  margin-top: 16px;
}
@media(max-width:860px) {
  .bb-how-grid { grid-template-columns: 1fr; }
  .bb-how-step { border-right: none; border-bottom: 1px solid var(--bb-border-light); }
  .bb-how-step:last-child { border-bottom: none; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Latest Verdicts Grid (Homepage)
───────────────────────────────────────────────────────────── */
.bb-latest {
  padding: 56px 0 64px;
  border-top: 1px solid var(--bb-border-light);
}
.bb-latest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.bb-latest-heading h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.bb-latest-heading p {
  font-family: var(--bb-font-body);
  font-size: 14px;
  color: var(--bb-text-light);
}
.bb-latest-all {
  font-family: var(--bb-font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--bb-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bb-latest-all svg {
  width: 14px;
  height: 14px;
  transition: transform var(--bb-transition);
}
.bb-latest-all:hover svg {
  transform: translateX(3px);
}
.bb-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bb-art {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--bb-transition-smooth), box-shadow var(--bb-transition-smooth), border-color var(--bb-transition-smooth);
  display: flex;
  flex-direction: column;
}
.bb-art:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-card-hover);
  border-color: var(--bb-border-mid);
}
.bb-art-thumb {
  position: relative;
  height: 170px;
  background: var(--bb-gradient-card-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-art-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(45,82,160,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.bb-art-thumb-label {
  position: relative;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--bb-text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.bb-art-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bb-amber-light);
  color: var(--bb-amber-dark);
  font-family: var(--bb-font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--bb-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--bb-amber-dark-alpha);
}
.bb-art-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-art-cat {
  font-family: var(--bb-font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bb-blue);
  margin-bottom: 10px;
}
.bb-art h3 {
  font-family: var(--bb-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  flex: 1;
}
.bb-art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--bb-border-light);
  font-family: var(--bb-font-heading);
  font-size: 11px;
  color: var(--bb-text-light);
  font-weight: 600;
}
.bb-art-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bb-border-mid);
}
@media(max-width:860px) {
  .bb-latest-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Final CTA (Homepage & About)
───────────────────────────────────────────────────────────── */
.bb-final {
  position: relative;
  background: linear-gradient(135deg, var(--bb-navy-dark) 0%, var(--bb-navy) 50%, var(--bb-navy-mid) 100%);
  border-radius: var(--bb-radius-2xl);
  padding: 64px 48px;
  margin: 16px 0 48px;
  overflow: hidden;
  isolation: isolate;
}
.bb-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, var(--bb-amber-glow-strong) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(67,104,184,0.2) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.bb-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 80%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.bb-final-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.bb-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bb-amber);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: var(--bb-radius-pill);
}
.bb-final h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(28px, 3.8vw, 38px);
  font-weight: 800;
  color: var(--bb-text-white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.bb-final h2 em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--bb-font-body);
  color: var(--bb-amber);
}
.bb-final p {
  font-family: var(--bb-font-body);
  font-size: 17px;
  color: var(--bb-text-white-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.bb-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bb-amber);
  color: var(--bb-navy-dark);
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px var(--bb-amber-shadow);
  transition: transform var(--bb-transition), box-shadow var(--bb-transition), color var(--bb-transition);
}
.bb-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--bb-shadow-cta-hover);
  color: var(--bb-text-white);
}
.bb-final-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--bb-transition);
}
.bb-final-cta:hover svg {
  transform: translateX(3px);
}
@media(max-width:640px) {
  .bb-final { padding: 48px 28px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SHARED PAGE BLOCKS (About, Contact, Affiliate, Privacy)
═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   BLOCK: Page Hero (Internal Pages)
───────────────────────────────────────────────────────────── */
.bb-phero {
  position: relative;
  background: var(--bb-white);
  margin: -20px -20px 0 -20px;
  padding: 48px 24px 56px;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-phero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.bb-phero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  padding: 7px 14px;
  border: 1px solid var(--bb-blue-alpha-25);
  border-radius: var(--bb-radius-pill);
  background: var(--bb-blue-alpha-06);
  margin-bottom: 16px;
}
.bb-phero h1 {
  font-family: var(--bb-font-heading);
  font-size: clamp(32px, 4.8vw, 48px);
  font-weight: 900;
  color: var(--bb-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 16px;
}
.bb-phero h1 .bb-phero-accent {
  font-style: italic;
  font-family: var(--bb-font-body);
  font-weight: 500;
  color: var(--bb-amber);
}
.bb-phero p {
  font-family: var(--bb-font-body);
  font-size: 17px;
  color: var(--bb-text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
@media(max-width:640px) {
  .bb-phero { padding: 40px 20px 48px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Section Header (Shared)
───────────────────────────────────────────────────────────── */
.bb-section {
  padding: 48px 0 40px;
}
.bb-section-alt {
  padding: 40px 0 40px;
  border-top: 1px solid var(--bb-border-light);
}
.bb-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.bb-section-heading {
  max-width: 640px;
  margin: 0 auto;
}
.bb-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 8px;
  justify-content: center;
}
.bb-section-label::before,
.bb-section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-section-heading h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 12px;
}
.bb-section-heading p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.7;
}
.bb-section-rule {
  height: 2px;
  background: var(--bb-gradient-rule);
  margin: 0 auto 32px;
  max-width: 80px;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Prose Content (About, Privacy, Affiliate)
───────────────────────────────────────────────────────────── */
.bb-prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--bb-font-body);
  color: var(--bb-text-mid);
  font-size: 17px;
  line-height: 1.8;
}
.bb-prose p {
  margin-bottom: 20px;
}
.bb-prose strong {
  color: var(--bb-navy);
  font-weight: 600;
}
.bb-prose a {
  color: var(--bb-blue);
  text-decoration: underline;
  text-decoration-color: rgba(45,82,160,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--bb-transition);
}
.bb-prose a:hover {
  text-decoration-color: var(--bb-blue);
}
.bb-prose ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.bb-prose li {
  margin-bottom: 10px;
}
.bb-prose h2 {
  font-family: var(--bb-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--bb-navy);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--bb-border-light);
  letter-spacing: -0.01em;
}
.bb-prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Pillars Grid (About)
───────────────────────────────────────────────────────────── */
.bb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 28px auto 0;
}
.bb-pillar {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 28px 24px;
  transition: transform var(--bb-transition-smooth), box-shadow var(--bb-transition-smooth), border-color var(--bb-transition-smooth);
  position: relative;
  overflow: hidden;
}
.bb-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bb-blue), var(--bb-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--bb-transition-bounce);
}
.bb-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-card-hover);
  border-color: var(--bb-border-mid);
}
.bb-pillar:hover::before {
  transform: scaleX(1);
}
.bb-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--bb-gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bb-pillar-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bb-amber);
}
.bb-pillar h3 {
  font-family: var(--bb-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bb-pillar p {
  font-family: var(--bb-font-body);
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.65;
  margin: 0;
}
@media(max-width:860px) {
  .bb-pillars { grid-template-columns: 1fr; gap: 16px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Pledge Box (About)
───────────────────────────────────────────────────────────── */
.bb-pledge {
  position: relative;
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 40px 48px;
  margin: 32px 0;
  overflow: hidden;
  isolation: isolate;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.bb-pledge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bb-blue);
}
.bb-pledge-inner {
  text-align: center;
}
.bb-pledge-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 16px;
  justify-content: center;
}
.bb-pledge-label::before,
.bb-pledge-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-pledge h2 {
  font-family: var(--bb-font-heading);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-top: 0;
  margin-bottom: 20px;
}
.bb-pledge h2 em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--bb-font-body);
  color: var(--bb-blue);
}
.bb-pledge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}
.bb-pledge-list li {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.6;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--bb-border-light);
  position: relative;
}
.bb-pledge-list li:last-child {
  border-bottom: none;
}
.bb-pledge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-navy));
  border-radius: 50%;
}
.bb-pledge-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 25px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--bb-amber);
  border-bottom: 2px solid var(--bb-amber);
  transform: rotate(-45deg);
}
@media(max-width:640px) {
  .bb-pledge { padding: 32px 24px 32px 32px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Topics Grid (Contact)
───────────────────────────────────────────────────────────── */
.bb-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.bb-topic {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--bb-transition-smooth), box-shadow var(--bb-transition-smooth), transform var(--bb-transition-smooth);
}
.bb-topic:hover {
  border-color: var(--bb-border-mid);
  box-shadow: 0 8px 24px rgba(26,39,68,0.08);
  transform: translateY(-2px);
}
.bb-topic-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bb-gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-topic-icon svg {
  width: 20px;
  height: 20px;
  color: var(--bb-amber);
}
.bb-topic-text h3 {
  font-family: var(--bb-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.bb-topic-text p {
  font-family: var(--bb-font-body);
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.6;
  margin: 0;
}
@media(max-width:720px) {
  .bb-topics { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Form Wrapper (Contact)
───────────────────────────────────────────────────────────── */
.bb-form-wrap {
  max-width: 680px;
  margin: 8px auto 48px;
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.bb-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bb-blue);
}
.bb-form-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bb-blue);
  margin-bottom: 14px;
}
.bb-form-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-form-wrap h2 {
  font-family: var(--bb-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.bb-form-wrap > p {
  font-family: var(--bb-font-body);
  font-size: 15px;
  color: var(--bb-text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}
.bb-form-placeholder {
  background: var(--bb-white);
  border: 2px dashed var(--bb-border-mid);
  border-radius: var(--bb-radius-md);
  padding: 48px 24px;
  text-align: center;
  color: var(--bb-text-light);
  font-family: var(--bb-font-heading);
  font-size: 14px;
  line-height: 1.6;
}
.bb-form-placeholder strong {
  color: var(--bb-navy);
  display: block;
  margin-bottom: 8px;
}
.bb-form-note {
  margin-top: 24px;
  font-family: var(--bb-font-heading);
  font-size: 12px;
  color: var(--bb-text-light);
  text-align: center;
}
@media(max-width:640px) {
  .bb-form-wrap { padding: 32px 24px 32px 32px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Callout Boxes (Affiliate, Privacy)
───────────────────────────────────────────────────────────── */
.bb-callout {
  background: var(--bb-amber-light);
  border: 1px solid var(--bb-amber);
  border-radius: var(--bb-radius-md);
  padding: 24px 28px;
  margin: 28px 0;
  max-width: 720px;
}
.bb-callout h3 {
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 10px;
}
.bb-callout p {
  font-family: var(--bb-font-body);
  font-size: 15px;
  color: var(--bb-navy);
  line-height: 1.65;
  margin: 0;
}

.bb-callout-info {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-md);
  padding: 24px 28px;
  margin: 28px 0;
  max-width: 720px;
}
.bb-callout-info h3 {
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 10px;
}
.bb-callout-info p {
  font-family: var(--bb-font-body);
  font-size: 15px;
  color: var(--bb-text-mid);
  line-height: 1.65;
  margin: 0;
}

.bb-disclosure-bar {
  background: #edf1ff;
  border-left: 3px solid var(--bb-blue-light);
  border-radius: 0 var(--bb-radius-sm) var(--bb-radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-family: var(--bb-font-heading);
  font-size: 14px;
  color: var(--bb-navy);
  max-width: 720px;
}
.bb-disclosure-bar strong {
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT REVIEW BLOCKS (for future use)
═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   BLOCK: Meta Info Bar
───────────────────────────────────────────────────────────── */
.bb-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--bb-font-heading);
}
.bb-updated {
  background: var(--bb-amber-light);
  color: var(--bb-amber-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--bb-radius-pill);
  letter-spacing: 0.03em;
}
.bb-meta-item {
  font-size: 12px;
  color: var(--bb-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bb-meta-item strong {
  color: var(--bb-navy);
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Affiliate Disclosure Bar
───────────────────────────────────────────────────────────── */
.bb-disclosure {
  background: #edf1ff;
  border-left: 3px solid var(--bb-blue-light);
  border-radius: 0 var(--bb-radius-sm) var(--bb-radius-sm) 0;
  padding: 11px 18px;
  font-family: var(--bb-font-heading);
  font-size: 12px;
  color: var(--bb-text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.bb-disclosure strong {
  color: var(--bb-navy);
  font-weight: 700;
}
.bb-disclosure a {
  color: var(--bb-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Research Note
───────────────────────────────────────────────────────────── */
.bb-research {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--bb-shadow-xs);
  margin-bottom: 28px;
}
.bb-research-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--bb-amber), #f5b800);
  border-radius: var(--bb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(240,165,0,0.25);
}
.bb-research p {
  font-family: var(--bb-font-heading);
  font-size: 12.5px;
  color: var(--bb-text-mid);
  line-height: 1.65;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Quick Picks Jump Bar
───────────────────────────────────────────────────────────── */
.bb-qp {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  padding: 22px 24px;
  margin-bottom: 28px;
  font-family: var(--bb-font-heading);
  box-shadow: var(--bb-shadow-sm);
}
.bb-qp-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-qp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bb-qp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bb-bg);
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--bb-transition), box-shadow var(--bb-transition), transform var(--bb-transition-fast);
}
.bb-qp-item:hover {
  border-color: var(--bb-blue-light);
  box-shadow: 0 3px 12px rgba(45,82,160,0.1);
  transform: translateY(-1px);
}
.bb-qp-badge {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bb-qp-badge--top {
  background: var(--bb-navy);
  color: var(--bb-text-white);
}
.bb-qp-badge--budget {
  background: var(--bb-amber);
  color: var(--bb-navy);
}
.bb-qp-badge--pro {
  background: var(--bb-blue);
  color: var(--bb-text-white);
}
.bb-qp-badge--travel {
  background: var(--bb-bg-warm);
  color: var(--bb-navy);
  border: 1.5px solid var(--bb-border);
}
.bb-qp-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bb-qp-type {
  font-size: 10.5px;
  color: var(--bb-text-light);
  font-weight: 500;
}
.bb-qp-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bb-navy);
  line-height: 1.3;
}
@media(max-width:600px) {
  .bb-qp-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Hero Pick Card
───────────────────────────────────────────────────────────── */
.bb-hero-pick {
  background: linear-gradient(145deg, #e9eef8 0%, #dce4f4 100%);
  border: 1px solid #c3cfe6;
  border-radius: var(--bb-radius-xl);
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-md);
  overflow: hidden;
  position: relative;
  font-family: var(--bb-font-heading);
}
.bb-hero-pick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bb-navy) 0%, var(--bb-blue-light) 45%, var(--bb-amber) 100%);
}
.bb-hero-pick-inner {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
}
.bb-hero-pick-img {
  background: var(--bb-white);
  border-radius: var(--bb-radius-md);
  padding: 20px;
  box-shadow: var(--bb-shadow-sm);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-hero-pick-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bb-hero-pick-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(145deg, #e8edf8, #d0daf0);
  border-radius: var(--bb-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bb-text-light);
  font-size: 11px;
  text-align: center;
  gap: 6px;
}
.bb-hero-pick-placeholder .icon {
  font-size: 28px;
  opacity: 0.4;
}
.bb-hero-pick-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bb-hero-pick-label::before {
  content: '★';
  color: var(--bb-amber);
  font-size: 13px;
}
.bb-hero-pick h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--bb-navy);
  margin: 0 0 8px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.bb-hero-pick-verdict {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bb-blue);
  margin-bottom: 14px;
  line-height: 1.4;
}
.bb-hero-pick p {
  font-size: 14.5px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin: 0 0 20px;
  font-family: var(--bb-font-body);
}
.bb-hero-pick-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,39,68,0.25);
  transition: background var(--bb-transition), transform var(--bb-transition-fast), box-shadow var(--bb-transition);
}
.bb-hero-pick-cta:hover {
  background: var(--bb-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,39,68,0.3);
  color: var(--bb-text-white);
}
.bb-hero-pick-cta .arrow {
  transition: transform var(--bb-transition);
}
.bb-hero-pick-cta:hover .arrow {
  transform: translateX(3px);
}
@media(max-width:640px) {
  .bb-hero-pick-inner { grid-template-columns: 1fr; padding: 22px; }
  .bb-hero-pick-img { max-width: 200px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Product Card (with image)
───────────────────────────────────────────────────────────── */
.bb-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  font-family: var(--bb-font-heading);
  transition: box-shadow var(--bb-transition), transform var(--bb-transition);
}
.bb-card:hover {
  box-shadow: var(--bb-shadow-md);
  transform: translateY(-2px);
}
.bb-card-header {
  background: var(--bb-bg);
  border-bottom: 1px solid var(--bb-border-light);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bb-card-verdict {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-blue);
}
.bb-card-body {
  padding: 22px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: start;
}
.bb-card-img {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border-light);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.bb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bb-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(145deg, #e8edf8, #d0daf0);
  border-radius: var(--bb-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bb-text-light);
  font-size: 10px;
  text-align: center;
  gap: 6px;
}
.bb-card-placeholder .icon {
  font-size: 24px;
  opacity: 0.4;
}
.bb-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--bb-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.bb-card-tagline {
  font-size: 12.5px;
  color: var(--bb-blue);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  line-height: 1.4;
}
.bb-card-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.bb-card-pros,
.bb-card-cons {
  border-radius: 9px;
  padding: 12px 14px;
}
.bb-card-pros {
  background: var(--bb-green-bg);
  border: 1px solid var(--bb-green-border);
}
.bb-card-cons {
  background: var(--bb-red-bg);
  border: 1px solid var(--bb-red-border);
}
.bb-card-pros-label,
.bb-card-cons-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.bb-card-pros-label {
  color: var(--bb-green);
}
.bb-card-cons-label {
  color: var(--bb-red);
}
.bb-card-pros ul,
.bb-card-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bb-card-pros li,
.bb-card-cons li {
  font-size: 12px;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
  color: var(--bb-text-mid);
}
.bb-card-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bb-green);
  font-weight: 700;
}
.bb-card-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--bb-red);
  font-weight: 700;
}
.bb-card-text {
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin-bottom: 16px;
  font-family: var(--bb-font-body);
}
.bb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--bb-radius-sm);
  text-decoration: none;
  transition: background var(--bb-transition), transform var(--bb-transition-fast);
}
.bb-card-cta:hover {
  background: var(--bb-blue);
  transform: translateY(-1px);
  color: var(--bb-text-white);
}
@media(max-width:640px) {
  .bb-card-body { grid-template-columns: 1fr; }
  .bb-card-proscons { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Comparison Table
───────────────────────────────────────────────────────────── */
.bb-table-wrap {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  font-family: var(--bb-font-heading);
}
.bb-table {
  width: 100%;
  border-collapse: collapse;
}
.bb-table thead {
  background: var(--bb-navy);
}
.bb-table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-text-white-muted);
  padding: 14px 18px;
  text-align: left;
}
.bb-table thead th:first-child {
  color: var(--bb-text-white);
}
.bb-table thead th:last-child {
  text-align: center;
}
.bb-table tbody tr {
  border-bottom: 1px solid var(--bb-border-light);
  transition: background var(--bb-transition-fast);
}
.bb-table tbody tr:last-child {
  border-bottom: none;
}
.bb-table tbody tr:hover {
  background: #f8faff;
}
.bb-table tbody tr.bb-highlight {
  background: linear-gradient(90deg, var(--bb-amber-glow), transparent 60%);
}
.bb-table tbody tr.bb-highlight:hover {
  background: linear-gradient(90deg, var(--bb-amber-glow-md), #f8faff 60%);
}
.bb-table tbody td {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--bb-text-mid);
  vertical-align: middle;
}
.bb-table tbody td:first-child {
  font-weight: 700;
  color: var(--bb-navy);
}
.bb-table tbody td:last-child {
  text-align: center;
}
.bb-top-tag {
  background: var(--bb-amber);
  color: var(--bb-navy);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.bb-tick {
  color: var(--bb-green);
  font-weight: 700;
  font-size: 15px;
}
.bb-cross {
  color: var(--bb-red);
  font-size: 15px;
}
.bb-price-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bb-blue);
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--bb-blue);
  border-radius: var(--bb-radius-xs);
  transition: all var(--bb-transition);
  white-space: nowrap;
}
.bb-price-link:hover {
  background: var(--bb-navy);
  border-color: var(--bb-navy);
  color: var(--bb-text-white);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(26,39,68,0.2);
}
.bb-price-link .link-arrow {
  font-size: 11px;
  transition: transform var(--bb-transition);
}
.bb-price-link:hover .link-arrow {
  transform: translateX(2px);
}
@media(max-width:640px) {
  .bb-table-wrap { overflow-x: auto; }
  .bb-table { min-width: 520px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: How to Choose
───────────────────────────────────────────────────────────── */
.bb-htc {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 30px 32px;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  font-family: var(--bb-font-heading);
}
.bb-htc h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--bb-navy);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bb-border-light);
  letter-spacing: -0.01em;
}
.bb-htc-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-htc-item:first-of-type {
  padding-top: 0;
}
.bb-htc-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bb-htc-num {
  width: 34px;
  height: 34px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.bb-htc-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bb-navy);
  margin: 0 0 6px;
  line-height: 1.35;
}
.bb-htc-body p {
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin: 0;
  font-family: var(--bb-font-body);
}
@media(max-width:640px) {
  .bb-htc { padding: 22px 20px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Verdict Block
───────────────────────────────────────────────────────────── */
.bb-verdict {
  background: var(--bb-navy);
  border-radius: var(--bb-radius-xl);
  padding: 34px 38px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  font-family: var(--bb-font-heading);
}
.bb-verdict::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--bb-amber-glow-md) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.bb-verdict::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(45,82,160,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.bb-verdict-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bb-amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.bb-verdict-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--bb-amber);
}
.bb-verdict h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--bb-text-white);
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
}
.bb-verdict > p {
  font-size: 14.5px;
  color: var(--bb-text-white-soft);
  line-height: 1.78;
  margin: 0 0 10px;
  position: relative;
  font-family: var(--bb-font-body);
}
.bb-verdict-picks {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.bb-verdict-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bb-verdict-row:last-child {
  border-bottom: none;
}
.bb-verdict-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bb-verdict-type {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bb-amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 120px;
}
.bb-verdict-name {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.bb-verdict-name a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--bb-transition);
}
.bb-verdict-name a:hover {
  color: var(--bb-amber);
}
.bb-verdict-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bb-verdict-read {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--bb-transition);
}
.bb-verdict-read:hover {
  color: var(--bb-text-white);
}
.bb-verdict-buy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bb-navy);
  background: var(--bb-amber);
  padding: 7px 14px;
  border-radius: var(--bb-radius-xs);
  text-decoration: none;
  transition: background var(--bb-transition), transform var(--bb-transition-fast);
}
.bb-verdict-buy:hover {
  background: #ffb820;
  transform: translateY(-1px);
  color: var(--bb-navy);
}
@media(max-width:640px) {
  .bb-verdict { padding: 24px 22px; }
  .bb-verdict-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bb-verdict-links { margin-left: 132px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Editorial Text
───────────────────────────────────────────────────────────── */
.bb-editorial {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  padding: 28px 30px;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  position: relative;
  overflow: hidden;
}
.bb-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--bb-blue) 0%, var(--bb-blue-light) 100%);
}
.bb-editorial-label {
  font-family: var(--bb-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 10px;
  padding-left: 2px;
}
.bb-editorial h3 {
  font-family: var(--bb-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.bb-editorial p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.bb-editorial p:last-of-type {
  margin-bottom: 0;
}
.bb-editorial p strong {
  color: var(--bb-navy);
  font-weight: 600;
}
.bb-editorial blockquote {
  border-left: 3px solid var(--bb-amber);
  margin: 16px 0;
  padding: 10px 16px;
  background: var(--bb-amber-light);
  border-radius: 0 var(--bb-radius-sm) var(--bb-radius-sm) 0;
  font-family: var(--bb-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bb-navy);
  line-height: 1.55;
  font-style: normal;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Editorial + Image (left)
───────────────────────────────────────────────────────────── */
.bb-editorial-img {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  overflow: hidden;
  position: relative;
}
.bb-editorial-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bb-navy) 0%, var(--bb-blue) 50%, var(--bb-amber) 100%);
}
.bb-editorial-img-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: stretch;
}
.bb-editorial-img-wrap {
  position: relative;
  background: var(--bb-gradient-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
}
.bb-editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb-editorial-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--bb-text-light);
  font-family: var(--bb-font-heading);
  font-size: 11px;
  text-align: center;
  padding: 20px;
}
.bb-editorial-img-placeholder .ph-icon {
  font-size: 36px;
  opacity: 0.35;
}
.bb-editorial-img-placeholder .ph-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
.bb-editorial-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--bb-radius-xs);
  box-shadow: 0 2px 8px rgba(26,39,68,0.3);
}
.bb-editorial-img-content {
  padding: 28px 30px;
}
.bb-editorial-img-content .bb-eil {
  font-family: var(--bb-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 8px;
}
.bb-editorial-img-content h3 {
  font-family: var(--bb-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.bb-editorial-img-content p {
  font-family: var(--bb-font-body);
  font-size: 15.5px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin-bottom: 12px;
}
.bb-editorial-img-content p:last-of-type {
  margin-bottom: 0;
}
.bb-editorial-img-content p strong {
  color: var(--bb-navy);
  font-weight: 600;
}
.bb-editorial-img-content blockquote {
  border-left: 3px solid var(--bb-amber);
  margin: 16px 0;
  padding: 10px 16px;
  background: var(--bb-amber-light);
  border-radius: 0 var(--bb-radius-sm) var(--bb-radius-sm) 0;
  font-family: var(--bb-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bb-navy);
  line-height: 1.55;
  font-style: normal;
}
@media(max-width:700px) {
  .bb-editorial-img-inner { grid-template-columns: 1fr; }
  .bb-editorial-img-wrap { min-height: 200px; max-height: 220px; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Editorial + Image (right)
───────────────────────────────────────────────────────────── */
.bb-editorial-imgr {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  overflow: hidden;
  position: relative;
}
.bb-editorial-imgr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bb-amber) 0%, var(--bb-blue) 50%, var(--bb-navy) 100%);
}
.bb-editorial-imgr-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  align-items: stretch;
}
.bb-editorial-imgr-wrap {
  position: relative;
  background: var(--bb-gradient-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
  order: 2;
}
.bb-editorial-imgr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb-editorial-imgr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--bb-text-light);
  font-family: var(--bb-font-heading);
  font-size: 11px;
  text-align: center;
  padding: 20px;
}
.bb-editorial-imgr-placeholder .ph-icon {
  font-size: 36px;
  opacity: 0.35;
}
.bb-editorial-imgr-placeholder .ph-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
.bb-editorial-imgr-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bb-blue);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--bb-radius-xs);
  box-shadow: 0 2px 8px rgba(45,82,160,0.3);
}
.bb-editorial-imgr-content {
  padding: 28px 30px;
  order: 1;
}
.bb-editorial-imgr-content .bb-eirl {
  font-family: var(--bb-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 8px;
}
.bb-editorial-imgr-content h3 {
  font-family: var(--bb-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.bb-editorial-imgr-content p {
  font-family: var(--bb-font-body);
  font-size: 15.5px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin-bottom: 12px;
}
.bb-editorial-imgr-content p:last-of-type {
  margin-bottom: 0;
}
.bb-editorial-imgr-content p strong {
  color: var(--bb-navy);
  font-weight: 600;
}
@media(max-width:700px) {
  .bb-editorial-imgr-inner { grid-template-columns: 1fr; }
  .bb-editorial-imgr-wrap { min-height: 200px; max-height: 220px; order: 0; }
  .bb-editorial-imgr-content { order: 1; }
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Editorial + Image (full width)
───────────────────────────────────────────────────────────── */
.bb-editorial-full {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  overflow: hidden;
  position: relative;
}
.bb-editorial-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bb-navy) 0%, var(--bb-amber) 50%, var(--bb-blue) 100%);
  z-index: 1;
}
.bb-editorial-full-img {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--bb-gradient-card-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-editorial-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb-editorial-full-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--bb-text-light);
  font-family: var(--bb-font-heading);
  font-size: 11px;
  text-align: center;
}
.bb-editorial-full-placeholder .ph-icon {
  font-size: 40px;
  opacity: 0.3;
}
.bb-editorial-full-placeholder .ph-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}
.bb-editorial-full-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--bb-radius-xs);
  box-shadow: 0 2px 8px rgba(26,39,68,0.3);
  z-index: 1;
}
.bb-editorial-full-content {
  padding: 28px 30px;
}
.bb-editorial-full-content .bb-efl {
  font-family: var(--bb-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 8px;
}
.bb-editorial-full-content h3 {
  font-family: var(--bb-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--bb-navy);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.bb-editorial-full-content p {
  font-family: var(--bb-font-body);
  font-size: 16px;
  color: var(--bb-text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.bb-editorial-full-content p:last-of-type {
  margin-bottom: 0;
}
.bb-editorial-full-content p strong {
  color: var(--bb-navy);
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────────
   BLOCK: Product Card (no image)
───────────────────────────────────────────────────────────── */
.bb-card-ni {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--bb-shadow-sm);
  font-family: var(--bb-font-heading);
  transition: box-shadow var(--bb-transition), transform var(--bb-transition);
}
.bb-card-ni:hover {
  box-shadow: var(--bb-shadow-md);
  transform: translateY(-2px);
}
.bb-card-ni-header {
  background: var(--bb-bg);
  border-bottom: 1px solid var(--bb-border-light);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bb-card-ni-verdict {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-blue);
}
.bb-card-ni-body {
  padding: 22px;
}
.bb-card-ni h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--bb-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.bb-card-ni-tagline {
  font-size: 12.5px;
  color: var(--bb-blue);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  line-height: 1.4;
}
.bb-card-ni-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.bb-card-ni-pros,
.bb-card-ni-cons {
  border-radius: 9px;
  padding: 12px 14px;
}
.bb-card-ni-pros {
  background: var(--bb-green-bg);
  border: 1px solid var(--bb-green-border);
}
.bb-card-ni-cons {
  background: var(--bb-red-bg);
  border: 1px solid var(--bb-red-border);
}
.bb-card-ni-pros-label,
.bb-card-ni-cons-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.bb-card-ni-pros-label {
  color: var(--bb-green);
}
.bb-card-ni-cons-label {
  color: var(--bb-red);
}
.bb-card-ni-pros ul,
.bb-card-ni-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bb-card-ni-pros li,
.bb-card-ni-cons li {
  font-size: 12px;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
  color: var(--bb-text-mid);
}
.bb-card-ni-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bb-green);
  font-weight: 700;
}
.bb-card-ni-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--bb-red);
  font-weight: 700;
}
.bb-card-ni-text {
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.72;
  margin-bottom: 16px;
  font-family: var(--bb-font-body);
}
.bb-card-ni-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bb-navy);
  color: var(--bb-text-white);
  font-family: var(--bb-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--bb-radius-sm);
  text-decoration: none;
  transition: background var(--bb-transition), transform var(--bb-transition-fast);
}
.bb-card-ni-cta:hover {
  background: var(--bb-blue);
  transform: translateY(-1px);
  color: var(--bb-text-white);
}
@media(max-width:640px) {
  .bb-card-ni-proscons { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE COMPONENTS — Required, ShortBox, Rates, Disclosure, Policy
   ============================================================ */

/* Required notice (e.g. Amazon Associate disclosure pill) */
.bb-required {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #edf1ff;
  border: 1px solid var(--bb-border-mid);
  border-left: 4px solid var(--bb-blue-light);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  max-width: 720px;
  margin: 32px auto 28px;
  font-family: var(--bb-font-heading);
  font-size: 14px;
  color: var(--bb-text-mid);
  line-height: 1.6;
}
.bb-required svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--bb-blue);
}
.bb-required strong {
  color: var(--bb-navy);
  font-weight: 700;
}

/* Short version box (amber callout) */
.bb-shortbox {
  position: relative;
  background: var(--bb-amber-light);
  border: 1px solid var(--bb-amber);
  border-radius: var(--bb-radius-xl);
  padding: 28px 32px 28px 36px;
  max-width: 720px;
  margin: 0 auto 32px;
  overflow: hidden;
}
.bb-shortbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bb-amber);
}
.bb-shortbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bb-amber-dark);
  margin-bottom: 12px;
  position: relative;
}
.bb-shortbox-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--bb-amber-dark);
}
.bb-shortbox h3 {
  font-family: var(--bb-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
}
.bb-shortbox p {
  font-family: var(--bb-font-body);
  font-size: 15px;
  color: var(--bb-navy);
  line-height: 1.7;
  margin: 0;
  position: relative;
}

/* Commission rate cards */
.bb-rates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 24px;
}
.bb-rate {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
  flex: 1;
}
.bb-rate-label {
  display: block;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bb-text-light);
  margin-bottom: 8px;
}
.bb-rate-value {
  font-family: var(--bb-font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--bb-navy);
  letter-spacing: -0.02em;
}
.bb-rate-value em {
  font-style: normal;
  font-size: 18px;
  color: var(--bb-text-light);
}

/* Example disclosure block (small navy-bordered notice) */
.bb-example-disclosure {
  max-width: 720px;
  margin: 24px auto 0;
  background: var(--bb-white);
  border: 1px solid var(--bb-border-mid);
  border-left: 4px solid var(--bb-blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 22px;
  font-family: var(--bb-font-heading);
  font-size: 13px;
  color: var(--bb-text-mid);
  line-height: 1.65;
}
.bb-example-disclosure strong {
  color: var(--bb-navy);
}

/* Privacy/policy page text styling */
.bb-policy {
  max-width: 720px;
  margin: 32px auto 48px;
  font-family: var(--bb-font-body);
  color: var(--bb-text-mid);
  font-size: 16px;
  line-height: 1.75;
}
.bb-policy h2 {
  font-family: var(--bb-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--bb-navy);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--bb-border-light);
  letter-spacing: -0.01em;
}
.bb-policy h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.bb-policy p { margin-bottom: 16px; }
.bb-policy strong { color: var(--bb-navy); font-weight: 600; }
.bb-policy a {
  color: var(--bb-blue);
  text-decoration: underline;
  text-decoration-color: var(--bb-blue-alpha-25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.bb-policy a:hover { text-decoration-color: var(--bb-blue); }
.bb-policy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.bb-policy ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  line-height: 1.65;
}
.bb-policy ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bb-blue);
}
.bb-policy-sublabel {
  font-family: var(--bb-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--bb-navy);
  margin: 16px 0 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Policy callout box (highlighted policy point) */
.bb-policy-box {
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}
.bb-policy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bb-blue);
}
.bb-policy-box-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bb-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bb-blue);
  margin-bottom: 10px;
}
.bb-policy-box-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--bb-blue);
}
.bb-policy-box h3 {
  font-family: var(--bb-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--bb-navy);
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bb-policy-box p {
  font-size: 15px;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .bb-policy-box { padding: 20px 24px 20px 28px; }
}


/* ============================================================
   LIVE-SITE OVERRIDES
   Adjustments needed when running inside Kadence's content wrapper.
   ============================================================ */

/* Hide WordPress default page title (Kadence renders it above bb-phero) */
.page-template-default .entry-header,
.page-template-default .page-title {
  display: none !important;
}

/* Tighten bb-phero spacing on Live */
.bb-phero {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.bb-phero .bb-phero-inner .bb-phero-eyebrow {
  margin-bottom: 24px !important;
}
.bb-phero .bb-phero-inner h1 {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.bb-phero + .bb-section,
.bb-phero + .bb-section-alt {
  margin-top: 0 !important;
  padding-top: 24px !important;
}
