/* ═══════════════════════════════════════
   CheapHeatingOil — Main Stylesheet
   Concept 3: Best of Both Worlds
═══════════════════════════════════════ */

:root {
  --navy:       #0d1f2d;
  --navy-mid:   #162d40;
  --navy-lt:    #1e3a50;
  --flame:      #e85d04;
  --flame-lt:   #f48c06;
  --cream:      #fdfaf6;
  --cream-dk:   #f5f0e8;
  --text:       #0d1f2d;
  --muted:      #6b7280;
  --rule:       #ddd8ce;
  --green:      #0a7c4e;
  --red:        #b91c1c;
  --mono:       'DM Mono', monospace;
  --serif:      'Fraunces', serif;
  --sans:       'Plus Jakarta Sans', sans-serif;
  --max-w:      1200px;
  --pad-x:      48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--flame); text-decoration: none; }
a:hover { color: #c94f00; }

/* ── UTILITIES ── */
.cho-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── BUTTONS ── */
.cho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.cho-btn:active { transform: scale(0.98); }
.cho-btn--sm  { font-size: 13px; padding: 8px 16px; }
.cho-btn--lg  { font-size: 15px; padding: 13px 28px; }
.cho-btn--flame { background: var(--flame); color: #fff; }
.cho-btn--flame:hover { background: #c94f00; color: #fff; }
.cho-btn--navy { background: var(--navy); color: #fff; }
.cho-btn--navy:hover { background: var(--navy-lt); color: #fff; }
.cho-btn--zip { border-radius: 0 8px 8px 0; padding: 14px 22px; font-size: 14px; }

/* ── TICKER ── */
.cho-ticker {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cho-ticker__track { display: inline-block; animation: cho-scroll 34s linear infinite; }
.cho-ticker__item  { display: inline-block; margin: 0 28px; }
.cho-ticker__val   { color: rgba(255,255,255,0.85); font-weight: 500; }
.cho-ticker__chg   { margin-left: 4px; }
.cho-ticker__sep   { color: rgba(255,255,255,0.15); margin: 0 6px; }
.cho--up { color: #4ade80; }
.cho--dn { color: #f87171; }
@keyframes cho-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER ── */
.cho-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.cho-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.cho-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cho-logo__flame {
  width: 30px; height: 30px;
  background: var(--flame);
  border-radius: 50% 50% 38% 38%;
  position: relative;
  flex-shrink: 0;
}
.cho-logo__flame::after {
  content: '';
  position: absolute;
  bottom: 7px; left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px;
  background: var(--flame-lt);
  border-radius: 50% 50% 30% 30%;
}
.cho-logo__text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.cho-logo__text em { font-style: normal; color: var(--flame-lt); }
.cho-logo--sm .cho-logo__text { font-size: 18px; }

/* Nav */
.cho-nav { flex: 1; }
.cho-nav .cho-nav__list,
.cho-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.cho-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.15s;
  display: block;
}
.cho-nav a:hover,
.cho-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,0.08); }

.cho-header__right { margin-left: auto; display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cho-header__date { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }

/* Mobile toggle */
.cho-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.cho-menu-toggle__bar { width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 1px; transition: all 0.2s; }

/* ── HERO ── */
.cho-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cho-hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.cho-hero__glow--1 { top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 60%); }
.cho-hero__glow--2 { bottom: -80px; left: 20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(30,58,80,0.8) 0%, transparent 70%); }

.cho-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--pad-x) 0;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.cho-hero__left { padding-bottom: 56px; }

.cho-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--flame-lt);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cho-eyebrow__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--flame-lt);
  animation: cho-blink 2s infinite;
}
@keyframes cho-blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.cho-hero__h1 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 22px;
}
.cho-hero__h1 em { font-style: italic; font-weight: 300; color: var(--flame-lt); }
.cho-hero__mono {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.cho-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}

