/*!
Theme Name: POS Blue Theme
Author: Custom
Description: A modern, professional POS marketing theme inspired by a clean SaaS aesthetic. Features a blue and yellow color palette, Inter typography, sticky navigation, card-based layouts, and smooth scroll animations.
Version: 1.0.0
Tested up to: 6.5
Requires at least: 6.0
Requires PHP: 8.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: pos-blue-theme
Tags: block-editor, full-site-editing, one-column, two-columns, custom-colors, custom-menu, featured-images, wide-blocks
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #4C88DA;
  --blue-dark:   #2D6BBF;
  --blue-light:  #7AAEE6;
  --blue-bg:     #EEF4FC;
  --blue-tint:   #F3F6FB;
  --yellow:      #F4BB40;
  --yellow-dark: #D9A020;
  --dark:        #1F2937;
  --dark2:       #111827;
  --body:        #374151;
  --muted:       #6B7280;
  --muted2:      #9CA3AF;
  --border:      #E5E7EB;
  --border2:     #D1D5DB;
  --white:       #FFFFFF;
  --bg-light:    #F9FAFB;
  --green:       #22C55E;
  --red:         #EF4444;

  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  --sh:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --sh2: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --sh3: 0 8px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);

  --max-w: 1140px;
  --pad-x: clamp(20px, 5vw, 60px);
  --pad-y: 96px;

  --trans: .22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1, .wp-block-heading.is-style-h1 { font-size: clamp(34px, 5vw, 56px); }
h2, .wp-block-heading.is-style-h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

p { max-width: 65ch; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-full {
  padding: var(--pad-y) var(--pad-x);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary, .wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button:not([class*="is-style"]) .wp-block-button__link {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(76,136,218,.35);
}
.btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button:not([class*="is-style"]) .wp-block-button__link:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,136,218,.4);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(244,187,64,.35);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,187,64,.4);
}

.btn-outline, .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--white) !important;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,.7);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--sh2); }

.site-header .wp-block-group { max-width: var(--max-w); margin: 0 auto; }

/* Nav links */
.hostinger-ai-site-navigation a,
.site-header .wp-block-navigation a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  padding: 6px 4px;
  transition: color var(--trans);
}
.hostinger-ai-site-navigation a:hover,
.site-header .wp-block-navigation a:hover {
  color: var(--blue);
}

/* Site title / logo in header */
.site-header .wp-block-site-title a,
.site-header .hostinger-ai-site-title a {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.site-header .wp-block-site-title a::after {
  content: '.';
  color: var(--blue);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.site-footer a { color: rgba(255,255,255,.6); transition: color var(--trans); }
.site-footer a:hover { color: var(--white); }
.site-footer .wp-block-site-title a { color: var(--white); font-weight: 800; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--blue-tint);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,136,218,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,187,64,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,136,218,.1);
  color: var(--blue);
  border: 1px solid rgba(76,136,218,.2);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.hero-trust .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
}
.stat-item .stat-value {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh3);
  border-color: rgba(76,136,218,.2);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 22px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.card-tag.blue  { background: rgba(76,136,218,.1);  color: var(--blue); }
.card-tag.green { background: rgba(34,197,94,.1);   color: var(--green); }
.card-tag.red   { background: rgba(239,68,68,.1);   color: var(--red); }
.card-tag.yellow{ background: rgba(244,187,64,.15); color: #B45309; }

/* Problem cards */
.problem-card {
  border-top: 3px solid var(--red);
}
.problem-card .problem-indicator {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   FEATURE TABS
   ============================================================ */
.feat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.feat-tab {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border2);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--trans);
}
.feat-tab:hover { border-color: var(--blue); color: var(--blue); }
.feat-tab.on {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.feat-panel { display: none; }
.feat-panel.on { display: block; animation: slideIn .3s ease; }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  border-radius: var(--r-xl);
  padding: 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card.blue   { background: var(--blue);    color: var(--white); }
.bento-card.navy   { background: var(--dark);    color: var(--white); }
.bento-card.yellow { background: var(--yellow);  color: var(--dark); }
.bento-card.sky    { background: var(--blue-bg); color: var(--dark); }
.bento-card.light  { background: var(--bg-light);color: var(--dark); border: 1px solid var(--border); }
.bento-card.teal   { background: #0D9488;        color: var(--white); }

.bento-card .bento-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.bento-card .bento-value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--dark);
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px;
}

.stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }

.avatar-initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(244,187,64,.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.8); max-width: 55ch; margin: 0 auto; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}

.faq-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.faq-card p { font-size: 14px; color: var(--muted); margin: 0; max-width: none; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-bg);
  color: var(--blue);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.pill.green { background: rgba(34,197,94,.1); color: #15803D; }
.pill.yellow { background: rgba(244,187,64,.15); color: #92400E; }

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-wrap {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, var(--dark), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--dark), transparent); }

.ticker-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-item::after {
  content: '•';
  color: var(--blue);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 { transition-delay: .07s; }
.rv.d2 { transition-delay: .14s; }
.rv.d3 { transition-delay: .21s; }
.rv.d4 { transition-delay: .28s; }

/* ============================================================
   WORDPRESS BLOCK OVERRIDES
   ============================================================ */

/* Constrain content */
.wp-site-blocks { overflow-x: hidden; }

.wp-block-group.alignfull,
.wp-block-cover.alignfull {
  max-width: 100%;
}

/* Headings */
.wp-block-heading {
  color: var(--dark);
  letter-spacing: -0.03em;
}

/* Separator */
.wp-block-separator { border-color: var(--border); }

/* Columns */
.wp-block-columns { gap: 28px; }

/* Cover blocks as hero */
.wp-block-cover {
  border-radius: var(--r-xl);
}

/* Quote */
.wp-block-quote {
  border-left: 3px solid var(--blue);
  padding-left: 20px;
}

/* Table */
.wp-block-table td, .wp-block-table th { border-color: var(--border); }

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap     { display: flex; align-items: center; gap: 12px; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--muted); }
.text-blue   { color: var(--blue) !important; }

.bg-blue-tint { background: var(--blue-tint); }
.bg-light     { background: var(--bg-light); }
.bg-dark      { background: var(--dark); }
.bg-dark2     { background: var(--dark2); }
.bg-blue      { background: var(--blue); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.2); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad-y: 72px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --pad-y: 56px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .feat-tabs { gap: 6px; }
  .feat-tab { font-size: 13px; padding: 8px 14px; }
}

@media (max-width: 560px) {
  :root { --pad-y: 48px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLLED HEADER
   ============================================================ */
.site-header.is-scrolled { box-shadow: var(--sh2); }

/* ============================================================
   SIIOPA PAGE — HEADER & FOOTER
   ============================================================ */
.siiopa-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* Nav */
.siiopa-nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.siiopa-nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.siiopa-nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: #1F2937;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.siiopa-nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4C88DA;
  display: inline-block;
}

.siiopa-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.siiopa-nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: #646464;
  text-decoration: none;
  transition: color .18s;
  letter-spacing: -.01em;
}

