/* ═══════════════════════════════════════════════════════════
   ScarpaSportiva.com — Design System 2026
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --navy:    #1B3A5C;
  --blue:    #2563EB;
  --lblue:   #EFF6FF;
  --teal:    #0F766E;
  --lteal:   #F0FDFA;
  --green:   #16A34A;
  --lgreen:  #F0FDF4;
  --amber:   #D97706;
  --lamber:  #FFFBEB;
  --red:     #DC2626;
  --gray:    #6B7280;
  --lgray:   #F9FAFB;
  --mgray:   #E5E7EB;
  --dark:    #111827;
  --white:   #FFFFFF;

  --radius:  10px;
  --shadow:  0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);

  --max-w:   1160px;
  --font:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(26px, 4vw, 38px); }
h2 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
h3 { font-size: clamp(16px, 2.5vw, 20px); }
p  { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section--gray { background: var(--lgray); }
.section--navy { background: var(--navy); }
.section--blue { background: var(--blue); }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; height: 60px; gap: 0;
}
.nav-logo {
  font-size: 20px; font-weight: 900; color: var(--white);
  text-decoration: none; font-style: italic; letter-spacing: -0.02em;
  margin-right: 36px; flex-shrink: 0;
}
.nav-logo span { color: #60A5FA; }
.nav-links {
  display: flex; gap: 2px; flex: 1;
}
.nav-link {
  color: #94A3B8; font-size: 13px; font-weight: 600;
  padding: 6px 11px; border-radius: 6px; text-decoration: none;
  white-space: nowrap; transition: all .15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,0.1);
  text-decoration: none;
}
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.nav-dropdown__arrow { font-size: 10px; transition: transform .15s; }
.nav-dropdown:hover .nav-dropdown__arrow { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 0;
  min-width: 190px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--mgray);
  padding: 12px 6px 6px; z-index: 100;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown__item {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  text-decoration: none; white-space: nowrap; transition: background .15s;
}
.nav-dropdown__item:hover, .nav-dropdown__item.active {
  background: var(--lblue); color: var(--blue); text-decoration: none;
}
.nav-cta {
  margin-left: auto; flex-shrink: 0;
  background: var(--blue); color: var(--white); font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: 7px; text-decoration: none; transition: background .15s;
}
.nav-cta:hover { background: #1D4ED8; text-decoration: none; }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav-ham span { display: block; width: 22px; height: 2px; background: #94A3B8; border-radius: 2px; transition: all .2s; }

/* mobile nav */
.mobile-menu {
  display: none; background: #0F2744; padding: 12px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-cat { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-cat__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; font-family: var(--font);
  color: #94A3B8; font-size: 15px; font-weight: 600; padding: 12px 0;
}
.mobile-cat__toggle:hover { color: white; }
.mobile-cat__arrow { font-size: 12px; transition: transform .2s; }
.mobile-cat.open .mobile-cat__arrow { transform: rotate(180deg); }
.mobile-cat__items { display: none; padding: 0 0 8px 14px; }
.mobile-cat.open .mobile-cat__items { display: block; }
.mobile-cat__items a {
  display: block; color: #64748B; font-size: 14px; font-weight: 600;
  padding: 8px 0; text-decoration: none;
}
.mobile-cat__items a:hover, .mobile-cat__items a.active { color: #60A5FA; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0; font-size: 13px; color: var(--gray);
  border-bottom: 1px solid var(--mgray);
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── ARTICLE HEADER ──────────────────────────────────────── */
.article-header { padding: 36px 0 28px; border-bottom: 1px solid var(--mgray); }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.article-h1 { margin-bottom: 20px; }

/* ── TAGS ─────────────────────────────────────────────────── */
.tag {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em;
}
.tag--sport  { background: var(--lblue);  color: var(--blue); }
.tag--comparison { background: #F5F3FF; color: #6D28D9; }
.tag--guide  { background: var(--lgreen); color: #166534; }
.tag--brand  { background: var(--lamber); color: #92400E; }

/* ── AUTHOR BOX ───────────────────────────────────────────── */
.author-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--lgray);
  border-radius: var(--radius); border: 1px solid var(--mgray);
  flex-wrap: wrap;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mgray); object-fit: cover; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-cred { font-size: 12px; color: var(--teal); font-weight: 600; }
.update-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lgreen); border: 1px solid #BBF7D0;
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; font-weight: 700; color: var(--green);
  margin-left: auto; white-space: nowrap;
}