/* Market mini */
.cho-market-mini {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  width: fit-content;
  flex-wrap: wrap;
}
.cho-market-mini__item { display: flex; flex-direction: column; gap: 2px; }
.cho-market-mini__label { font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; }
.cho-market-mini__val   { font-family: var(--mono); font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); }
.cho-market-mini__chg   { font-family: var(--mono); font-size: 10px; }

/* Hero card */
.cho-hero__card {
  background: var(--cream);
  border-radius: 16px 16px 0 0;
  padding: 30px 28px;
  box-shadow: 0 -24px 60px rgba(0,0,0,0.35);
}
.cho-card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cho-card-eyebrow__live { color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.cho-card-title  { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.25; }
.cho-card-sub    { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* Zip input */
.cho-zip-wrap { display: flex; margin-bottom: 10px; }
.cho-zip-input {
  flex: 1;
  border: 2px solid var(--rule);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--navy);
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
}
.cho-zip-input:focus { border-color: var(--flame); }
.cho-zip-input::placeholder { color: #ccc; font-size: 16px; letter-spacing: 0.08em; font-weight: 400; }

.cho-zip-result {
  min-height: 0;
  font-size: 13px;
  margin-bottom: 6px;
  transition: all 0.2s;
}
.cho-zip-result--found    { color: var(--green); font-weight: 600; }
.cho-zip-result--notfound { color: var(--muted); }
.cho-zip-result--loading  { color: var(--muted); font-style: italic; }

.cho-or-divider { text-align: center; font-size: 11px; color: var(--muted); margin: 10px 0; font-family: var(--mono); letter-spacing: 0.06em; }

.cho-state-select {
  width: 100%;
  border: 2px solid var(--rule);
  border-radius: 8px;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.cho-state-select:focus { border-color: var(--flame); }

.cho-trust-pills { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.cho-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream-dk);
  padding: 4px 10px;
  border-radius: 100px;
}
.cho-pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── PRICE BAR ── */
.cho-price-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.06); }
.cho-price-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}
.cho-pb-item {
  flex: 1;
  min-width: 140px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cho-pb-item:first-child { padding-left: 0; }
.cho-pb-item:last-child  { border-right: none; }
.cho-pb-label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.cho-pb-val   { font-family: var(--serif); font-size: 24px; font-weight: 600; color: #fff; line-height: 1; }
.cho-pb-chg   { font-family: var(--mono); font-size: 10px; }

/* ── BODY ── */
.cho-body { max-width: var(--max-w); margin: 0 auto; padding: 52px var(--pad-x); }

.cho-section { margin-bottom: 52px; }
.cho-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.cho-section__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cho-section__title::after {
  content: '';
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--flame);
  border-radius: 1px;
  margin-bottom: 2px;
}
.cho-section__link { font-family: var(--mono); font-size: 11px; color: var(--flame); letter-spacing: 0.04em; }
.cho-section__link:hover { text-decoration: underline; }

/* State grid */
.cho-state-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cho-sc {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.cho-sc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--rule);
  transition: background 0.2s;
}
.cho-sc:hover             { border-color: rgba(232,93,4,0.3); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.cho-sc:hover::before     { background: var(--flame); }
.cho-sc--cheap::before    { background: var(--green); }
.cho-sc--cheap .cho-sc__price { color: var(--green); }
.cho-sc--cheap .cho-sc__fill  { background: var(--green); }
.cho-sc--pricey::before   { background: var(--red); }
.cho-sc--pricey .cho-sc__price { color: var(--red); }
.cho-sc--pricey .cho-sc__fill  { background: var(--red); }

.cho-sc__state { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cho-sc__price { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; color: var(--navy); margin-bottom: 8px; }
.cho-sc__price sub { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 400; vertical-align: baseline; }
.cho-sc__bar  { height: 3px; background: var(--rule); border-radius: 2px; margin-bottom: 6px; }
.cho-sc__fill { height: 3px; border-radius: 2px; background: var(--flame); }
.cho-sc__note { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.02em; }

/* Two col */
.cho-two-col { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }

/* Chart panel */
.cho-chart-panel {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 28px;
}
.cho-chart-panel__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.cho-chart-panel__title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.cho-chart-panel__sub   { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.cho-chart-bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; margin-bottom: 8px; }
.cho-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--cream-dk);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.cho-chart-bar:hover,
.cho-chart-bar.cho-chart-bar--now { background: var(--flame); }
.cho-chart-bar:hover::after,
.cho-chart-bar.cho-chart-bar--now::after {
  content: attr(data-val);
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--navy);
  white-space: nowrap;
  background: var(--cream);
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid var(--rule);
}
.cho-chart-months { display: flex; gap: 7px; margin-bottom: 16px; }
.cho-chart-month  { flex: 1; text-align: center; font-family: var(--mono); font-size: 9px; color: var(--muted); }
.cho-chart-insight {
  padding: 12px 14px;
  background: var(--cream-dk);
  border-radius: 8px;
  border-left: 3px solid var(--flame);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.cho-chart-insight strong { color: var(--navy); font-weight: 600; }

/* News panel */
.cho-news-panel { background: #fff; border: 1.5px solid var(--rule); border-radius: 14px; overflow: hidden; }
.cho-news-panel__head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.cho-news-panel__title { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); }
.cho-news-panel__live  {
  font-family: var(--mono); font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green);
  display: flex; align-items: center; gap: 5px;
}
.cho-news-panel__dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: cho-blink 2s infinite;
}
.cho-news-item {
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.cho-news-item:last-child { border-bottom: none; }
.cho-news-item:hover { background: var(--cream-dk); }
.cho-news-item__num   { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--rule); line-height: 1.1; }
.cho-news-item__title { font-size: 12px; line-height: 1.5; color: var(--navy); margin-bottom: 3px; font-weight: 500; }
.cho-news-item__meta  { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: 0.04em; }