.siiopa-nav-links a:hover { color: #4C88DA; }

.siiopa-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.siiopa-btn-login {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9999px;
  border: 1.5px solid #E5E7EB;
  color: #646464;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.siiopa-btn-login:hover {
  border-color: #4C88DA;
  color: #4C88DA;
}

.siiopa-btn-cta {
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 9999px;
  background: #4C88DA;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.siiopa-btn-cta:hover { background: #2D6BBF; }

@media (max-width: 760px) {
  .siiopa-nav-links,
  .siiopa-btn-login { display: none; }
}

/* Footer */
.siiopa-footer {
  background: #111827;
  padding: 32px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.siiopa-foot-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.siiopa-foot-logo {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.3);
  letter-spacing: -.03em;
}

.siiopa-foot-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.siiopa-foot-links a {
  font-size: 12px;
  color: rgba(255,255,255,.24);
  text-decoration: none;
  transition: color .2s;
}

.siiopa-foot-links a:hover { color: rgba(255,255,255,.6); }

.siiopa-foot-copy {
  font-size: 10px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.14);
  margin-top: 16px;
}

/* ============================================================
   BLOG — HERO, CARDS, TAG PILLS, HOVER EFFECTS
   ============================================================ */

/* Hero strip */
.blog-hero {
  border-bottom: 1px solid #E5E7EB;
}

/* Card hover lift */
.blog-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(76,136,218,.14), 0 4px 12px rgba(0,0,0,.08) !important;
}

/* Featured image zoom on hover */
.blog-card .wp-block-post-featured-image img {
  transition: transform 0.35s ease;
}
.blog-card:hover .wp-block-post-featured-image img {
  transform: scale(1.04);
}
.blog-card .wp-block-post-featured-image {
  overflow: hidden;
}

/* Category terms styled as tag pills */
.blog-card-tag .wp-block-post-terms__item,
.blog-card-tag a {
  display: inline-block;
  background: #EEF4FC;
  color: #4C88DA !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  text-decoration: none !important;
  transition: background 0.18s ease, color 0.18s ease;
}
.blog-card-tag a:hover {
  background: #4C88DA;
  color: #ffffff !important;
}

/* Post title link styling inside card */
.blog-card .wp-block-post-title a {
  text-decoration: none;
  transition: color 0.18s ease;
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */

.pos-comments {
  max-width: 740px;
  margin: 0 auto;
}

/* Indent replies */
.pos-comments .children {
  margin-left: 40px;
  margin-top: 16px;
}

/* Reply link */
.pos-comments .comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4C88DA;
  text-decoration: none;
  transition: color 0.18s ease;
}
.pos-comments .comment-reply-link:hover {
  color: #2D6BBF;
}

/* Comment form */
.pos-comments .wp-block-post-comments-form input,
.pos-comments .wp-block-post-comments-form textarea {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.18s ease;
}
.pos-comments .wp-block-post-comments-form input:focus,
.pos-comments .wp-block-post-comments-form textarea:focus {
  border-color: #4C88DA;
  outline: none;
}
.pos-comments .wp-block-post-comments-form .submit,
.pos-comments .wp-block-post-comments-form input[type="submit"] {
  background: #4C88DA;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  width: auto;
  transition: background 0.18s ease;
}
.pos-comments .wp-block-post-comments-form .submit:hover,
.pos-comments .wp-block-post-comments-form input[type="submit"]:hover {
  background: #2D6BBF;
}

/* Placeholder image when no featured image */
.blog-card .wp-block-post-featured-image:empty,
.blog-card .wp-block-post-featured-image a:empty::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, #EEF4FC 0%, #D6E8F8 100%);
}


/* ============================================================
   ICE CREAM — PREMIUM EDITORIAL TEMPLATE (Forbes Advisor style)
   ============================================================ */

/* Design tokens scoped to template */
.ic-wrap, .ic-layout, .ic-article, .ic-sidebar-col,
.ic-hero, .ic-trust-bar, .ic-content-body {
  --ic:       #2563EB;
  --ic-lt:    #EFF6FF;
  --ic-dk:    #1D4ED8;
  --ic-text:  #1A1A1A;
  --ic-muted: #6B6B6B;
  --ic-bdr:   #E5E7EB;
  --ic-bg:    #F9FAFB;
  --ic-grn:   #16A34A;
  --ic-grn-lt:#F0FDF4;
  --ic-red:   #DC2626;
  --ic-red-lt:#FEF2F2;
  --ic-ylw:   #F59E0B;
}