/* ── SCORE BADGE ──────────────────────────────────────────── */
.score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 900; color: var(--white); flex-shrink: 0;
}
.score-badge--lg { width: 52px; height: 52px; font-size: 17px; }
.score-badge--md { width: 36px; height: 36px; font-size: 13px; }
.score-badge--sm { width: 28px; height: 28px; font-size: 11px; }
.score-high { background: var(--green); }
.score-mid  { background: var(--amber); }
.score-low  { background: var(--red);   }

/* ── QUICK PICKS ─────────────────────────────────────────── */
.quickpicks {
  background: var(--lblue); padding: 24px 0;
  border-bottom: 2px solid #BFDBFE;
}
.quickpicks__label {
  font-size: 12px; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.quickpicks__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.qp-card {
  background: var(--white); border-radius: var(--radius);
  padding: 14px; border: 2px solid #BFDBFE;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow); transition: border-color .2s;
}
.qp-card:hover { border-color: var(--blue); }
.qp-emoji { font-size: 32px; flex-shrink: 0; }
.qp-photo { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; border-radius: 6px; background: var(--lgray); }
.qp-type  { font-size: 10px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 0.07em; }
.qp-name  { font-size: 13px; font-weight: 700; color: var(--navy); margin: 3px 0; }
.qp-price { font-size: 13px; font-weight: 800; color: var(--green); }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comp-table-wrap { overflow-x: auto; }
.comp-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  min-width: 560px;
}
.comp-table th {
  background: var(--navy); color: var(--white);
  padding: 11px 14px; text-align: left;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
}
.comp-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--mgray); vertical-align: middle;
}
.comp-table tr:nth-child(even) td { background: var(--lgray); }
.comp-table tr:hover td { background: var(--lblue); }
.comp-table__rank { font-weight: 900; color: var(--blue); font-size: 15px; }
.comp-table__name { font-weight: 700; color: var(--navy); }
.comp-table__link {
  color: var(--blue); font-size: 12px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
.comp-table__link:hover { text-decoration: underline; }

/* ── PRODUCT CARD ────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--mgray); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: box-shadow .2s;
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card__top {
  padding: 18px; display: flex; gap: 16px;
  border-bottom: 1px solid var(--mgray); align-items: flex-start;
}
.product-card__emoji { font-size: 48px; flex-shrink: 0; line-height: 1; }
.product-card__name  { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.product-card__ideal { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 10px; }
.product-card__body  { padding: 14px 18px; }
.product-card__desc  { font-size: 14px; color: var(--gray); margin-bottom: 12px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-bottom: 0; }
.pros-cons li {
  font-size: 13px; padding: 3px 0; list-style: none;
  border-bottom: 1px solid var(--lgray);
}
.pros-cons li:last-child { border: none; }
.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.product-card__footer {
  padding: 12px 18px; border-top: 1px solid var(--mgray);
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.product-card__price-label { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; }
.product-card__price-val   { font-size: 18px; font-weight: 900; color: var(--dark); }
.btn {
  display: inline-block; font-weight: 700; text-decoration: none;
  border-radius: 8px; transition: all .15s; text-align: center;
  cursor: pointer; border: none;
}
.btn--primary {
  background: var(--blue); color: var(--white);
  padding: 10px 20px; font-size: 14px;
}
.btn--primary:hover { background: #1D4ED8; text-decoration: none; }
.btn--sm { padding: 7px 14px; font-size: 12px; }
.btn--outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); padding: 9px 18px; font-size: 14px;
}
.btn--outline:hover { background: var(--navy); color: white; text-decoration: none; }

/* ── ROLE CARDS ──────────────────────────────────────────── */
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { border-radius: var(--radius); border: 1px solid var(--mgray); overflow: hidden; }
.role-card__header {
  background: var(--navy); color: var(--white);
  padding: 11px 16px; font-size: 13px; font-weight: 700;
}
.role-card__body { padding: 14px 16px; }
.role-card__feat {
  font-size: 13px; color: var(--gray); padding: 4px 0;
  border-bottom: 1px solid var(--lgray); list-style: none;
}
.role-card__feat:last-of-type { border: none; }
.role-card__feat::before { content: '• '; color: var(--blue); }
.role-card__rec {
  font-size: 13px; font-weight: 700; color: var(--teal);
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--mgray);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--mgray); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 16px 20px; font-size: 15px; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .15s;
}
.faq-question:hover { background: var(--lgray); }
.faq-question .chevron {
  flex-shrink: 0; font-size: 18px; color: var(--blue); transition: transform .2s;
}
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 20px 16px;
  font-size: 14px; color: var(--gray); line-height: 1.7;
  border-top: 1px solid var(--lgray);
}
.faq-item.open .faq-answer { display: block; }