/* How it works */
.cho-how {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px 48px;
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}
.cho-how::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,93,4,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cho-how__step { padding: 0 36px 0 0; position: relative; }
.cho-how__step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: 8px; top: 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.12);
}
.cho-how__num   { font-family: var(--mono); font-size: 11px; color: var(--flame-lt); letter-spacing: 0.1em; margin-bottom: 12px; }
.cho-how__title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.cho-how__desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* City grid */
.cho-city-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cho-city-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cho-city-card:hover { border-color: var(--flame); background: var(--cream-dk); }
.cho-city-card__name  { font-size: 13px; font-weight: 600; color: var(--navy); }
.cho-city-card__price { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--flame); line-height: 1.1; }
.cho-city-card__meta  { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: 0.03em; }

/* Email banner */
.cho-email-banner {
  background: var(--flame);
  border-radius: 14px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.cho-email-banner::before {
  content: '';
  position: absolute; right: -40px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.cho-email-banner__text h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cho-email-banner__text p  { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; max-width: 400px; }
.cho-email-form { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }
.cho-email-form__row { display: flex; gap: 10px; }
.cho-email-form__input {
  flex: 1;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 9px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
  min-width: 0;
}
.cho-email-form__input--zip   { max-width: 110px; flex: 0 0 110px; }
.cho-email-form__input--price { max-width: 180px; }
.cho-email-form__input::placeholder { color: rgba(255,255,255,0.5); }
.cho-email-form__input:focus { border-color: rgba(255,255,255,0.6); }
.cho-email-form__msg { width: 100%; font-size: 13px; font-weight: 600; color: #fff; }
.cho-email-form__msg--success { opacity: 0.9; }
.cho-email-form__msg--error   { color: rgba(255,255,255,0.8); }

/* Articles */
.cho-articles-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.cho-article {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.18s;
}
.cho-article:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: rgba(232,93,4,0.25); }
.cho-article__img {
  height: 140px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cho-article__img img { width: 100%; height: 100%; object-fit: cover; }
.cho-article__img--placeholder { background: #fff3e0; font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--flame); }
.cho-article--featured .cho-article__img--placeholder { font-size: 68px; }
.cho-article__body  { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.cho-article__tag   { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--flame); margin-bottom: 8px; }
.cho-article__title { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.cho-article--featured .cho-article__title { font-size: 20px; }
.cho-article__excerpt { font-size: 12px; color: var(--muted); line-height: 1.65; flex: 1; }
.cho-article__meta  { font-family: var(--mono); font-size: 9px; color: var(--muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rule); letter-spacing: 0.04em; }

/* ── FOOTER ── */
.cho-footer { background: var(--navy); padding: 52px var(--pad-x); margin-top: 8px; }
.cho-footer__inner { max-width: var(--max-w); margin: 0 auto; }
.cho-footer__grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.cho-footer__brand .cho-logo { margin-bottom: 14px; }
.cho-footer__brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 240px; }
.cho-footer__col h4 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.cho-footer__col a  { display: block; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; margin-bottom: 9px; transition: color 0.15s; }
.cho-footer__col a:hover { color: rgba(255,255,255,0.8); }
.cho-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── BLOG / INDEX ── */
.cho-main    { min-height: 60vh; }
.cho-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 48px var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.cho-post-card { background: #fff; border: 1.5px solid var(--rule); border-radius: 12px; overflow: hidden; }
.cho-post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.cho-post-card__body  { padding: 20px; }
.cho-post-card__meta  { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.04em; }
.cho-post-card__title { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.cho-post-card__title a { color: var(--navy); }
.cho-post-card__title a:hover { color: var(--flame); }
.cho-post-card__excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.cho-post-card__link  { font-family: var(--mono); font-size: 11px; color: var(--flame); letter-spacing: 0.04em; }

/* ── INLINE PRICE SHORTCODE ── */
.cho-inline-price { font-family: var(--mono); font-weight: 500; color: var(--flame); }

/* ── ENTRANCE ANIMATIONS ── */
@keyframes cho-up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.cho-hero__left  { animation: cho-up 0.55s ease both; }
.cho-hero__card  { animation: cho-up 0.55s ease 0.12s both; }
.cho-price-bar   { animation: cho-up 0.45s ease 0.22s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .cho-hero__inner     { grid-template-columns: 1fr 360px; gap: 40px; }
  .cho-hero__h1        { font-size: 52px; }
  .cho-state-grid      { grid-template-columns: repeat(4,1fr); }
  .cho-city-grid       { grid-template-columns: repeat(4,1fr); }
  .cho-articles-grid   { grid-template-columns: 1fr 1fr; }
  .cho-article--sm:nth-child(3) { display: none; }
  .cho-footer__grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .cho-menu-toggle       { display: flex; }
  .cho-nav               { display: none; }
  .cho-nav.cho-nav--open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); z-index: 99; }
  .cho-nav--open .cho-nav__list { flex-direction: column; padding: 0 20px; }
  .cho-header__date      { display: none; }
  .cho-hero__inner       { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .cho-hero__left        { padding-bottom: 40px; }
  .cho-hero__h1          { font-size: 40px; }
  .cho-hero__card        { border-radius: 16px 16px 0 0; }
  .cho-price-bar__inner  { padding: var(--pad-x); gap: 20px; }
  .cho-pb-item           { min-width: 110px; padding: 14px 0; border-right: none; }
  .cho-state-grid        { grid-template-columns: repeat(2,1fr); }
  .cho-two-col           { grid-template-columns: 1fr; }
  .cho-how               { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .cho-how__step::after  { display: none; }
  .cho-city-grid         { grid-template-columns: repeat(2,1fr); }
  .cho-email-banner      { flex-direction: column; align-items: flex-start; padding: 28px; }
  .cho-email-form__input { width: 100%; }
  .cho-articles-grid     { grid-template-columns: 1fr; }
  .cho-footer__grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cho-footer__bottom    { flex-direction: column; gap: 8px; }
  .cho-posts-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cho-state-grid { grid-template-columns: 1fr 1fr; }
  .cho-city-grid  { grid-template-columns: 1fr 1fr; }
  .cho-market-mini { gap: 14px; padding: 12px 16px; }
  .cho-pb-item    { min-width: 90px; }
}

/* ══════════════════════════════════════
   PAGE HERO (state + city pages)
══════════════════════════════════════ */
.cho-page-hero {
  background: var(--navy);
  padding: 52px var(--pad-x) 48px;
  position: relative;
  overflow: hidden;
}
.cho-page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,93,4,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cho-page-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.cho-page-hero__h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.cho-page-hero__sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 640px; }
.cho-page-hero__sub strong { color: var(--flame-lt); }

/* ══════════════════════════════════════
   STATE PRICE BAR
══════════════════════════════════════ */
.cho-state-price-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.06); }
.cho-state-price-bar__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: stretch; overflow-x: auto;
}
.cho-spb-item {
  flex: 1; min-width: 130px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 2px;
}
.cho-spb-item:last-child { border-right: none; }
.cho-spb-label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.cho-spb-val   { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; line-height: 1.1; }
.cho-spb-sub   { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════
   STATE FULL GRID (state index page)
══════════════════════════════════════ */
.cho-sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.cho-sec-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

.cho-state-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cho-state-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.cho-state-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--rule);
  transition: background 0.2s;
}
.cho-state-card:hover { border-color: rgba(232,93,4,0.3); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.cho-state-card:hover::before { background: var(--flame); }
.cho-state-card--cheap::before,
.cho-sc--cheap::before { background: var(--green); }
.cho-state-card--pricey::before,
.cho-sc--pricey::before { background: var(--red); }

.cho-state-card__abbr  { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 4px; }
.cho-state-card__name  { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.cho-state-card__price { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.cho-state-card__price sub { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 400; vertical-align: baseline; }
.cho-state-card--cheap .cho-state-card__price { color: var(--green); }
.cho-state-card--pricey .cho-state-card__price { color: var(--red); }
.cho-state-card__bar  { height: 3px; background: var(--rule); border-radius: 2px; margin-bottom: 8px; }
.cho-state-card__fill { height: 3px; border-radius: 2px; background: var(--flame); }
.cho-state-card--cheap .cho-state-card__fill  { background: var(--green); }
.cho-state-card--pricey .cho-state-card__fill { background: var(--red); }
.cho-state-card__meta  { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--muted); margin-bottom: 10px; }
.cho-state-card__cta   { font-family: var(--mono); font-size: 11px; color: var(--flame); letter-spacing: 0.04em; }

/* ══════════════════════════════════════
   CITY TABLE
══════════════════════════════════════ */
.cho-city-table-wrap { overflow-x: auto; border-radius: 12px; border: 1.5px solid var(--rule); }
.cho-city-table { width: 100%; border-collapse: collapse; background: #fff; }
.cho-city-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  font-weight: 400;
}
.cho-city-table thead th:first-child { border-radius: 10px 0 0 0; }
.cho-city-table thead th:last-child  { border-radius: 0 10px 0 0; }
.cho-city-row td { padding: 13px 16px; border-bottom: 1px solid var(--rule); font-size: 14px; }
.cho-city-row:last-child td { border-bottom: none; }
.cho-city-row:hover td { background: var(--cream-dk); }
.cho-city-row--best td { background: #f0fdf4; }
.cho-city-row--best:hover td { background: #e6faf0; }

.cho-td-city a    { color: var(--navy); font-weight: 500; text-decoration: none; }
.cho-td-city a:hover { color: var(--flame); }
.cho-td-price     { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.cho-td-diff      { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.cho-td--cheap    { color: var(--green) !important; font-weight: 600; }
.cho-td--pricey   { color: var(--red)   !important; font-weight: 600; }
.cho-td-dealers   { font-size: 13px; color: var(--muted); }
.cho-td-updated   { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.cho-td-link a    { font-family: var(--mono); font-size: 11px; color: var(--flame); white-space: nowrap; }
.cho-best-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
  vertical-align: middle;
}

/* ══════════════════════════════════════
   CITY PAGE LAYOUT
══════════════════════════════════════ */
.cho-city-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.cho-city-main {}
.cho-content-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 28px 32px;
}
.cho-content-card h2 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.cho-content-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin: 20px 0 8px; }
.cho-content-card p  { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 14px; }
.cho-content-card ul { padding-left: 20px; margin-bottom: 14px; }
.cho-content-card li { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 6px; }
.cho-content-card:first-child h2:first-child { margin-top: 0; }

/* Sidebar */
.cho-city-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.cho-sidebar-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 20px;
}
.cho-sidebar-card--alert { background: var(--cream-dk); }
.cho-sidebar-card__head {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.cho-sidebar-price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 4px;
}
.cho-sidebar-card__sub   { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.cho-sidebar-card__divider { height: 1px; background: var(--rule); margin: 12px 0; }
.cho-sidebar-stat {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid var(--rule);
}
.cho-sidebar-stat:last-of-type { border-bottom: none; }
.cho-sidebar-stat span:last-child { font-weight: 600; font-family: var(--mono); }
.cho-sidebar-updated { font-family: var(--mono); font-size: 10px; color: var(--muted); line-height: 1.6; margin-top: 8px; }

.cho-nearby-city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  transition: color 0.15s;
}
.cho-nearby-city:last-of-type { border-bottom: none; }
.cho-nearby-city:hover { color: var(--flame); }
.cho-nearby-price { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--flame); }

/* Info grid */
.cho-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cho-info-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
}
.cho-info-card h3 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cho-info-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.cho-info-card a  { color: var(--flame); }

/* ══════════════════════════════════════
   RESPONSIVE — state/city pages
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cho-state-full-grid { grid-template-columns: repeat(2,1fr); }
  .cho-city-layout     { grid-template-columns: 1fr; }
  .cho-city-sidebar    { position: static; }
  .cho-info-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cho-page-hero__h1   { font-size: 32px; }
  .cho-state-full-grid { grid-template-columns: 1fr 1fr; }
  .cho-info-grid       { grid-template-columns: 1fr; }
  .cho-state-price-bar__inner { flex-wrap: wrap; gap: 0; }
  .cho-spb-item        { min-width: 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 480px) {
  .cho-state-full-grid { grid-template-columns: 1fr; }
  .cho-city-table thead { display: none; }
  .cho-city-row td     { display: block; padding: 6px 12px; border: none; }
  .cho-td-city         { font-weight: 600; padding-top: 12px !important; }
  .cho-td-link         { padding-bottom: 12px !important; }
}

/* ══════════════════════════════════════
   STATE PRICE GRID (new card design)
══════════════════════════════════════ */
.cho-state-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cho-spg-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 20px 22px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.cho-spg-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rule);
  transition: background 0.2s;
}
.cho-spg-card:hover {
  border-color: rgba(232,93,4,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.cho-spg-card:hover::after { background: var(--flame); }
.cho-spg--best::after   { background: var(--green) !important; }
.cho-spg--cheap::after  { background: var(--green); }
.cho-spg--pricey::after { background: var(--red); }
.cho-spg--best { border-color: rgba(10,124,78,0.3); background: #f8fdf9; }

.cho-spg-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.cho-spg-card__abbr {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  background: var(--cream-dk);
  padding: 3px 8px;
  border-radius: 4px;
}
.cho-spg-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cho-spg-card__badge--best { background: #f0fdf4; color: var(--green); border: 1px solid var(--green); }
.cho-spg-card__badge--high { background: #fef2f2; color: var(--red);   border: 1px solid var(--red); }

.cho-spg-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.cho-spg-card__price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 4px 0;
}
.cho-spg--best  .cho-spg-card__price { color: var(--green); }
.cho-spg--cheap .cho-spg-card__price { color: var(--green); }
.cho-spg--pricey .cho-spg-card__price { color: var(--red); }
.cho-spg-card__unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--sans);
}

.cho-spg-card__bar-wrap {
  height: 4px;
  background: var(--cream-dk);
  border-radius: 2px;
  margin: 2px 0 4px;
}
.cho-spg-card__bar {
  height: 4px;
  border-radius: 2px;
  background: var(--flame);
  transition: width 0.6s ease;
}
.cho-spg--best  .cho-spg-card__bar { background: var(--green); }
.cho-spg--cheap .cho-spg-card__bar { background: var(--green); }
.cho-spg--pricey .cho-spg-card__bar { background: var(--red); }

.cho-spg-card__vs { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.cho-spg-card__vs--cheap  { color: var(--green); font-weight: 500; }
.cho-spg-card__vs--pricey { color: var(--red);   font-weight: 500; }

.cho-spg-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
}
.cho-spg-card__cta { color: var(--flame); font-weight: 500; }

/* ══════════════════════════════════════
   PRICE COMPARISON CHART
══════════════════════════════════════ */
.cho-price-compare {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
.cho-pc-row {
  display: grid;
  grid-template-columns: 160px 1fr 80px 52px;
  align-items: center;
  gap: 16px;
  padding: 11px 24px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.cho-pc-row:last-of-type { border-bottom: none; }
.cho-pc-row:hover { background: var(--cream-dk); }
.cho-pc-name { font-size: 13px; font-weight: 500; color: var(--navy); }

/* Split center bar */
.cho-pc-bar-center-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  height: 10px;
}
.cho-pc-bar-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 10px;
}
.cho-pc-bar-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  height: 10px;
}
.cho-pc-center-line {
  width: 2px;
  height: 20px;
  background: var(--rule);
  flex-shrink: 0;
  border-radius: 1px;
}
.cho-pc-bar {
  height: 10px;
  border-radius: 3px;
  transition: width 0.6s ease;
  min-width: 4px;
}
.cho-pc-bar--cheap  { background: var(--green); border-radius: 3px 0 0 3px; }
.cho-pc-bar--pricey { background: var(--red);   border-radius: 0 3px 3px 0; }

.cho-pc-price { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--navy); text-align: right; }
.cho-pc-diff  { font-family: var(--mono); font-size: 11px; text-align: right; font-weight: 600; }