/* ── Breadcrumb bar ── */
.ic-breadcrumb-bar {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 0;
}
.ic-bc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: #6B6B6B;
}
.ic-bc a { color: #6B6B6B; text-decoration: none; }
.ic-bc a:hover { color: #2563EB; }
.ic-bc-sep { margin: 0 6px; }

/* ── Page container ── */
.ic-page-outer {
  background: #fff;
  padding: 0 0 80px;
}

/* ── Two-column layout ── */
.ic-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ic-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
}
.ic-article {
  flex: 1 1 0;
  min-width: 0;
}
.ic-sidebar-col {
  width: 300px;
  flex-shrink: 0;
}

/* ── Article hero ── */
.ic-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 32px;
}
.ic-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 10px;
}
.ic-label a { color: #2563EB; text-decoration: none; }
.ic-label .wp-block-post-terms__item { color: #2563EB; }

/* Title via wp:post-title */
.ic-hero .wp-block-post-title {
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  color: #1A1A1A !important;
  margin: 0 0 20px !important;
}

/* Author row */
.ic-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.ic-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #E5E7EB;
}
.ic-author-meta { display: flex; flex-direction: column; gap: 2px; }
.ic-author-name { font-size: 14px; font-weight: 700; color: #1A1A1A; }
.ic-author-cred { font-size: 12px; color: #6B6B6B; }
.ic-author-divider { width: 1px; height: 32px; background: #E5E7EB; }
.ic-author-date { font-size: 13px; color: #6B6B6B; }
.ic-author-read { font-size: 13px; color: #6B6B6B; }

/* ── Trust / Authority bar ── */
.ic-trust-bar {
  display: flex;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
  background: #fff;
}
.ic-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border-right: 1px solid #E5E7EB;
  text-align: center;
}
.ic-trust-item:last-child { border-right: none; }
.ic-trust-icon { font-size: 20px; margin-bottom: 6px; }
.ic-trust-num {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 4px;
}
.ic-trust-label { font-size: 12px; color: #6B6B6B; font-weight: 500; }

/* ── Quick dive tabs ── */
.ic-tabs-section { margin-bottom: 36px; }
.ic-tabs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 10px;
}
.ic-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 0;
}
.ic-tab {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6B6B6B;
  padding: 9px 18px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.ic-tab:hover { color: #2563EB; }
.ic-tab.active {
  color: #2563EB;
  border-bottom-color: #2563EB;
}

/* ── Section headers (H2) ── */
.ic-article .wp-block-post-content h2,
.ic-article .ic-content-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 48px 0 20px;
  padding-top: 48px;
  border-top: 1px solid #E5E7EB;
}
.ic-article .wp-block-post-content h2:first-of-type,
.ic-section-first h2 { margin-top: 0; padding-top: 0; border-top: none; }

.ic-article .wp-block-post-content h3,
.ic-article .ic-content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 28px 0 12px;
}

.ic-article .wp-block-post-content p,
.ic-article .ic-content-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 16px;
}

/* ── Featured partners ── */
.ic-partners-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 12px;
}
.ic-partners-label::before,
.ic-partners-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.ic-partner-card {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ic-partner-card:hover {
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(37,99,235,.08);
}
.ic-partner-logo {
  width: 80px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -.03em;
}
.ic-partner-logo img { max-width: 80px; max-height: 40px; object-fit: contain; }
.ic-partner-divider { width: 1px; height: 60px; background: #E5E7EB; flex-shrink: 0; }
.ic-partner-info { flex: 1; min-width: 0; }
.ic-partner-price {
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.ic-partner-price span { color: #6B6B6B; font-weight: 400; }
.ic-partner-feats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ic-partner-feat {
  font-size: 12px;
  color: #374151;
  background: #F3F4F6;
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 500;
}
.ic-partner-cta {
  flex-shrink: 0;
  display: inline-block;
  background: #2563EB;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background .18s ease;
  white-space: nowrap;
}
.ic-partner-cta:hover { background: #1D4ED8; }
.ic-partner-rating {
  text-align: center;
  flex-shrink: 0;
}
.ic-partner-rating-num {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1;
}
.ic-partner-rating-stars { font-size: 13px; color: #F59E0B; letter-spacing: 1px; }

/* ── Comparison table ── */
.ic-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin: 24px 0 48px;
  -webkit-overflow-scrolling: touch;
}
.ic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.ic-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.ic-table thead th {
  background: #1A1A1A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
}
.ic-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background .12s ease;
}
.ic-table tbody tr:last-child { border-bottom: none; }
.ic-table tbody tr:nth-child(odd) { background: #fff; }
.ic-table tbody tr:nth-child(even) { background: #F9FAFB; }
.ic-table tbody tr:hover { background: #EFF6FF; }
.ic-table td { padding: 13px 16px; color: #1A1A1A; vertical-align: middle; }
.ic-table-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #1A1A1A;
}
.ic-table-star { color: #F59E0B; }
.ic-table-best { font-size: 13px; color: #374151; }
.ic-table-price { font-size: 13px; font-weight: 600; color: #1A1A1A; }
.ic-table-cta {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.ic-table-cta:hover { background: #2563EB; color: #fff; }

/* ── Ranking cards ── */
.ic-rank-item {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #fff;
  transition: box-shadow .2s ease;
}
.ic-rank-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.ic-rank-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.ic-rank-num {
  width: 36px;
  height: 36px;
  background: #1A1A1A;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ic-rank-logo {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  flex: 1;
  min-width: 0;
}
.ic-rank-logo img { max-height: 32px; max-width: 100px; object-fit: contain; }
.ic-rank-badge {
  background: #1A1A1A;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1;
  flex-shrink: 0;
}
.ic-rank-badge span { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.6); }
.ic-rank-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; margin-left: 4px; }
.ic-rank-body { padding: 20px 24px; }
.ic-rank-tagline {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.ic-rank-pricing {
  font-size: 14px;
  color: #6B6B6B;
  margin-bottom: 18px;
}
.ic-rank-pricing strong { color: #1A1A1A; font-weight: 700; }

/* Pros / Cons inside rank card */
.ic-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 20px;
}
.ic-pros, .ic-cons {
  border-radius: 10px;
  padding: 14px 16px;
}
.ic-pros { background: #F0FDF4; border: 1px solid #BBF7D0; }
.ic-cons { background: #FEF2F2; border: 1px solid #FECACA; }
.ic-pros-head, .ic-cons-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ic-pros-head { color: #15803D; }
.ic-cons-head { color: #B91C1C; }
.ic-pros ul, .ic-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ic-pros li, .ic-cons li {
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
  padding: 4px 0 4px 20px;
  position: relative;
}
.ic-pros li::before { content: "✓"; position: absolute; left: 0; color: #16A34A; font-weight: 700; }
.ic-cons li::before { content: "✗"; position: absolute; left: 0; color: #DC2626; font-weight: 700; }

.ic-rank-foot {
  padding: 16px 24px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ic-rank-cta {
  display: inline-block;
  background: #2563EB;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 9999px;
  text-decoration: none !important;
  transition: background .18s ease;
}
.ic-rank-cta:hover { background: #1D4ED8; }
.ic-rank-note { font-size: 12px; color: #6B6B6B; }

/* ── Methodology ── */
.ic-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.ic-method-item {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
}
.ic-method-label {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.ic-method-pct {
  font-size: 24px;
  font-weight: 800;
  color: #2563EB;
  margin-bottom: 10px;
}
.ic-method-bar-track {
  height: 6px;
  background: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
}
.ic-method-bar-fill {
  height: 100%;
  background: #2563EB;
  border-radius: 9999px;
  transition: width 1s ease;
}
.ic-method-desc { font-size: 12px; color: #6B6B6B; margin-top: 8px; line-height: 1.5; }

/* ── Callout / info box ── */
.ic-callout {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: #1E40AF;
  line-height: 1.65;
}

/* ── How to choose ── */
.ic-choose-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.ic-choose-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}
.ic-choose-list li:last-child { border-bottom: none; }
.ic-choose-icon {
  width: 32px;
  height: 32px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ic-choose-text strong { color: #1A1A1A; display: block; margin-bottom: 4px; font-size: 15px; }

/* ── FAQ ── */
.ic-faq { margin-top: 0; }
.ic-faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.ic-faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s ease;
  font-family: inherit;
}
.ic-faq-q:hover { background: #F9FAFB; }
.ic-faq-icon {
  width: 24px;
  height: 24px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2563EB;
  flex-shrink: 0;
  transition: transform .2s ease, background .15s ease;
  line-height: 1;
}
.ic-faq-item.open .ic-faq-icon { transform: rotate(45deg); background: #2563EB; color: #fff; }
.ic-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}
.ic-faq-item.open .ic-faq-a { display: block; }

/* ── Sticky sidebar ── */
.ic-sidebar-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TOC widget */
.ic-toc-widget {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}
.ic-toc-head {
  background: #1A1A1A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.ic-toc-nav { padding: 8px 0; }
.ic-toc-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 7px 16px;
  border-left: 3px solid transparent;
  transition: all .15s ease;
  line-height: 1.4;
}
.ic-toc-nav a:hover { color: #2563EB; background: #EFF6FF; border-left-color: #2563EB; }
.ic-toc-nav a.ic-toc-active { color: #2563EB; background: #EFF6FF; border-left-color: #2563EB; font-weight: 600; }
.ic-toc-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #E5E7EB;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #6B6B6B;
  flex-shrink: 0;
}
.ic-toc-active .ic-toc-counter { background: #2563EB; color: #fff; }

/* Partner ad widget */
.ic-sidebar-partner {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.ic-sb-partner-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6B6B6B;
  padding: 10px 16px;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.ic-sb-partner-body { padding: 16px; }
.ic-sb-partner-name { font-size: 16px; font-weight: 800; color: #1A1A1A; margin-bottom: 4px; }
.ic-sb-partner-score {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.ic-sb-partner-num { font-size: 20px; font-weight: 800; color: #1A1A1A; }
.ic-sb-partner-stars { color: #F59E0B; font-size: 13px; }
.ic-sb-partner-feat { font-size: 12px; color: #374151; line-height: 1.6; margin-bottom: 14px; }
.ic-sb-partner-cta {
  display: block;
  background: #2563EB;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.ic-sb-partner-cta:hover { background: #1D4ED8; color: #fff; }

/* CTA widget */
.ic-sidebar-cta {
  background: #1A1A1A;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.ic-sb-cta-heading { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ic-sb-cta-sub { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.5; }
.ic-sb-cta-btn {
  display: block;
  background: #2563EB;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.ic-sb-cta-btn:hover { background: #1D4ED8; color: #fff; }

/* ── Related articles ── */
.ic-related { margin-top: 64px; padding-top: 40px; border-top: 1px solid #E5E7EB; }
.ic-related-heading {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.ic-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ic-related-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}
.ic-related-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: #2563EB; }
.ic-related-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #F3F4F6;
  display: block;
}
.ic-related-body { padding: 14px 16px; }
.ic-related-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 6px;
}
.ic-related-title { font-size: 14px; font-weight: 700; color: #1A1A1A; line-height: 1.4; }

/* ── Verdict box ── */
.ic-verdict {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ic-verdict-icon { font-size: 28px; flex-shrink: 0; }
.ic-verdict-body h4 { font-size: 15px; font-weight: 800; color: #1A1A1A; margin-bottom: 6px; }
.ic-verdict-body p { font-size: 14px; color: #374151; line-height: 1.65; margin: 0; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ic-layout { flex-direction: column-reverse; }
  .ic-sidebar-col { width: 100%; }
  .ic-sidebar-sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .ic-toc-widget { display: none; }
  .ic-sidebar-partner, .ic-sidebar-cta { flex: 1 1 220px; }
}
@media (max-width: 700px) {
  .ic-partner-card { flex-wrap: wrap; }
  .ic-partner-divider { display: none; }
  .ic-pros-cons { grid-template-columns: 1fr; }
  .ic-related-grid { grid-template-columns: 1fr 1fr; }
  .ic-trust-bar { flex-wrap: wrap; }
  .ic-trust-item { min-width: 33%; border-bottom: 1px solid #E5E7EB; }
  .ic-rank-head { flex-wrap: wrap; }
  .ic-sidebar-partner, .ic-sidebar-cta { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .ic-related-grid { grid-template-columns: 1fr; }
  .ic-method-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Single post body typography ── */
.ic-article .wp-block-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
.ic-article .wp-block-post-content p { margin-bottom: 20px; }
.ic-article .wp-block-post-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.025em;
  margin: 44px 0 16px;
  padding-top: 44px;
  border-top: 1px solid #E5E7EB;
}
.ic-article .wp-block-post-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.ic-article .wp-block-post-content h3 { font-size: 19px; font-weight: 700; color: #1A1A1A; margin: 28px 0 12px; }
.ic-article .wp-block-post-content ul,
.ic-article .wp-block-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.ic-article .wp-block-post-content li { margin-bottom: 8px; line-height: 1.7; }
.ic-article .wp-block-post-content a { color: #2563EB; text-decoration: underline; text-underline-offset: 2px; }
.ic-article .wp-block-post-content strong { color: #1A1A1A; }
.ic-article .wp-block-post-content blockquote {
  border-left: 3px solid #2563EB;
  padding: 12px 20px;
  margin: 24px 0;
  background: #EFF6FF;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #1E40AF;
}

/* Post nav */
.ic-post-nav-wrap {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

/* Comments in editorial style */
.ic-comments-wrap { margin-top: 48px; }
.ic-comments-wrap .wp-block-comments-title {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 24px;
}
.ic-comments-wrap .wp-block-comment-template li {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  list-style: none;
}
.ic-comments-wrap .wp-block-comment-author-name { font-weight: 700; font-size: 14px; color: #1A1A1A; }
.ic-comments-wrap .wp-block-comment-date { font-size: 12px; color: #9CA3AF; margin-bottom: 8px; }
.ic-comments-wrap .wp-block-comment-content p { font-size: 15px; color: #374151; line-height: 1.65; margin: 0; }
.ic-comments-wrap .children { margin-left: 32px; margin-top: 12px; }
.ic-comments-wrap .comment-reply-link { font-size: 13px; font-weight: 600; color: #2563EB; text-decoration: none; margin-top: 8px; display: inline-block; }
.ic-comments-wrap .comment-reply-link:hover { color: #1D4ED8; }

/* Comment form */
.ic-comments-wrap .wp-block-post-comments-form input[type="text"],
.ic-comments-wrap .wp-block-post-comments-form input[type="email"],
.ic-comments-wrap .wp-block-post-comments-form input[type="url"],
.ic-comments-wrap .wp-block-post-comments-form textarea {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  transition: border-color .18s;
  background: #fff;
}
.ic-comments-wrap .wp-block-post-comments-form input:focus,
.ic-comments-wrap .wp-block-post-comments-form textarea:focus { border-color: #2563EB; outline: none; }
.ic-comments-wrap .wp-block-post-comments-form input[type="submit"],
.ic-comments-wrap .wp-block-post-comments-form .submit {
  background: #2563EB; color: #fff; border: none; border-radius: 8px;
  padding: 11px 24px; font-weight: 700; font-size: 14px; cursor: pointer;
  width: auto; font-family: inherit; transition: background .18s;
}
.ic-comments-wrap .wp-block-post-comments-form input[type="submit"]:hover { background: #1D4ED8; }

/* Breadcrumb title fill */
#ic-bc-title { color: #374151; font-weight: 500; }

/* ============================================================
   BLOG HUB — HUB NAMESPACE
   ============================================================ */

.hub-wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }

/* ── Hero ── */
.hub-hero {
  background: linear-gradient(140deg, #F8FAFF 0%, #EEF4FC 55%, #F4F8FF 100%);
  border-bottom: 1px solid #E5E7EB; padding: 72px 0 64px; overflow: hidden; position: relative;
}
.hub-hero::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(76,136,218,.1) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none;
}
.hub-hero-inner { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.hub-hero-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(76,136,218,.1);
  color: #4C88DA; border: 1px solid rgba(76,136,218,.2); border-radius: 9999px;
  padding: 5px 14px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hub-hero h1 {
  font-size: clamp(28px,4vw,50px); font-weight: 800; color: #111827;
  letter-spacing: -0.03em; line-height: 1.12; max-width: 680px; margin-bottom: 18px;
}
.hub-hero-intro { font-size: 17px; color: #4B5563; line-height: 1.65; max-width: 560px; margin-bottom: 24px; }
.hub-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #9CA3AF; margin-bottom: 28px; }
.hub-hero-meta strong { color: #374151; }
.hub-hero-meta span::before { content: ''; }
.hub-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hub-hero-cta {
  display: inline-flex; align-items: center; gap: 6px; background: #4C88DA; color: #fff;
  font-size: 15px; font-weight: 700; padding: 13px 28px; border-radius: 9999px;
  text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(76,136,218,.35);
}
.hub-hero-cta:hover { background: #2D6BBF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,136,218,.4); color: #fff; }
.hub-hero-sec-link { font-size: 14px; font-weight: 600; color: #6B7280; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color .18s; }
.hub-hero-sec-link:hover { color: #4C88DA; }
.hub-hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.hub-hero-trust span { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: #374151; }
.hub-hero-trust span::before { content: '✓'; color: #22C55E; font-weight: 800; font-size: 11px; }

/* Rating Card Widget */
.hub-hero-visual { display: flex; align-items: center; justify-content: flex-end; }
.hub-rating-card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 20px;
  padding: 22px 20px; width: 320px; box-shadow: 0 24px 60px rgba(0,0,0,.13), 0 4px 16px rgba(76,136,218,.06);
  animation: floatY 4s ease-in-out infinite; flex-shrink: 0;
}
.hub-rc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #F3F4F6; }
.hub-rc-title { font-size: 14px; font-weight: 800; color: #111827; }
.hub-rc-badge { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #4C88DA; background: #EEF4FC; padding: 3px 9px; border-radius: 9999px; }
.hub-rc-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; margin-bottom: 4px; transition: background .18s; cursor: default; }
.hub-rc-row:hover { background: #F8FAFF; }
.hub-rc-num { width: 22px; height: 22px; background: #EEF4FC; color: #4C88DA; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.hub-rc-logo { font-size: 12.5px; font-weight: 700; color: #111827; width: 68px; flex-shrink: 0; }
.hub-rc-stars { color: #F4BB40; font-size: 11px; letter-spacing: 1px; flex: 1; }
.hub-rc-score { font-size: 13px; font-weight: 800; color: #111827; width: 26px; text-align: right; flex-shrink: 0; }
.hub-rc-best { font-size: 10px; color: #9CA3AF; width: 64px; text-align: right; flex-shrink: 0; }
.hub-rc-footer { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #9CA3AF; margin-top: 14px; padding-top: 12px; border-top: 1px solid #F3F4F6; }
.hub-rc-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }

/* ── Hub Sections ── */
.hub-section { padding: 72px 0; }
.hub-section-alt { background: #F9FAFB; }
.hub-section-hdr { margin-bottom: 40px; }
.hub-section-hdr .hub-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4C88DA; margin-bottom: 8px; display: block; }
.hub-section-hdr h2 { font-size: clamp(22px,3vw,34px); font-weight: 800; color: #111827; letter-spacing: -0.03em; margin-bottom: 12px; }
.hub-section-hdr p { font-size: 16px; color: #6B7280; max-width: 560px; margin: 0; }
.hub-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4C88DA; display: block; margin-bottom: 8px; }

/* ── Compact Review Panels ── */
.hub-reviews { display: flex; flex-direction: column; gap: 14px; }
.hub-review {
  border: 1px solid #E5E7EB; border-radius: 14px; overflow: hidden;
  background: #fff; transition: box-shadow .22s, border-color .22s;
}
.hub-review:hover { box-shadow: 0 6px 24px rgba(76,136,218,.09); border-color: rgba(76,136,218,.25); }
.hub-review-toast    { border-left: 4px solid #FF6B35; }
.hub-review-square   { border-left: 4px solid #111827; }
.hub-review-clover   { border-left: 4px solid #1CC47E; }
.hub-review-ls       { border-left: 4px solid #FF4438; }

/* Review header row */
.hub-review-head {
  display: flex; align-items: center; gap: 14px; padding: 16px 22px;
  border-bottom: 1px solid #F3F4F6; flex-wrap: wrap;
}
.hub-review-logo {
  width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0;
  letter-spacing: .02em;
}
.hub-review-title-blk { flex: 1; min-width: 160px; }
.hub-review-title-blk h4 { font-size: 15px; font-weight: 800; color: #111827; margin: 0 0 2px; }
.hub-review-title-blk span { font-size: 11.5px; color: #6B7280; }
.hub-review-rating { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hub-review-stars { color: #F4BB40; font-size: 12px; letter-spacing: 1px; }
.hub-review-score { font-size: 14px; font-weight: 800; color: #111827; }
.hub-review-link {
  font-size: 12.5px; font-weight: 700; color: #4C88DA; text-decoration: none;
  padding: 7px 16px; border: 1.5px solid #4C88DA; border-radius: 9999px;
  transition: all .18s; flex-shrink: 0; white-space: nowrap;
}
.hub-review-link:hover { background: #4C88DA; color: #fff; }

/* Review body: description | pros | cons */
.hub-review-body { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.hub-review-desc-col { padding: 16px 22px; border-right: 1px solid #F3F4F6; }
.hub-review-desc-col p { font-size: 13px; color: #4B5563; line-height: 1.65; margin: 0; max-width: none; }
.hub-review-pros-col,
.hub-review-cons-col { padding: 16px 18px; }
.hub-review-pros-col { border-right: 1px solid #F3F4F6; }
.hub-review-col-hd { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.hub-review-pros-col .hub-review-col-hd { color: #15803D; }
.hub-review-cons-col .hub-review-col-hd { color: #DC2626; }
.hub-review-pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.hub-review-pc-list li { font-size: 12.5px; color: #374151; display: flex; align-items: flex-start; gap: 5px; line-height: 1.4; }
.hub-review-pros-col .hub-review-pc-list li::before { content: '+'; color: #22C55E; font-weight: 800; flex-shrink: 0; }
.hub-review-cons-col .hub-review-pc-list li::before { content: '–'; color: #EF4444; font-weight: 800; flex-shrink: 0; }

/* Review footer */
.hub-review-foot {
  display: flex; align-items: center; gap: 8px; padding: 11px 22px;
  border-top: 1px solid #F3F4F6; background: #FAFBFF; flex-wrap: wrap;
}
.hub-review-pill { font-size: 11px; font-weight: 600; color: #4C88DA; background: #EEF4FC; border-radius: 9999px; padding: 3px 10px; white-space: nowrap; }
.hub-review-price { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; color: #6B7280; flex-shrink: 0; }
.hub-review-price strong { color: #111827; font-weight: 800; font-size: 15px; }

/* ── Use Case Cards ── */
.hub-usecase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hub-usecase-card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 14px;
  padding: 28px 22px; display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s; text-decoration: none;
}
.hub-usecase-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(76,136,218,.1); border-color: rgba(76,136,218,.3); }
.hub-usecase-icon { font-size: 34px; margin-bottom: 14px; line-height: 1; }
.hub-usecase-type { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #4C88DA; margin-bottom: 6px; }
.hub-usecase-title { font-size: 15px; font-weight: 800; color: #111827; margin-bottom: 8px; line-height: 1.25; }
.hub-usecase-pick { font-size: 12px; color: #6B7280; margin-bottom: 10px; }
.hub-usecase-pick strong { color: #1F2937; font-weight: 700; }
.hub-usecase-reason { font-size: 13px; color: #374151; line-height: 1.55; flex: 1; max-width: none; margin-bottom: 16px; }
.hub-usecase-arrow { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: #4C88DA; text-decoration: none; margin-top: auto; transition: gap .18s; }
.hub-usecase-arrow:hover { gap: 8px; }

/* ── Editor's Picks (horizontal post cards) ── */
.hub-guide-grid { display: flex; flex-direction: column; gap: 18px; }
.hub-guide-card {
  display: flex; align-items: stretch;
  border: 1px solid #E5E7EB; border-radius: 14px; overflow: hidden;
  background: #fff; text-decoration: none; color: inherit;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.hub-guide-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(76,136,218,.1); border-color: rgba(76,136,218,.25); }
.hub-guide-card .wp-block-post-featured-image { width: 260px; flex-shrink: 0; overflow: hidden; }
.hub-guide-card .wp-block-post-featured-image a,
.hub-guide-card .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hub-guide-card .wp-block-post-featured-image:empty,
.hub-guide-card .wp-block-post-featured-image:has(a:empty)::after {
  content: ''; display: block; width: 260px; height: 100%;
  background: linear-gradient(135deg, #EEF4FC, #D6E8F8); min-height: 160px;
}
.hub-guide-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.hub-guide-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #4C88DA; margin-bottom: 8px; display: block; }
.hub-guide-cat a { color: inherit; text-decoration: none; }
.hub-guide-title { font-size: 18px; font-weight: 800; color: #111827; letter-spacing: -.02em; line-height: 1.3; margin-bottom: 8px; }
.hub-guide-title a { text-decoration: none; color: inherit; transition: color .18s; }
.hub-guide-title a:hover { color: #4C88DA; }
.hub-guide-excerpt { font-size: 14px; color: #6B7280; line-height: 1.6; max-width: none; margin-bottom: 14px; flex: 1; }
.hub-guide-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #9CA3AF; flex-wrap: wrap; }
.hub-guide-read { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: #4C88DA; text-decoration: none; margin-top: 10px; transition: gap .18s; }
.hub-guide-read:hover { gap: 8px; color: #2D6BBF; }

/* ── Category Filter Pills ── */
.hub-cat-filters { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 28px; }
.hub-cat-pill {
  display: inline-block; padding: 8px 18px; border-radius: 9999px; font-size: 13.5px;
  font-weight: 600; text-decoration: none; border: 1.5px solid #E5E7EB;
  color: #6B7280; background: #fff; transition: all .18s; white-space: nowrap;
}
.hub-cat-pill:hover { border-color: #4C88DA; color: #4C88DA; }
.hub-cat-pill.active { background: #4C88DA; border-color: #4C88DA; color: #fff; }

/* ── Blog Section Container ── */
.hub-blog-section { padding: 72px 0 80px; }

/* ── Archive header (used in archive.html) ── */
.hub-archive-header { background: #F8FAFF; border-bottom: 1px solid #E5E7EB; padding: 56px 0 40px; }
.hub-archive-header .hub-label { margin-bottom: 6px; }
.hub-archive-header h1 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: #111827; letter-spacing: -0.03em; margin-bottom: 10px; }
.hub-archive-header p { font-size: 16px; color: #6B7280; max-width: 520px; margin: 0; }

/* ── Hub Responsive ── */
@media (max-width: 1024px) {
  .hub-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hub-hero-visual { justify-content: flex-start; }
  .hub-review-body { grid-template-columns: 1fr 1fr; }
  .hub-review-desc-col { grid-column: span 2; border-right: none; border-bottom: 1px solid #F3F4F6; }
  .hub-usecase-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hub-rating-card { width: 100%; max-width: 360px; animation: none; }
  .hub-review-body { grid-template-columns: 1fr; }
  .hub-review-desc-col { grid-column: span 1; border-right: none; border-bottom: 1px solid #F3F4F6; }
  .hub-review-pros-col { border-right: none; border-bottom: 1px solid #F3F4F6; }
  .hub-guide-card { flex-direction: column; }
  .hub-guide-card .wp-block-post-featured-image { width: 100%; height: 200px; }
  .hub-section { padding: 48px 0; }
}
@media (max-width: 600px) {
  .hub-usecase-grid { grid-template-columns: 1fr; }
  .hub-hero-actions { flex-direction: column; align-items: flex-start; }
  .hub-review-head { gap: 10px; }
  .hub-review-body { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARISON PAGE — CMP NAMESPACE
   ============================================================ */

.cmp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }

/* ── Breadcrumb ── */
.cmp-breadcrumb { background: #F9FAFB; border-bottom: 1px solid #E5E7EB; padding: 10px 0; }
.cmp-bc { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); font-size: 13px; color: #6B7280; }
.cmp-bc a { color: #6B7280; text-decoration: none; transition: color .18s; }
.cmp-bc a:hover { color: #4C88DA; }
.cmp-bc-sep { margin: 0 6px; color: #9CA3AF; }

/* ── Hero ── */
.cmp-hero { background: #F8FAFF; border-bottom: 1px solid #E5E7EB; padding: 56px 0 48px; }
.cmp-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(76,136,218,.1); color: #4C88DA;
  border: 1px solid rgba(76,136,218,.2); border-radius: 9999px;
  padding: 5px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px;
}
.cmp-hero h1 {
  font-size: clamp(28px,4vw,46px); font-weight: 800; color: #111827;
  letter-spacing: -0.03em; line-height: 1.15; max-width: 820px; margin-bottom: 16px;
}
.cmp-hero-intro { font-size: 17px; color: #4B5563; line-height: 1.65; max-width: 680px; margin-bottom: 20px; }
.cmp-hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #6B7280; margin-bottom: 16px; }
.cmp-hero-meta strong { color: #1F2937; }
.cmp-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.cmp-hero-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #374151; }
.cmp-hero-trust span::before { content: '✓'; color: #22C55E; font-weight: 800; }

/* ── Quick Nav ── */
.cmp-quicknav {
  background: #fff; border-bottom: 1px solid #E5E7EB;
  position: sticky; top: 62px; z-index: 90; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cmp-quicknav::-webkit-scrollbar { display: none; }
.cmp-quicknav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px);
  display: flex;
}
.cmp-quicknav a {
  display: inline-block; padding: 14px 14px; font-size: 13.5px; font-weight: 600;
  color: #6B7280; text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .18s, border-color .18s;
}
.cmp-quicknav a:hover,
.cmp-quicknav a.active { color: #4C88DA; border-bottom-color: #4C88DA; }

/* ── Sections ── */
.cmp-section { padding: 72px 0; }
.cmp-section-alt { background: #F9FAFB; }
.cmp-section-hdr { margin-bottom: 40px; }
.cmp-section-hdr .cmp-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4C88DA; margin-bottom: 8px; display: block; }
.cmp-section-hdr h2 { font-size: clamp(22px,3vw,34px); font-weight: 800; color: #111827; letter-spacing: -0.03em; margin-bottom: 12px; }
.cmp-section-hdr p { font-size: 16px; color: #6B7280; max-width: 560px; margin: 0; }
.cmp-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4C88DA; display: block; margin-bottom: 8px; }

/* ── Top Picks Grid ── */
.cmp-picks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cmp-pick-card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.cmp-pick-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(76,136,218,.12); border-color: rgba(76,136,218,.3); }
.cmp-pick-card.featured { border-color: #4C88DA; border-width: 2px; position: relative; }
.cmp-pick-card.featured::before {
  content: "Editor\2019s Pick"; position: absolute; top: -12px; left: 24px;
  background: #4C88DA; color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 9999px;
}
.cmp-pick-name { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 4px; }
.cmp-pick-tagline { font-size: 12px; color: #6B7280; font-weight: 500; margin-bottom: 12px; }
.cmp-pick-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cmp-pick-stars { color: #F4BB40; font-size: 15px; letter-spacing: 1px; }
.cmp-pick-score { font-size: 14px; font-weight: 700; color: #111827; }
.cmp-pick-price { font-size: 13px; color: #6B7280; margin-bottom: 4px; }
.cmp-pick-price strong { color: #111827; font-weight: 700; }
.cmp-pick-best { display: inline-block; background: #EEF4FC; color: #4C88DA; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 9999px; margin-bottom: 14px; letter-spacing: .03em; }
.cmp-pick-feats { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
.cmp-pick-feats li { font-size: 13px; color: #374151; display: flex; align-items: flex-start; gap: 7px; }
.cmp-pick-feats li::before { content: '✓'; color: #22C55E; font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.cmp-pick-cta {
  display: block; text-align: center; background: #4C88DA; color: #fff;
  font-size: 14px; font-weight: 700; padding: 11px 20px; border-radius: 9999px;
  text-decoration: none; margin-top: auto;
  transition: background .2s, transform .2s;
}
.cmp-pick-cta:hover { background: #2D6BBF; transform: translateY(-1px); color: #fff; }
.cmp-pick-cta.outline { background: transparent; border: 2px solid #4C88DA; color: #4C88DA; }
.cmp-pick-cta.outline:hover { background: #4C88DA; color: #fff; }

/* ── Comparison Tables ── */
.cmp-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #E5E7EB; }
.cmp-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.cmp-table th {
  background: #F8FAFF; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #6B7280; padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB; text-align: left; white-space: nowrap;
}
.cmp-table td { padding: 16px 20px; border-bottom: 1px solid #F3F4F6; color: #374151; vertical-align: middle; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: #FAFBFF; }
.cmp-table .cmp-t-name { font-weight: 700; color: #111827; font-size: 15px; }
.cmp-table .cmp-t-check { color: #22C55E; font-size: 16px; font-weight: 700; text-align: center; }
.cmp-table .cmp-t-cross { color: #EF4444; font-size: 16px; text-align: center; }
.cmp-table .cmp-t-stars { color: #F4BB40; letter-spacing: 1px; }
.cmp-table-deep th { background: #111827; color: rgba(255,255,255,.75); }
.cmp-table-deep th:first-child { background: #111827; color: rgba(255,255,255,.5); }
.cmp-table-deep td:not(:first-child) { text-align: center; }
.cmp-table-deep th:not(:first-child) { text-align: center; }
.cmp-table-deep .cmp-t-cat { background: #F8FAFF; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4C88DA; text-align: left !important; }

/* ── POS Review Cards ── */
.cmp-pos-section { border: 1px solid #E5E7EB; border-radius: 16px; background: #fff; overflow: hidden; }
.cmp-pos-header {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 28px 32px; border-bottom: 1px solid #E5E7EB; background: #F8FAFF;
}
.cmp-pos-logo-box {
  width: 56px; height: 56px; border-radius: 12px; background: #fff;
  border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #111827; text-align: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cmp-pos-title-block { flex: 1; min-width: 0; }
.cmp-pos-title-block h3 { font-size: 20px; font-weight: 800; color: #111827; margin: 0 0 4px; }
.cmp-pos-title-block .cmp-pos-tagline { font-size: 13px; color: #6B7280; margin: 0; }
.cmp-pos-rating-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cmp-pos-rating-num { font-size: 28px; font-weight: 800; color: #111827; line-height: 1; }
.cmp-pos-rating-stars { color: #F4BB40; font-size: 14px; letter-spacing: 1px; }
.cmp-pos-rating-label { font-size: 11px; color: #9CA3AF; font-weight: 500; }
.cmp-pos-cta-btn {
  background: #4C88DA; color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 9999px; text-decoration: none;
  white-space: nowrap; transition: background .2s;
}
.cmp-pos-cta-btn:hover { background: #2D6BBF; color: #fff; }
.cmp-pos-body { padding: 32px; }
.cmp-pos-body-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.cmp-pos-why { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 28px; }
.cmp-pos-why h4 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.cmp-pos-why p { max-width: none; margin-bottom: 14px; }
.cmp-pos-why p:last-child { margin-bottom: 0; }

/* ── Pros & Cons ── */
.cmp-pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.cmp-pc-box { border-radius: 10px; padding: 18px 20px; }
.cmp-pc-box.pros { background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.2); }
.cmp-pc-box.cons { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.15); }
.cmp-pc-box h5 { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.cmp-pc-box.pros h5 { color: #15803D; }
.cmp-pc-box.cons h5 { color: #DC2626; }
.cmp-pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.cmp-pc-list li { font-size: 13.5px; color: #374151; display: flex; align-items: flex-start; gap: 7px; }
.cmp-pc-list.pros li::before { content: '+'; color: #22C55E; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.cmp-pc-list.cons li::before { content: '–'; color: #EF4444; font-weight: 800; font-size: 14px; flex-shrink: 0; }

/* ── Features Grid ── */
.cmp-features-section h4,
.cmp-pricing-section h4 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 14px; }
.cmp-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px; }
.cmp-feat-item {
  background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 8px;
  padding: 12px 14px; font-size: 13px; color: #374151;
  display: flex; align-items: center; gap: 8px;
}
.cmp-feat-icon { font-size: 16px; flex-shrink: 0; }

/* ── Pricing Tiers ── */
.cmp-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.cmp-pricing-tier { border: 1px solid #E5E7EB; border-radius: 10px; padding: 18px 16px; background: #fff; }
.cmp-pricing-tier.popular { border-color: #4C88DA; border-width: 2px; position: relative; }
.cmp-pricing-tier.popular::before {
  content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: #4C88DA; color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 10px; border-radius: 9999px; white-space: nowrap;
}
.cmp-pricing-tier-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #9CA3AF; margin-bottom: 6px; }
.cmp-pricing-tier-price { font-size: 24px; font-weight: 800; color: #111827; line-height: 1; margin-bottom: 4px; }
.cmp-pricing-tier-price sub { font-size: 13px; font-weight: 500; color: #6B7280; }
.cmp-pricing-tier-desc { font-size: 12px; color: #6B7280; }

/* ── Sidebar Score Card ── */
.cmp-pos-score-card { background: #F8FAFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 20px; position: sticky; top: 120px; }
.cmp-pos-score-card h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9CA3AF; margin-bottom: 14px; }
.cmp-score-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cmp-score-label { font-size: 13px; color: #374151; flex: 1; min-width: 0; }
.cmp-score-bar-wrap { width: 80px; height: 6px; background: #E5E7EB; border-radius: 9999px; overflow: hidden; flex-shrink: 0; }
.cmp-score-bar { height: 100%; background: #4C88DA; border-radius: 9999px; }
.cmp-score-val { font-size: 13px; font-weight: 700; color: #111827; width: 30px; text-align: right; flex-shrink: 0; }

/* ── Bar Charts ── */
.cmp-charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cmp-chart-box { background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 28px; }
.cmp-chart-box h4 { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 22px; }
.cmp-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cmp-bar-row:last-child { margin-bottom: 0; }
.cmp-bar-name { font-size: 13px; font-weight: 600; color: #374151; width: 128px; flex-shrink: 0; }
.cmp-bar-track { flex: 1; height: 28px; background: #F3F4F6; border-radius: 6px; overflow: hidden; }
.cmp-bar-fill {
  height: 100%; border-radius: 6px; display: flex; align-items: center;
  padding-left: 10px; font-size: 12px; font-weight: 700; color: #fff;
  width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.cmp-bar-fill.blue   { background: #4C88DA; }
.cmp-bar-fill.green  { background: #22C55E; }
.cmp-bar-fill.yellow { background: #D97706; }
.cmp-bar-fill.purple { background: #7C3AED; }
.cmp-bar-fill.animated { width: var(--cmp-w, 0%); }

/* ── Use Cases ── */
.cmp-usecase-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding-top: 4px; }
.cmp-usecase-text h3 { font-size: 22px; font-weight: 800; color: #111827; margin-bottom: 12px; }
.cmp-usecase-text p { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 14px; max-width: none; }
.cmp-usecase-text p:last-child { margin-bottom: 0; }
.cmp-usecase-recs { display: flex; flex-direction: column; gap: 12px; }
.cmp-usecase-rec {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #E5E7EB; border-radius: 10px;
  padding: 14px 16px; transition: border-color .18s, box-shadow .18s;
}
.cmp-usecase-rec:hover { border-color: rgba(76,136,218,.3); box-shadow: 0 4px 16px rgba(76,136,218,.08); }
.cmp-usecase-rec-rank {
  width: 28px; height: 28px; background: #4C88DA; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.cmp-usecase-rec-name { font-size: 14px; font-weight: 700; color: #111827; }
.cmp-usecase-rec-why { font-size: 12px; color: #6B7280; margin-top: 2px; }

/* ── How to Choose Steps ── */
.cmp-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cmp-step { background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 28px 24px; transition: transform .22s, box-shadow .22s; }
.cmp-step:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.cmp-step-num {
  width: 40px; height: 40px; background: #4C88DA; color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; margin-bottom: 16px;
}
.cmp-step h4 { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.cmp-step p { font-size: 13.5px; color: #6B7280; line-height: 1.6; margin: 0; max-width: none; }

/* ── FAQ Accordion ── */
.cmp-faq-list { max-width: 820px; }
.cmp-faq-item { border: 1px solid #E5E7EB; border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: #fff; }
.cmp-faq-item.open .cmp-faq-q { color: #4C88DA; }
.cmp-faq-item.open .cmp-faq-icon { transform: rotate(45deg); color: #4C88DA; }
.cmp-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; cursor: pointer; font-size: 15px; font-weight: 600; color: #111827;
  transition: color .18s; width: 100%; background: none; border: none;
  text-align: left; font-family: inherit;
}
.cmp-faq-q:hover { color: #4C88DA; }
.cmp-faq-icon { font-size: 20px; font-weight: 300; color: #9CA3AF; flex-shrink: 0; transition: transform .22s, color .18s; line-height: 1; }
.cmp-faq-a { display: none; padding: 0 22px 18px; font-size: 14.5px; color: #374151; line-height: 1.7; }
.cmp-faq-item.open .cmp-faq-a { display: block; animation: slideIn .25s ease; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cmp-picks-grid { grid-template-columns: repeat(2,1fr); }
  .cmp-pos-body-grid { grid-template-columns: 1fr; }
  .cmp-pos-sidebar { display: none; }
  .cmp-charts-grid { grid-template-columns: 1fr; }
  .cmp-usecase-panel { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cmp-steps-grid { grid-template-columns: repeat(2,1fr); }
  .cmp-features-grid { grid-template-columns: repeat(2,1fr); }
  .cmp-hero-meta { flex-direction: column; gap: 4px; }
  .cmp-hero-trust { flex-direction: column; gap: 8px; }
  .cmp-pos-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .cmp-picks-grid { grid-template-columns: 1fr; }
  .cmp-pc-grid { grid-template-columns: 1fr; }
  .cmp-features-grid { grid-template-columns: 1fr 1fr; }
  .cmp-pricing-grid { grid-template-columns: 1fr; }
  .cmp-steps-grid { grid-template-columns: 1fr; }
  .cmp-bar-name { width: 90px; font-size: 12px; }
  .cmp-section { padding: 48px 0; }
}


/* ============================================================
   LISTICLE / REVIEW ARTICLE  —  .lst-*
   ============================================================ */

/* ── Page shell ── */
.lst-page {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ── Breadcrumb bar ── */
.lst-breadcrumb-bar {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
  background: #fff;
}
.lst-breadcrumb {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lst-breadcrumb a { color: #0066cc; text-decoration: none; }
.lst-breadcrumb a:hover { text-decoration: underline; }
.lst-bc-sep { color: #bbb; font-size: 11px; }

/* ── Constrained column ── */
.lst-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Article ── */
.lst-article {
  padding-top: 36px;
  padding-bottom: 56px;
}

/* ── Category label ── */
.lst-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0066cc;
  margin-bottom: 10px;
  max-width: none;
}

/* ── H1 ── */
.lst-h1 {
  font-size: clamp(26px, 4vw, 31px);
  font-weight: 700;
  color: #111111;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* ── Byline ── */
.lst-byline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777777;
  margin-bottom: 22px;
  flex-wrap: wrap;
  max-width: none;
}
.lst-byline-author {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}
.lst-byline-author:hover { text-decoration: underline; }
.lst-byline-sep { color: #ccc; }

/* ── Hero image ── */
.lst-hero-img {
  width: 100%;
  height: 300px;
  background: #edf1f6;
  border-radius: 6px;
  margin-bottom: 28px;
  overflow: hidden;
}
.lst-hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #b0bbc9;
  font-size: 13px;
}

/* ── Table of contents ── */
.lst-toc {
  background: #f8f9fb;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 18px 22px 20px;
  margin-bottom: 36px;
}
.lst-toc-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 10px;
  max-width: none;
}
.lst-toc-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lst-toc-list li { font-size: 14px; line-height: 1.45; color: #333; }
.lst-toc-list a { color: #0066cc; text-decoration: none; }
.lst-toc-list a:hover { text-decoration: underline; }

/* ── Intro paragraph ── */
.lst-intro {
  font-size: 15px;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: none;
}

/* ── H2 section headings ── */
.lst-h2 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  margin-top: 36px;
}

/* ════════════════════════════════════════════
   PRODUCT CARD
════════════════════════════════════════════ */
.lst-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 28px;
}

/* Card header row: logo + rank badge */
.lst-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.lst-card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo box */
.lst-logo-box {
  width: 90px;
  height: 42px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.lst-logo-blue   { background: #1a6ac8; }
.lst-logo-green  { background: #1a8c4e; }
.lst-logo-purple { background: #6d28d9; }

.lst-card-logo-meta { display: flex; flex-direction: column; }
.lst-card-product-name {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
}

/* Rank badge */
.lst-rank-badge {
  background: linear-gradient(135deg, #f5a623, #e08910);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Star rating ── */
.lst-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.lst-stars { display: inline-flex; gap: 1px; }
.lst-star { font-size: 17px; line-height: 1; }
.lst-star-full  { color: #f5a623; }
.lst-star-empty { color: #d9d9d9; }
.lst-rating-score {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.lst-rating-count {
  font-size: 13px;
  color: #777777;
}

/* ── Promo box ── */
.lst-promo-box {
  background: #eef4fb;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.lst-promo-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.lst-promo-item { display: flex; flex-direction: column; gap: 2px; }
.lst-promo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0057b7;
}
.lst-promo-val {
  font-size: 14px;
  color: #111111;
}

/* ── CTA button ── */
.lst-cta-btn {
  display: inline-block;
  background: #0066cc;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .18s;
  line-height: 1;
}
.lst-cta-btn:hover { background: #0057b7; color: #fff; }

/* ── Pros / Cons ── */
.lst-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 14px 0;
  margin-bottom: 14px;
}
.lst-pc-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 8px;
  max-width: none;
}
.lst-pros ul,
.lst-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lst-pros li,
.lst-cons li {
  font-size: 13.5px;
  color: #333333;
  line-height: 1.45;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.lst-check { color: #2e8b4f; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.lst-cross  { color: #999999; flex-shrink: 0; font-size: 12px; margin-top: 1px; }

/* ── Card description + read more ── */
.lst-card-desc-wrap {}
.lst-card-desc {
  font-size: 14px;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: none;
}
.lst-readmore-body p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: none;
  padding-top: 8px;
}
.lst-readmore-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0066cc;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  margin-top: 2px;
}
.lst-readmore-btn:hover { text-decoration: underline; }

/* ════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════ */
.lst-compare-section { margin-bottom: 40px; }

.lst-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.lst-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 580px;
}
.lst-table thead tr { background: #1e2a38; }
.lst-table thead th {
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 13px 14px;
  text-align: center;
  white-space: nowrap;
}
.lst-table thead th:first-child { text-align: left; }
.lst-table tbody tr:nth-child(odd)  { background: #ffffff; }
.lst-table tbody tr:nth-child(even) { background: #f7f7f7; }
.lst-table tbody td {
  padding: 12px 14px;
  border: 1px solid #dddddd;
  text-align: center;
  color: #333333;
  font-size: 14px;
  vertical-align: middle;
}
.lst-table tbody td.lst-td-name { text-align: left; }
.lst-tbl-star { color: #f5a623; }
.lst-tick     { color: #2e8b4f; font-size: 15px; font-weight: 700; }
.lst-cross-tbl { color: #b0b0b0; font-size: 14px; }

/* Small pill CTA in table */
.lst-table-cta {
  display: inline-block;
  background: #0057b7;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .18s;
  white-space: nowrap;
}
.lst-table-cta:hover { background: #004499; color: #fff; }

/* ── Editorial section ── */
.lst-editorial-section { margin-bottom: 12px; }
.lst-editorial-section p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

/* ── Back to top ── */
.lst-backtotop-wrap { text-align: center; padding: 24px 0 8px; }
.lst-backtotop {
  font-size: 13px;
  color: #0066cc;
  text-decoration: none;
}
.lst-backtotop:hover { text-decoration: underline; }

/* ── Article footer ── */
.lst-article-footer {
  border-top: 1px solid #ebebeb;
  text-align: center;
  padding: 28px 24px;
  margin-top: 8px;
}
.lst-footer-brand {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 4px;
  max-width: none;
}
.lst-footer-copy {
  font-size: 12px;
  color: #888888;
  margin: 0;
  max-width: none;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 640px) {
  .lst-wrap { padding: 0 20px; }

  .lst-hero-img { height: 200px; }

  .lst-pros-cons { grid-template-columns: 1fr; gap: 12px; }

  .lst-promo-grid { flex-direction: column; gap: 10px; }

  .lst-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .lst-card { padding: 16px; }

  .lst-card-logo { flex-wrap: wrap; }
}
