/* ============================================================
   FAULKNER HR SOLUTIONS — BLOG TEMPLATE STYLESHEET
   Extends styles.css + service-page.css
   Components: Article Hero, Sidebar TOC, Blockquotes, Visual
   Placeholders, Author/EEAT, CTA Banners, FAQs, Comparison
   Tables, Listicle Items, Review Scorecard, How-To Steps
   ============================================================ */

/* ── Article Hero ──────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49A3C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.article-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,154,60,0.4);
  border-radius: 100px;
  padding: 5px 14px;
}

.article-hero__date,
.article-hero__read-time {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-hero__date svg,
.article-hero__read-time svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.4);
}

.article-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.article-hero__breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.article-hero__breadcrumb a:hover {
  color: var(--gold);
}

.article-hero__breadcrumb span {
  color: var(--gold);
}

.article-hero__breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

.article-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 2px dashed rgba(196,154,60,0.4);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  fill: rgba(196,154,60,0.4);
}

/* Light version for content area */
.img-placeholder--light {
  background: var(--off-white);
  border: 2px dashed var(--light-gray);
  color: var(--mid-gray);
}

.img-placeholder--light svg {
  fill: var(--mid-gray);
}

/* ── Blog Layout ───────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 80px;
  align-items: start;
}

.blog-main {}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Sidebar TOC ───────────────────────────────────────────── */
.toc-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}

.toc-card:hover {
  border-color: rgba(196,154,60,0.4);
}

.toc-card__header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-card__header svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.toc-card__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.toc-card__body {
  padding: 16px 20px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  border-bottom: 1px solid var(--light-gray);
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  display: block;
  padding: 9px 0 9px 12px;
  font-size: 0.84rem;
  color: #4A5A6A;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
  line-height: 1.4;
}

.toc-list a:hover,
.toc-list a.toc-active {
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 16px;
}

.toc-list--h3 a {
  padding-left: 24px;
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.toc-list--h3 a:hover,
.toc-list--h3 a.toc-active {
  padding-left: 28px;
  color: var(--navy);
}

/* ── Sidebar CTA Card ──────────────────────────────────────── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(196,154,60,0.1);
  border-radius: 50%;
}

.sidebar-cta__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sidebar-cta__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.sidebar-cta__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px 20px;
}

/* ── Sidebar Quick Facts ───────────────────────────────────── */
.sidebar-facts {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-facts__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-facts__title svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.sidebar-facts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-facts__list li {
  font-size: 0.84rem;
  color: #4A5A6A;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.sidebar-facts__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 5px;
}

/* ── Article Body Typography ───────────────────────────────── */
.article-body {
  color: #3A4A5A;
  line-height: 1.85;
  font-size: 1rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin: 56px 0 20px;
  line-height: 1.25;
  position: relative;
  padding-bottom: 16px;
  scroll-margin-top: 110px;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
  scroll-margin-top: 110px;
}

.article-body h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  scroll-margin-top: 110px;
}

.article-body p {
  margin-bottom: 20px;
  color: #3A4A5A;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body a {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,154,60,0.45);
  transition: color 0.2s, border-color 0.2s;
}

.article-body a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.article-body strong {
  color: var(--navy);
  font-weight: 700;
}

.article-body ul,
.article-body ol {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 24px;
}

.article-body ul li,
.article-body ol li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.97rem;
  color: #3A4A5A;
  line-height: 1.7;
  border-bottom: 1px solid var(--light-gray);
}

.article-body ul li:last-child,
.article-body ol li:last-child {
  border-bottom: none;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.article-body ol {
  counter-reset: article-ol;
}

.article-body ol li {
  counter-increment: article-ol;
}

.article-body ol li::before {
  content: counter(article-ol);
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-sans);
  min-width: 20px;
}

/* ── Drop Cap ──────────────────────────────────────────────── */
.article-body .drop-cap::first-letter {
  float: left;
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 0.85;
  margin: 4px 12px 0 0;
  padding: 0;
}

/* ── Blockquotes ───────────────────────────────────────────── */
/* Style 1: Gold left-border pull quote */
.bq-pull {
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin: 36px 0;
  position: relative;
}

.bq-pull::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