/* ── CLUSTER / RELATED ───────────────────────────────────── */
.cluster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cluster-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--mgray); overflow: hidden; text-decoration: none;
  display: block; transition: box-shadow .2s;
}
.cluster-card:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.cluster-card__emoji {
  font-size: 36px; height: 80px; display: flex; align-items: center;
  justify-content: center; background: var(--lgray); border-bottom: 1px solid var(--mgray);
}
.cluster-card__img {
  width: 100%; height: 80px; object-fit: cover; display: block;
  border-bottom: 1px solid var(--mgray);
}
.cluster-card__body { padding: 14px; }
.cluster-card__type { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; }
.cluster-card__title { font-size: 13px; font-weight: 700; color: var(--navy); margin: 4px 0; line-height: 1.4; }
.cluster-card__meta  { font-size: 11px; color: var(--gray); }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.content-layout { display: grid; grid-template-columns: 1fr 260px; gap: 0; align-items: start; }
.main-col { border-right: 1px solid var(--mgray); min-width: 0; }
.sidebar { padding: 28px 0 28px 28px; position: sticky; top: 76px; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--mgray); padding: 16px; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.sidebar-widget__title {
  font-size: 11px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.sidebar-widget__item {
  font-size: 13px; color: var(--gray); padding: 6px 0;
  border-bottom: 1px solid var(--lgray); display: flex; align-items: center; gap: 8px;
}
.sidebar-widget__item:last-child { border: none; padding-bottom: 0; }
.sidebar-widget a { color: var(--blue); font-weight: 600; text-decoration: none; font-size: 13px; }
.sidebar-widget a:hover { text-decoration: underline; }

.amazon-banner {
  display: block; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #A62B45 0%, #6B1E30 100%);
  border-radius: var(--radius); padding: 26px 20px; margin-bottom: 16px;
  text-decoration: none; text-align: center; box-shadow: var(--shadow);
}
.amazon-banner:hover { text-decoration: none; box-shadow: var(--shadow-md); }
.amazon-banner__decor {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 3px, transparent 3px);
  background-size: 22px 22px;
}
.amazon-banner__title {
  position: relative; color: white; font-weight: 900; font-size: 22px;
  text-transform: uppercase; line-height: 1.15; letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.amazon-banner__cta {
  position: relative; display: inline-block; background: var(--navy); color: white;
  font-size: 12px; font-weight: 700; padding: 10px 18px; border-radius: 8px;
}

/* ── SPORT GRID (home) ───────────────────────────────────── */
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sport-card {
  border-radius: var(--radius); border: 2px solid var(--mgray);
  overflow: hidden; text-decoration: none; display: block; transition: all .2s;
  box-shadow: var(--shadow);
}
.sport-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); text-decoration: none; }
.sport-card__img {
  width: 100%; height: 120px; object-fit: cover; border-radius: 8px 8px 0 0;
}
.sport-card__body { padding: 10px 14px 14px; background: var(--white); }
.sport-card__name { font-size: 14px; font-weight: 800; color: var(--navy); }
.sport-card__meta { font-size: 11px; color: var(--gray); margin-top: 3px; }