.cho-pc-avg-label {
  display: grid;
  grid-template-columns: 160px 1fr 80px 52px;
  gap: 16px;
  padding: 8px 24px 10px;
  border-top: 1px solid var(--rule);
  background: var(--cream-dk);
}
.cho-pc-avg-label span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cho-pc-avg-label span:first-child { grid-column: 2; color: var(--green); }
.cho-pc-avg-label span:nth-child(2) { text-align: center; color: var(--navy); font-weight: 500; }
.cho-pc-avg-label span:last-child   { color: var(--red); text-align: right; }

/* ══════════════════════════════════════
   RESPONSIVE — state price grid
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cho-state-price-grid { grid-template-columns: repeat(3, 1fr); }
  .cho-pc-row { grid-template-columns: 140px 1fr 70px 45px; gap: 12px; }
}
@media (max-width: 768px) {
  .cho-state-price-grid { grid-template-columns: repeat(2, 1fr); }
  .cho-pc-row { grid-template-columns: 110px 1fr 60px; }
  .cho-pc-diff { display: none; }
}
@media (max-width: 480px) {
  .cho-state-price-grid { grid-template-columns: 1fr 1fr; }
  .cho-spg-card__price  { font-size: 30px; }
}

/* City page live price summary */
.cho-city-live-summary {
  background: var(--cream-dk);
  border-left: 3px solid var(--flame);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.cho-live-price { color: var(--flame); font-size: 16px; }

/* Fix comparison chart label grid */
.cho-pc-avg-label {
  display: flex;
  justify-content: space-between;
  padding: 8px 24px 10px;
  border-top: 1px solid var(--rule);
  background: var(--cream-dk);
}