.bq-pull p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.bq-pull cite {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* Style 2: Navy callout / key insight */
.bq-insight {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bq-insight__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(196,154,60,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-insight__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.bq-insight__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.bq-insight p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0 !important;
}

/* Style 3: Warning / caution callout */
.bq-warning {
  background: #FFF8F0;
  border-left: 4px solid #E07B39;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bq-warning__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(224,123,57,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-warning__icon svg {
  width: 18px;
  height: 18px;
  fill: #E07B39;
}

.bq-warning__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E07B39;
  margin-bottom: 4px;
}

.bq-warning p {
  font-size: 0.93rem;
  color: #5A3A1A;
  line-height: 1.7;
  margin: 0 !important;
}

/* Style 4: Stat highlight */
.bq-stat {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
  text-align: center;
}

.bq-stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.bq-stat__number span {
  color: var(--gold);
}

.bq-stat__text {
  font-size: 0.95rem;
  color: #5A6A7A;
  line-height: 1.6;
  margin: 0 !important;
}

.bq-stat__source {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* ── Visual Placeholder (in-content) ──────────────────────── */
.visual-placeholder {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed var(--light-gray);
  background: var(--off-white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  transition: border-color 0.2s;
}

.visual-placeholder:hover {
  border-color: rgba(196,154,60,0.4);
}

.visual-placeholder__icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--mid-gray);
}

.visual-placeholder__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.visual-placeholder__hint {
  font-size: 0.8rem;
  color: var(--mid-gray);
  max-width: 300px;
  line-height: 1.5;
}

.visual-placeholder__caption {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 4px;
}

/* Actual image with caption */
.article-figure {
  margin: 36px 0;
}

.article-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.article-figure figcaption {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
  padding: 0 16px;
}

/* ── Inline Stat Row ───────────────────────────────────────── */
.article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.article-stat {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.article-stat__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.article-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── Section Divider ───────────────────────────────────────── */
.section-divider {
  margin: 56px 0;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--light-gray);
}

.section-divider:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── CTA Banner (in-content) ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(196,154,60,0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20%;
  width: 80px;
  height: 80px;
  background: rgba(196,154,60,0.05);
  border-radius: 50%;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.cta-banner__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Centered CTA Banner variant */
.cta-banner--centered {
  flex-direction: column;
  text-align: center;
}

.cta-banner--centered .cta-banner__text {
  max-width: 520px;
  margin: 0 auto;
}

.cta-banner--centered .cta-banner__actions {
  justify-content: center;
}

/* Gold accent CTA Banner */
.cta-banner--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.cta-banner--gold .cta-banner__eyebrow {
  color: var(--navy-dark);
  opacity: 0.7;
}

.cta-banner--gold .cta-banner__title {
  color: var(--navy-dark);
}

.cta-banner--gold .cta-banner__text {
  color: rgba(27,58,82,0.75);
}

/* ── FAQ Section ───────────────────────────────────────────── */
.article-faq {
  margin: 48px 0;
}

.article-faq__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.article-faq__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-faq__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.article-faq__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-card.open {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(27,58,82,0.08);
}

.faq-card__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-card__question:hover {
  background: var(--off-white);
}

.faq-card__q-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-card__q-badge {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 20px;
  flex-shrink: 0;
  padding-top: 1px;
}

.faq-card__chevron {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
  flex-shrink: 0;
}

.faq-card__chevron svg {
  width: 12px;
  height: 12px;
  fill: var(--navy);
  transition: transform 0.3s;
}

.faq-card.open .faq-card__chevron {
  background: var(--gold);
}

.faq-card.open .faq-card__chevron svg {
  fill: var(--navy-dark);
  transform: rotate(180deg);
}

.faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-card__answer-inner {
  padding: 0 24px 24px 56px;
  font-size: 0.93rem;
  color: #4A5A6A;
  line-height: 1.8;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

.faq-card__answer-inner p {
  margin-bottom: 12px;
}

.faq-card__answer-inner p:last-child {
  margin-bottom: 0;
}

/* ── Author / EEAT Section ─────────────────────────────────── */
.author-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.author-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.author-card__photo {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.author-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-card__photo-placeholder svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
}

.author-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.author-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.author-card__title {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-weight: 500;
  margin-bottom: 12px;
}

.author-card__bio {
  font-size: 0.9rem;
  color: #4A5A6A;
  line-height: 1.7;
  margin-bottom: 14px;
}

.author-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.author-credential {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.author-credential svg {
  width: 11px;
  height: 11px;
  fill: var(--gold);
}

/* EEAT Trust Signals Bar */
.eeat-bar {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.eeat-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4A5A6A;
  font-weight: 500;
}

.eeat-bar__item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.eeat-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--light-gray);
}

/* ── Comparison Table ──────────────────────────────────────── */
.comparison-table-wrap {
  margin: 36px 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table thead tr {
  background: var(--navy);
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  color: var(--gold);
}

.comparison-table thead th.highlight {
  background: var(--navy-light);
  color: var(--gold);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--off-white);
}

.comparison-table tbody td {
  padding: 14px 20px;
  color: #3A4A5A;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.comparison-table tbody td.highlight {
  background: rgba(196,154,60,0.05);
}

.comparison-table .check {
  color: #2E9B5E;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: #C0392B;
  font-size: 1.1rem;
}

.comparison-table .partial {
  color: #E07B39;
  font-size: 1.1rem;
}

/* Winner badge on column header */
.col-winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Listicle Items ────────────────────────────────────────── */
.listicle-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0;
}

.listicle-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.listicle-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.listicle-item:hover {
  border-color: rgba(196,154,60,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.listicle-item:hover::before {
  transform: scaleY(1);
}

.listicle-item__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  min-width: 56px;
  text-align: center;
  transition: color 0.3s;
}

.listicle-item:hover .listicle-item__number {
  color: var(--gold-light);
}

.listicle-item__content {}

.listicle-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.listicle-item__text {
  font-size: 0.93rem;
  color: #4A5A6A;
  line-height: 1.75;
  margin-bottom: 12px;
}

.listicle-item__text:last-child {
  margin-bottom: 0;
}

.listicle-item__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.listicle-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: #5A6A7A;
}

.listicle-tag--gold {
  background: rgba(196,154,60,0.1);
  border-color: rgba(196,154,60,0.3);
  color: var(--gold-dark);
}

/* ── Review Scorecard ──────────────────────────────────────── */
.review-scorecard {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}

.review-scorecard__header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-scorecard__product {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.review-scorecard__product-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.review-scorecard__overall {
  text-align: center;
  flex-shrink: 0;
}

.review-scorecard__score {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.review-scorecard__score-max {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}

.review-scorecard__score-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.review-scorecard__body {
  padding: 24px 28px;
}

.review-criteria {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-criterion {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-criterion__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 140px;
}

.review-criterion__bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 100px;
  overflow: hidden;
}

.review-criterion__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  border-radius: 100px;
  transition: width 1s ease;
}

.review-criterion__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 36px;
  text-align: right;
}

.review-scorecard__verdict {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-verdict__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.review-verdict__col-title--pro {
  color: #2E9B5E;
}

.review-verdict__col-title--con {
  color: #C0392B;
}

.review-verdict__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-verdict__list li {
  font-size: 0.85rem;
  color: #4A5A6A;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.review-verdict__list--pro li::before {
  content: '✓';
  color: #2E9B5E;
  font-weight: 700;
  flex-shrink: 0;
}

.review-verdict__list--con li::before {
  content: '✗';
  color: #C0392B;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── How-To Steps ──────────────────────────────────────────── */
.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  position: relative;
}

.howto-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(196,154,60,0.2) 100%);
}