/* ── HERO (home) ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2744 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(37,99,235,0.35) 0%, transparent 60%);
}
.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-block; background: rgba(96,165,250,0.2); color: #60A5FA;
  font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 20px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 46px); margin-bottom: 14px; }
.hero h1 span { color: #60A5FA; }
.hero p { color: #94A3B8; font-size: clamp(15px, 2vw, 18px); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stats-inner { display: flex; }
.stat { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); padding: 0 12px; }
.stat:last-child { border: none; }
.stat__num   { font-size: 28px; font-weight: 900; color: #60A5FA; }
.stat__label { font-size: 11px; color: #94A3B8; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { margin-bottom: 28px; }
.section-header h2 { color: var(--navy); }
.section-header p { color: var(--gray); font-size: 15px; margin-top: 4px; margin-bottom: 0; }

/* ── FEATURED GRID (home) ────────────────────────────────── */
.featured-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.featured-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--mgray); overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column; box-shadow: var(--shadow); transition: box-shadow .2s;
}
.featured-card:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.featured-card__img {
  width: 100%; height: 160px; object-fit: cover;
  border-bottom: 1px solid var(--mgray);
}
.featured-card__img--sm { height: 140px; }
.featured-card__body { padding: 16px; }
.featured-card__title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 8px 0; }
.featured-card__meta  { font-size: 12px; color: var(--gray); display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #0F172A; padding: 48px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 32px; margin-bottom: 36px;
}
.footer-brand { font-size: 20px; font-weight: 900; color: var(--white); font-style: italic; margin-bottom: 10px; }
.footer-brand span { color: #60A5FA; }
.footer-desc { font-size: 13px; color: #64748B; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: #64748B; text-decoration: none; margin-bottom: 8px; }
.footer-col__links { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1E293B; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #475569; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: #475569; text-decoration: none; }
.footer-bottom a:hover { color: #94A3B8; }
.footer-bottom span a + a { margin-left: 16px; }

/* ── WINNER BOX (comparison) ─────────────────────────────── */
.winner-box {
  background: var(--lgreen); border: 2px solid #86EFAC;
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 18px; margin-bottom: 0;
}
.winner-box__icon { font-size: 42px; flex-shrink: 0; }
.winner-box__label { font-size: 11px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; }
.winner-box__name  { font-size: 20px; font-weight: 900; color: var(--navy); margin: 4px 0; }
.winner-box__reason { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── VERDICT ─────────────────────────────────────────────── */
.verdict-box { background: var(--navy); border-radius: var(--radius); padding: 28px 32px; }
.verdict-box h3 { color: #60A5FA; font-size: 16px; margin-bottom: 14px; }
.verdict-box p  { color: #CBD5E1; font-size: 14px; line-height: 1.8; }
.verdict-box strong { color: var(--white); }

/* ── UTILITIES ────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--mgray); margin: 32px 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .main-col { border-right: none; }
  .sidebar { display: none; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .featured-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-ham   { display: flex; }

  .sports-grid     { grid-template-columns: repeat(2, 1fr); }
  .featured-grid   { grid-template-columns: 1fr; }
  .quickpicks__grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .roles-grid      { grid-template-columns: 1fr; }
  .cluster-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner     { flex-wrap: wrap; }
  .stat            { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 0; }

  .author-bar  { flex-direction: column; align-items: flex-start; }
  .update-badge { margin-left: 0; }
  .winner-box { flex-direction: column; }

  .section { padding: 32px 0; }
  .hero { padding: 48px 0; }
}

@media (max-width: 480px) {
  .cluster-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* =========================================================
   EDITORIAL BODY — Sezione guida/contenuto hub pages
   ========================================================= */

.editorial-body { margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid #E5E7EB; font-size: 1rem; line-height: 1.8; color: #374151; }
.editorial-body h2 { font-size: 1.45rem; font-weight: 800; color: #1B3A5C; margin-top: 2.5rem; margin-bottom: 0.9rem; padding-left: 0.9rem; border-left: 4px solid #2563EB; line-height: 1.3; }
.editorial-body h2:first-child { margin-top: 0; }
.editorial-body h3 { font-size: 1.15rem; font-weight: 700; color: #1B3A5C; margin-top: 1.8rem; margin-bottom: 0.6rem; padding-bottom: 0.3rem; border-bottom: 1px solid #E5E7EB; }
.editorial-body p { margin-bottom: 1rem; color: #374151; }
.editorial-body strong { color: #1B3A5C; font-weight: 700; }
.editorial-body ul { margin: 0.8rem 0 1.2rem 0; padding-left: 0; list-style: none; }
.editorial-body ul li { position: relative; padding-left: 1.4rem; margin-bottom: 0.5rem; color: #374151; }
.editorial-body ul li::before { content: "▸"; position: absolute; left: 0; color: #2563EB; font-size: 0.85rem; top: 0.15rem; }
.editorial-body ol { margin: 0.8rem 0 1.2rem 0; padding-left: 0; list-style: none; counter-reset: editorial-counter; }
.editorial-body ol li { position: relative; padding-left: 2.2rem; margin-bottom: 0.65rem; color: #374151; counter-increment: editorial-counter; }
.editorial-body ol li::before { content: counter(editorial-counter); position: absolute; left: 0; top: 0; width: 1.5rem; height: 1.5rem; background: #2563EB; color: #fff; font-size: 0.78rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.editorial-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.editorial-body table thead tr { background: #1B3A5C; color: #fff; }
.editorial-body table thead th { padding: 0.75rem 1rem; text-align: left; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.07em; text-transform: uppercase; }
.editorial-body table tbody tr:nth-child(even) { background: #F9FAFB; }
.editorial-body table tbody tr:hover { background: #EFF6FF; }
.editorial-body table td { padding: 0.65rem 1rem; border-bottom: 1px solid #E5E7EB; color: #374151; }
.editorial-body blockquote { border-left: 4px solid #2563EB; background: #EFF6FF; margin: 1.5rem 0; padding: 1rem 1.2rem; border-radius: 0 6px 6px 0; font-style: italic; color: #4B5563; }
.editorial-body h3 + p { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 6px; padding: 0.9rem 1.1rem; margin-top: -0.3rem; }
.editorial-body a { color: #2563EB; text-decoration: none; border-bottom: 1px solid rgba(37,99,235,0.3); transition: border-color 0.2s; }
.editorial-body a:hover { border-bottom-color: #2563EB; }

/* Menos margen en el bloque editorial — integrar mejor con el resto de la página */
.editorial-body {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;   /* eliminar el separador — ya hay suficiente separación visual */
}

/* Reducir el espacio entre secciones H2 */
.editorial-body h2 {
  margin-top: 1.8rem;
}
.editorial-body h2:first-child {
  margin-top: 0;
}
.editorial-body h2 ~ h2 {
  margin-top: 1.8rem;  /* era 3rem */
}

/* HR en el contenido: suaves, sin exceso de espacio */
.editorial-body hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 1.2rem 0;
}

@media (max-width: 600px) { .editorial-body h2 { font-size: 1.2rem; } .editorial-body h3 { font-size: 1.05rem; } .editorial-body table { font-size: 0.82rem; } .editorial-body table td, .editorial-body table th { padding: 0.5rem 0.6rem; } }

/* Eliminar hr en páginas hub — demasiado fragmentado visualmente */
.main-col hr,
.editorial-body hr {
  display: none;
}

/* Hub pages — secciones más compactas */
.main-col .section {
  padding: 28px 0;
}

.editorial-body {
  margin-top: 1.2rem;
}

.editorial-body h2 {
  margin-top: 1.4rem;
}