.howto-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.howto-step__number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.howto-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.howto-step:hover .howto-step__number {
  background: var(--gold);
  color: var(--navy-dark);
}

.howto-step__content {
  padding-top: 8px;
  flex: 1;
}

.howto-step__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.howto-step__text {
  font-size: 0.93rem;
  color: #4A5A6A;
  line-height: 1.75;
  margin-bottom: 12px;
}

.howto-step__text:last-child {
  margin-bottom: 0;
}

.howto-step__tip {
  background: rgba(196,154,60,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #4A5A6A;
  line-height: 1.6;
}

.howto-step__tip strong {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ── Expert Guide Key Takeaways ────────────────────────────── */
.key-takeaways {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.key-takeaways::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}

.key-takeaways__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-takeaways__title svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.key-takeaways__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.key-takeaways__list li {
  font-size: 0.93rem;
  color: #3A4A5A;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.key-takeaways__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}

/* ── Related Articles ──────────────────────────────────────── */
.related-articles {
  margin: 56px 0 0;
  padding-top: 48px;
  border-top: 1px solid var(--light-gray);
}

.related-articles__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  border-color: rgba(196,154,60,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-gray);
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.related-card:hover .related-card__image img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.related-card__title {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
  flex: 1;
}

.related-card__arrow {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Article Progress Bar ──────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: fill 0.2s;
}

.back-to-top:hover svg {
  fill: var(--navy-dark);
}

/* ── Comparison Post: Side-by-Side Cards ───────────────────── */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.comparison-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.comparison-card--winner {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.comparison-card__header {
  background: var(--off-white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.comparison-card--winner .comparison-card__header {
  background: var(--navy);
}

.comparison-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.comparison-card--winner .comparison-card__name {
  color: var(--white);
}

.comparison-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy-dark);
}

.comparison-card__body {
  padding: 20px 24px;
}

.comparison-card__score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.comparison-card__score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.comparison-card__score-label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

.comparison-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-card__features li {
  font-size: 0.88rem;
  color: #4A5A6A;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.comparison-card__features li.pro::before {
  content: '✓';
  color: #2E9B5E;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-card__features li.con::before {
  content: '✗';
  color: #C0392B;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .article-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-hero__image {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .article-hero {
    padding: 56px 0 48px;
  }

  .article-hero__title {
    font-size: 1.75rem;
  }

  .cta-banner {
    flex-direction: column;
    padding: 28px 24px;
  }

  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-stats {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-scorecard__verdict {
    grid-template-columns: 1fr;
  }

  .howto-steps::before {
    display: none;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .eeat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .eeat-bar__divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .listicle-item {
    flex-direction: column;
    gap: 12px;
  }

  .listicle-item__number {
    font-size: 1.8rem;
    min-width: auto;
  }

  .faq-card__answer-inner {
    padding-left: 24px;
  }

  .review-criterion {
    flex-wrap: wrap;
  }

  .review-criterion__label {
    min-width: auto;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   ADDITIONAL COMPONENTS — Review, Comparison, Pricing
   ══════════════════════════════════════════════════════════════ */

/* ── Pros / Cons Grid (Review + Comparison templates) ───────── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros-cons-col {
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.pros-col {
  background: rgba(46,125,50,0.05);
  border: 1px solid rgba(46,125,50,0.2);
}
.cons-col {
  background: rgba(192,57,43,0.05);
  border: 1px solid rgba(192,57,43,0.2);
}
.pros-cons-col__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pros-col .pros-cons-col__title { color: #2E7D32; }
.cons-col .pros-cons-col__title { color: #C0392B; }
.pros-cons-col__title svg { width: 16px; height: 16px; }
.pros-col .pros-cons-col__title svg { fill: #2E7D32; }
.cons-col .pros-cons-col__title svg { fill: #C0392B; }
.pros-cons-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-cons-col li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--dark-gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  border-bottom: none;
}
.pros-cons-col li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.85rem;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 0;
}
.pros-col li::before { content: '✓'; color: #2E7D32; }
.cons-col li::before { content: '✗'; color: #C0392B; }

/* ── Pricing Table (Review template) ───────────────────────── */
.pricing-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
}
.pricing-table thead tr { background: var(--navy); }
.pricing-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.pricing-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-gray);
  vertical-align: middle;
}
.pricing-table__highlight td {
  background: rgba(196,154,60,0.06);
  font-weight: 600;
}
.pricing-table tbody tr:hover td { background: var(--off-white); }
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 20px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Review Scorecard Summary (pros/cons/best-for inside card) ── */
.review-scorecard__summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-scorecard__pros,
.review-scorecard__cons {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
}
.review-scorecard__pros-title,
.review-scorecard__cons-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.review-scorecard__pros-title { color: #2E7D32; }
.review-scorecard__cons-title { color: #C0392B; }
.review-scorecard__pros ul,
.review-scorecard__cons ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.review-scorecard__pros li,
.review-scorecard__cons li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--dark-gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
  border-bottom: none;
}
.review-scorecard__pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-size: 0.75rem;
  font-weight: 700;
  background: none;
  width: auto; height: auto;
  border-radius: 0; top: 0;
}
.review-scorecard__cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #C0392B;
  font-size: 0.75rem;
  font-weight: 700;
  background: none;
  width: auto; height: auto;
  border-radius: 0; top: 0;
}
.review-scorecard__best-for {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--dark-gray);
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  line-height: 1.5;
}
.review-scorecard__best-for strong { color: var(--navy); }

/* ── Sidebar Score Card (Review template sidebar) ───────────── */
.sidebar-score-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sidebar-score-card__title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.sidebar-score-card__score {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.sidebar-score-card__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}
.star { font-size: 1.1rem; }
.star--full { color: var(--gold); }
.star--half { color: var(--gold); opacity: 0.55; }
.star--empty { color: var(--light-gray); }
.sidebar-score-card__verdict {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* ── Review Score Rows (scorecard criteria bars) ────────────── */
.review-scorecard__criteria {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-score-row__label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--dark-gray);
  width: 140px;
  flex-shrink: 0;
  line-height: 1.3;
}
.review-score-row__bar {
  flex: 1;
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
}
.review-score-row__fill {
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.review-score-row__num {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Comparison Cards (at-a-glance) ─────────────────────────── */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

/* ── Responsive additions ───────────────────────────────────── */
@media (max-width: 900px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
  .comparison-cards { grid-template-columns: 1fr; }
  .review-scorecard__criteria .review-score-row__label { width: 100px; }
}
@media (max-width: 640px) {
  .pricing-table th, .pricing-table td { padding: 10px 12px; font-size: 0.82rem; }
  .review-scorecard__summary { gap: 10px; }
  .sidebar-score-card__score { font-size: 1.8rem; }
}
