/* ════════════════════════════════════════════════════════════
   CheapHeatingOpus — Front Page v2 Stylesheet
   This file is loaded ONLY on the home page via inc/assets.php.
   It contains ONLY the new selectors for the v2 homepage design.
   Existing main.css is untouched.
   ════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   HERO v2 — full-bleed dark header section
   ─────────────────────────────────────── */
.cho-hero-v2 {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 56px 24px 52px;
}
.cho-hero-v2__bg {
  position: absolute;
  inset: 0;
  /* Default: a cool winter-sky gradient suggesting the snowy outdoor scene from the mockup.
     To use a real photo, add this to the WP Customizer or a child theme:
       .cho-hero-v2__bg { background-image: url('/path/to/photo.jpg') !important;
                          background-size: cover; background-position: center right; }
  */
  background:
    linear-gradient(115deg,
      rgba(13,31,45,1) 0%,
      rgba(13,31,45,0.92) 38%,
      rgba(24,54,80,0.75) 60%,
      rgba(78,110,140,0.55) 80%,
      rgba(168,190,210,0.45) 100%);
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.cho-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,45,0.85) 0%, rgba(13,31,45,0.55) 60%, rgba(13,31,45,0.15) 100%);
  z-index: 1;
}
.cho-hero-v2__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.cho-hero-v2__headline {
  text-align: center;
}
.cho-hero-v2__h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 14px 0;
}
.cho-hero-v2__h1-orange {
  color: var(--flame);
  display: block;
}
.cho-hero-v2__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}
.cho-hero-v2__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.cho-hero-v2__report-panel {
  background: #122436;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 28px 26px 24px;
  display: flex;
  gap: 18px;
}
.cho-hero-v2__report-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.cho-hero-v2__report-copy {
  flex: 1;
  min-width: 0;
}
.cho-hero-v2__report-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.cho-hero-v2__report-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.cho-hero-v2__report-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}
.cho-hero-v2__report-trust span {
  white-space: nowrap;
}
.cho-hero-v2__report-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 12px 0 0 0;
}
.cho-hero-v2__find-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 24px;
}
.cho-hero-v2__find-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cho-hero-v2__find-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px 0;
}
.cho-hero-v2__zip-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cho-hero-v2__zip-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cho-hero-v2__zip-input-wrap svg {
  position: absolute;
  left: 12px;
  pointer-events: none;
}
.cho-hero-v2__zip-input {
  width: 100%;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 11px 14px 11px 34px;
  font-size: 14px;
  color: var(--navy);
  background: #ffffff;
  outline: none;
}
.cho-hero-v2__zip-input:focus {
  border-color: var(--navy);
}
.cho-hero-v2__zip-input::placeholder {
  color: #9ca3af;
}

/* ───────────────────────────────────────
   v2 buttons
   ─────────────────────────────────────── */
.cho-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s, transform 0.1s;
}
.cho-btn-v2:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cho-btn-v2--orange {
  background: var(--flame);
  color: #ffffff;
}
.cho-btn-v2--orange:hover {
  color: #ffffff;
}
.cho-btn-v2--navy {
  background: var(--navy);
  color: #ffffff;
}
.cho-btn-v2--navy:hover {
  color: #ffffff;
}
.cho-btn-v2--full {
  display: flex;
  width: 100%;
}

/* ───────────────────────────────────────
   MARKET BAR — dark strip below hero
   ─────────────────────────────────────── */
.cho-mkt-bar {
  background: #0d1f2d;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cho-mkt-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cho-mkt-bar__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cho-mkt-bar__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cho-mkt-bar__label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.cho-mkt-bar__val {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.cho-mkt-bar__val--lg {
  font-size: 22px;
}
.cho-mkt-bar__chg {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.cho-mkt-bar__chg--up {
  color: #4ade80;
}
.cho-mkt-bar__chg--dn {
  color: #f87171;
}
.cho-mkt-bar__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: right;
}
.cho-mkt-bar__live {
  color: #4ade80;
  font-weight: 600;
}

/* ───────────────────────────────────────
   BODY container
   ─────────────────────────────────────── */
.cho-body-v2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────────────────────────────────────
   SECTIONS
   ─────────────────────────────────────── */
.cho-sec-v2 {
  padding: 40px 0 0 0;
}
.cho-sec-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
}
.cho-sec-v2__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.cho-sec-v2__title-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--flame);
  border-radius: 2px;
}
.cho-sec-v2__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--flame);
  text-decoration: none;
  white-space: nowrap;
}
.cho-sec-v2__link:hover {
  text-decoration: underline;
}

/* ───────────────────────────────────────
   STATE GRID v2
   ─────────────────────────────────────── */
.cho-sg-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cho-sg-v2__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 38px 14px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 92px;
}
.cho-sg-v2__card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(13,31,45,0.08);
}
.cho-sg-v2__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}
.cho-sg-v2__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.cho-sg-v2__gal {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.cho-sg-v2__chg {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.cho-sg-v2__chg--up {
  color: #15803d;
}
.cho-sg-v2__chg--dn {
  color: var(--flame);
}
.cho-sg-v2__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #c0c8d0;
}

/* ───────────────────────────────────────
   CHART + NEWS ROW
   ─────────────────────────────────────── */
.cho-cn-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  padding-top: 40px;
}
.cho-cp-v2 {
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.cho-cp-v2__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 14px;
  gap: 12px;
}
.cho-cp-v2__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cho-cp-v2__info {
  font-size: 14px;
  color: var(--muted);
  cursor: help;
}
.cho-cp-v2__sub {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 3px;
}
.cho-cp-v2__range {
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--navy);
  background: #ffffff;
  cursor: pointer;
  outline: none;
}
.cho-cp-v2 .cho-price-chart {
  border: none;
  border-radius: 0;
  margin: 0;
}
.cho-cp-v2 .cho-price-chart__head {
  display: none;
}
.cho-cp-v2 .cho-price-chart__svg {
  padding: 0 12px 12px;
}

.cho-cs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.cho-cs-cell {
  padding: 14px 20px;
  border-right: 1px solid var(--rule);
}
.cho-cs-cell:last-child {
  border-right: none;
}
.cho-cs-cell__label {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cho-cs-cell__val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.cho-cs-cell__val--up {
  color: #15803d;
}
.cho-cs-cell__val--dn {
  color: var(--flame);
}
.cho-cs-cell__date {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  margin-top: 3px;
}

/* News panel */
.cho-np-v2 {
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.cho-np-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--rule);
}
.cho-np-v2__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.cho-np-v2__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 18px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.cho-np-v2__item:last-child {
  border-bottom: none;
}
.cho-np-v2__item:hover {
  background: #fafafa;
}
.cho-np-v2__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  width: 22px;
  flex-shrink: 0;
  padding-top: 1px;
}
.cho-np-v2__body {
  min-width: 0;
}
.cho-np-v2__t {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 4px;
}
.cho-np-v2__item:hover .cho-np-v2__t {
  color: var(--flame);
}
.cho-np-v2__meta {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
}

/* ───────────────────────────────────────
   QUOTES (homeowner reports)
   ─────────────────────────────────────── */
.cho-q-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}
.cho-q-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
}
.cho-q-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: #ffffff;
}
.cho-q-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cho-q-tbl th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 2px solid var(--rule);
  background: #fafafa;
  white-space: nowrap;
  font-weight: 600;
}
.cho-q-tbl td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  vertical-align: middle;
}
.cho-q-tbl tr:last-child td {
  border-bottom: none;
}
.cho-q-tbl__price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.cho-q-tbl__time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.cho-q-src--verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}
.cho-q-src--community {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--flame);
  font-weight: 600;
  white-space: nowrap;
}
.cho-q-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  margin: 12px 0 0 0;
}

.cho-q-side {
  background: #f8fafc;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
}
.cho-q-side__icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.cho-q-side__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
}
.cho-q-side__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px 0;
}
.cho-q-side__note {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0 0 0;
}

/* ───────────────────────────────────────
   HOW IT WORKS
   ─────────────────────────────────────── */
/* ───────────────────────────────────────
   HOW IT WORKS — cream band background
   Uses full-bleed trick to extend edge-to-edge
   even though the section sits inside cho-body-v2.
   ─────────────────────────────────────── */
.cho-hiw-band {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 48px;
  background: var(--cho-cc-section-bg, #EAF2FA);
  border-top: 1px solid #f0e6d4;
  border-bottom: 1px solid #f0e6d4;
}
.cho-hiw-v2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 32px 24px;
  text-align: center;
}
.cho-hiw-v2__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 32px 0;
}
.cho-hiw-v2__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cho-hiw-v2__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cho-hiw-v2__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cho-hiw-v2__icon--orange {
  background: var(--flame);
}
.cho-hiw-v2__icon--navy {
  background: var(--navy);
}
.cho-hiw-v2__step h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.cho-hiw-v2__step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ───────────────────────────────────────
   EMAIL ALERT BANNER
   ─────────────────────────────────────── */
.cho-ab-v2 {
  background: var(--navy);
  border-radius: 12px;
  margin: 40px 0 0 0;
}
.cho-ab-v2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 30px 34px;
}
.cho-ab-v2__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cho-ab-v2__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cho-ab-v2__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.cho-ab-v2__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}
.cho-ab-v2__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cho-ab-v2__row {
  display: flex;
  gap: 10px;
}
.cho-ab-v2__input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  outline: none;
}
.cho-ab-v2__input::placeholder {
  color: rgba(255,255,255,0.5);
}
.cho-ab-v2__input:focus {
  border-color: rgba(255,255,255,0.5);
}
.cho-ab-v2__note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ───────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cho-sg-v2 { grid-template-columns: repeat(3, 1fr); }
  .cho-cn-row { grid-template-columns: 1fr; }
  .cho-hero-v2__h1 { font-size: 36px; }
}
@media (max-width: 820px) {
  .cho-hero-v2__panels { grid-template-columns: 1fr; max-width: 540px; }
  .cho-hero-v2__h1 { font-size: 30px; }
  .cho-q-row { grid-template-columns: 1fr; }
  .cho-q-side { text-align: left; }
  .cho-hiw-v2__steps { grid-template-columns: repeat(2, 1fr); }
  .cho-ab-v2__inner { grid-template-columns: 1fr; gap: 22px; padding: 26px 24px; }
  .cho-mkt-bar__inner { flex-direction: column; align-items: flex-start; }
  .cho-mkt-bar__meta { text-align: left; }
}
@media (max-width: 600px) {
  .cho-hero-v2__report-panel { flex-direction: column; gap: 14px; }
  .cho-hero-v2__h1 { font-size: 26px; }
  .cho-sg-v2 { grid-template-columns: repeat(2, 1fr); }
  .cho-hiw-v2__steps { grid-template-columns: 1fr; }
  .cho-cs-row { grid-template-columns: 1fr; }
  .cho-cs-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .cho-cs-cell:last-child { border-bottom: none; }
  .cho-ab-v2__row { flex-direction: column; }
  .cho-mkt-bar__items { gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   v1.1.3 homepage mockup alignment pass
   - wires the Control Center hero image visually
   - removes duplicate top ticker in mockup mode
   - makes the homepage closer to the approved light hero mockup
   ════════════════════════════════════════════════════════════ */
body.cho-home-mockup-preview .cho-ticker,
body.home.cho-home-mockup-preview .cho-ticker {
  display: none !important;
}

/* v1.1.57: duplicate homepage unified-header CSS removed; the global header no longer renders on the front page. */

body.cho-homepage-v2 .cho-hero-v2 {
  background: var(--cho-cc-section-bg, #EAF2FA);
  padding: 28px 24px 26px;
  min-height: 390px;
}
body.cho-homepage-v2 .cho-hero-v2__bg {
  opacity: 1;
  background-size: cover;
  background-position: center right;
  filter: none;
}
body.cho-homepage-v2 .cho-hero-v2__overlay {
  background: linear-gradient(90deg,
    rgba(244,248,252,.80) 0%,
    rgba(244,248,252,.58) 42%,
    rgba(244,248,252,.30) 66%,
    rgba(244,248,252,.08) 100%);
}
body.cho-homepage-v2 .cho-hero-v2__inner {
  max-width: 1160px;
  gap: 22px;
}
body.cho-homepage-v2 .cho-hero-v2__headline { text-align: center; }
body.cho-homepage-v2 .cho-hero-v2__h1 {
  color: #081f3d;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
  margin-bottom: 9px;
}
body.cho-homepage-v2 .cho-hero-v2__h1-orange { color: #f05a1a; }
body.cho-homepage-v2 .cho-hero-v2__sub {
  color: #0a243f;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 600;
  max-width: 850px;
  line-height: 1.35;
}
body.cho-homepage-v2 .cho-hero-v2__panels {
  max-width: 980px;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .78fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 4px;
}
body.cho-homepage-v2 .cho-hero-v2__report-panel {
  background: linear-gradient(135deg,#062c60 0%,#061f3a 100%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(7,31,58,.26);
  padding: 26px 38px 24px;
  gap: 28px;
}
body.cho-homepage-v2 .cho-hero-v2__report-icon {
  width: 74px;
  height: 74px;
}
body.cho-homepage-v2 .cho-hero-v2__report-icon svg {
  width: 74px;
  height: 74px;
}
body.cho-homepage-v2 .cho-hero-v2__report-title {
  font-size: clamp(27px, 2.9vw, 39px);
  line-height: 1.05;
  margin-bottom: 10px;
}
body.cho-homepage-v2 .cho-hero-v2__report-desc {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 18px;
  color: rgba(255,255,255,.90);
}
body.cho-homepage-v2 .cho-hero-v2__report-trust {
  gap: 30px;
  justify-content: flex-start;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  margin-bottom: 20px;
}
body.cho-homepage-v2 .cho-btn-v2 {
  min-height: 48px;
  font-size: 14px;
}
body.cho-homepage-v2 .cho-btn-v2--orange {
  background: linear-gradient(180deg,#ff5b1a 0%,#f04a10 100%);
}
body.cho-homepage-v2 .cho-hero-v2__find-panel {
  padding: 30px 28px 26px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7,31,58,.18);
  border: 1px solid rgba(9,45,87,.10);
}
body.cho-homepage-v2 .cho-hero-v2__find-head {
  font-size: 27px;
  gap: 12px;
  margin-bottom: 13px;
}
body.cho-homepage-v2 .cho-hero-v2__find-head svg {
  width: 31px;
  height: 31px;
}
body.cho-homepage-v2 .cho-hero-v2__find-sub {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
body.cho-homepage-v2 .cho-hero-v2__zip-input { min-height: 47px; }

body.cho-homepage-v2 .cho-mkt-bar {
  background: var(--cho-cc-bg, #F4F8FC);
  border: 0;
  padding: 0 40px 26px;
}
body.cho-homepage-v2 .cho-mkt-bar__inner {
  max-width: 1180px;
  background: #082a52;
  border-radius: 10px;
  padding: 24px 44px;
  box-shadow: 0 8px 24px rgba(7,31,58,.10);
}
body.cho-homepage-v2 .cho-mkt-bar__items {
  gap: 0;
  flex: 1;
  justify-content: space-between;
}
body.cho-homepage-v2 .cho-mkt-bar__item {
  min-width: 130px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.22);
}
body.cho-homepage-v2 .cho-mkt-bar__item:last-child { border-right: 0; }
body.cho-homepage-v2 .cho-mkt-bar__val { font-size: 23px; }
body.cho-homepage-v2 .cho-mkt-bar__val--lg { font-size: 24px; }
body.cho-homepage-v2 .cho-mkt-bar__meta {
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 28px;
  min-width: 210px;
}

body.cho-homepage-v2 .cho-body-v2 {
  background: var(--cho-cc-bg, #F4F8FC);
  padding-top: 0;
}
body.cho-homepage-v2 .cho-sec-v2 {
  max-width: 1180px;
}
body.cho-homepage-v2 .cho-sg-v2 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
body.cho-homepage-v2 .cho-sg-v2__card {
  min-height: 87px;
  padding: 17px 18px;
}
body.cho-homepage-v2 .cho-cn-row {
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .95fr);
  gap: 24px;
}
body.cho-homepage-v2 .cho-q-row {
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .85fr);
  gap: 24px;
}
body.cho-homepage-v2 .cho-hiw-band {
  max-width: 1180px;
  background: var(--cho-cc-section-bg, #EAF2FA);
  border-radius: 12px;
  padding: 18px 28px 24px;
}
body.cho-homepage-v2 .cho-hiw-v2__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
body.cho-homepage-v2 .cho-ab-v2 {
  max-width: 1180px;
  margin-top: 18px;
}
body.cho-homepage-v2 .cho-guides-v2 {
  display: none !important;
}
body.cho-homepage-v2 .cho-footer {
  margin-top: 0;
  background: linear-gradient(180deg,#05264d 0%,#061f3a 100%);
}
body.cho-homepage-v2 .cho-footer__inner { max-width: 1180px; }
body.cho-homepage-v2 .cho-footer__grid { grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr; gap: 42px; }

@media (max-width: 980px) {
  body.cho-homepage-v2 .cho-hero-v2 { padding-top: 26px; }
  body.cho-homepage-v2 .cho-hero-v2__panels { grid-template-columns: 1fr; max-width: 660px; }
  body.cho-homepage-v2 .cho-sg-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cho-homepage-v2 .cho-cn-row,
  body.cho-homepage-v2 .cho-q-row { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-hiw-v2__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cho-homepage-v2 .cho-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.cho-homepage-v2 .cho-hero-v2 { padding: 24px 16px; }
  body.cho-homepage-v2 .cho-hero-v2__report-panel { padding: 24px 20px; }
  body.cho-homepage-v2 .cho-hero-v2__report-icon { width: 50px; height: 50px; }
  body.cho-homepage-v2 .cho-hero-v2__report-icon svg { width: 50px; height: 50px; }
  body.cho-homepage-v2 .cho-mkt-bar { padding-left: 16px; padding-right: 16px; }
  body.cho-homepage-v2 .cho-mkt-bar__inner { padding: 20px; }
  body.cho-homepage-v2 .cho-mkt-bar__item { border-right: 0; min-width: 45%; margin-right: 0; padding-right: 0; }
  body.cho-homepage-v2 .cho-sg-v2 { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-hiw-v2__steps { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-ab-v2__row { grid-template-columns: 1fr; }
}

/* v1.1.6 homepage How It Works alignment correction */
body.cho-homepage-v2 .cho-hiw-band,
.cho-home-v115-header ~ .cho-main .cho-hiw-band{
  width:calc(100% - 48px)!important;
  max-width:1220px!important;
  left:auto!important;
  right:auto!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
  display:block!important;
}
body.cho-homepage-v2 .cho-hiw-v2,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2{
  max-width:1120px!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  text-align:center!important;
}
body.cho-homepage-v2 .cho-hiw-v2__steps,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{
  justify-content:center!important;
  align-items:start!important;
}
body.cho-homepage-v2 .cho-hiw-v2__step,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__step{
  text-align:center!important;
  align-items:center!important;
}
@media(max-width:640px){
  body.cho-homepage-v2 .cho-hiw-band,
  .cho-home-v115-header ~ .cho-main .cho-hiw-band{width:calc(100% - 32px)!important}
}


/* =========================================================
   v1.1.56 migrated homepage critical CSS from template markup
   ========================================================= */
body.cho-home-mockup-preview .cho-ticker{display:block!important}
.cho-home-v115-header{background:#061f3a;color:#fff;border-bottom:1px solid rgba(255,255,255,.12);position:relative;z-index:30}
.cho-home-v115-header__inner{max-width:1180px;margin:0 auto;height:86px;display:flex;align-items:center;gap:34px;padding:0 28px}
.cho-home-v115-logo{display:flex;align-items:center;gap:10px;color:#fff;text-decoration:none;min-width:285px}
.cho-home-v115-logo svg{width:60px;height:42px;flex:0 0 auto}
.cho-home-v115-logo__word{display:block;font-family:Arial,Helvetica,sans-serif;font-weight:900;line-height:.9;letter-spacing:.02em;text-transform:uppercase;font-size:27px;color:#fff}
.cho-home-v115-logo__word em{display:block;font-style:normal;color:#ff5b1a}.cho-home-v115-logo__dot{font-size:16px;color:#fff;text-transform:none;margin-left:2px}
.cho-home-v115-logo__tag{display:block;margin-top:4px;font-size:12px;font-weight:700;color:rgba(255,255,255,.86);line-height:1.15}
.cho-home-v115-nav{display:flex;align-items:center;gap:22px;margin-left:auto;font-family:Arial,Helvetica,sans-serif;font-size:12.5px;font-weight:800;text-transform:uppercase;letter-spacing:.03em;white-space:nowrap}
.cho-home-v115-nav a{color:#fff;text-decoration:none;padding:31px 0 27px;border-bottom:3px solid transparent}.cho-home-v115-nav a.is-active{border-bottom-color:#ff5b1a}.cho-home-v115-nav a:hover{border-bottom-color:#ff5b1a;color:#fff}.cho-home-v115-login{border:1.5px solid rgba(255,255,255,.8)!important;border-radius:7px!important;padding:12px 18px!important;margin-left:4px}.cho-home-v115-report{background:linear-gradient(180deg,#ff5b1a 0%,#f04a11 100%)!important;border-color:#ff6a2d!important;color:#fff!important;box-shadow:0 8px 18px rgba(240,74,17,.22)!important}.cho-home-v115-report:hover{background:linear-gradient(180deg,#ff6a2d 0%,#ef420b 100%)!important;color:#fff!important;border-color:#ff7a42!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2{background:var(--cho-cc-section-bg,#EAF2FA)!important;padding:24px 24px 26px!important;min-height:438px!important;display:flex!important;align-items:center!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__bg{opacity:1!important;background-size:cover!important;background-position:center right!important;filter:none!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__overlay{background:linear-gradient(90deg,rgba(244,248,252,.76) 0%,rgba(244,248,252,.55) 43%,rgba(244,248,252,.22) 68%,rgba(244,248,252,.06) 100%)!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__inner{max-width:1180px!important;gap:26px!important;margin:0 auto!important;width:100%!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__headline{text-align:center!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__h1{font-size:clamp(42px,5vw,62px)!important;line-height:1.02!important;letter-spacing:-.025em!important;color:#092244!important;text-shadow:0 1px 0 rgba(255,255,255,.65)!important;margin:0 0 8px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__h1-orange{color:#f05a1a!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__sub{color:#0b2748!important;font-size:18px!important;font-weight:700!important;max-width:840px!important;line-height:1.35!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{max-width:1010px!important;grid-template-columns:minmax(0,1.45fr) minmax(330px,.80fr)!important;gap:36px!important;align-items:stretch!important;margin-top:6px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel{background:linear-gradient(135deg,#07356f 0%,#062247 100%)!important;border-radius:13px!important;border:1px solid rgba(255,255,255,.16)!important;box-shadow:0 16px 38px rgba(7,31,58,.25)!important;padding:31px 40px 28px!important;gap:30px!important;align-items:flex-start!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon,.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon svg{width:78px!important;height:78px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-title{font-size:40px!important;line-height:1.03!important;margin-bottom:9px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-desc{font-size:16px!important;line-height:1.45!important;color:rgba(255,255,255,.92)!important;margin-bottom:16px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-trust{gap:34px!important;color:rgba(255,255,255,.92)!important;font-size:14px!important;margin-bottom:22px!important}.cho-home-v115-header ~ .cho-main .cho-btn-v2{min-height:54px!important;border-radius:8px!important;font-size:15px!important}.cho-home-v115-header ~ .cho-main .cho-btn-v2--orange{background:linear-gradient(180deg,#ff5b1a 0%,#f04710 100%)!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-note{justify-content:center!important;color:rgba(255,255,255,.72)!important;font-size:12px!important;margin-top:12px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__find-panel{padding:33px 30px 29px!important;border-radius:13px!important;box-shadow:0 16px 38px rgba(7,31,58,.18)!important;border:1px solid rgba(9,45,87,.12)!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head{font-size:29px!important;gap:12px!important;margin-bottom:13px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head svg{width:31px!important;height:31px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__find-sub{font-size:16px!important;line-height:1.5!important;margin-bottom:20px!important;color:#1d3553!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__zip-input{min-height:50px!important;font-size:14px!important}.cho-home-v115-header ~ .cho-main .cho-btn-v2--navy{background:#082a52!important;color:#fff!important}
.cho-home-v115-header ~ .cho-main .cho-mkt-bar{background:var(--cho-cc-bg,#F4F8FC)!important;padding:0 40px 26px!important}.cho-home-v115-header ~ .cho-main .cho-mkt-bar__inner{max-width:1180px!important;background:#082a52!important;border-radius:10px!important;padding:24px 44px!important;box-shadow:0 8px 24px rgba(7,31,58,.10)!important}.cho-home-v115-header ~ .cho-main .cho-body-v2{background:var(--cho-cc-bg,#F4F8FC)!important;padding-top:0!important}.cho-home-v115-header ~ .cho-main .cho-sec-v2,.cho-home-v115-header ~ .cho-main .cho-hiw-band,.cho-home-v115-header ~ .cho-main .cho-ab-v2{max-width:1180px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:14px!important}.cho-home-v115-header ~ .cho-main .cho-cn-row{grid-template-columns:minmax(0,1.65fr) minmax(280px,.95fr)!important;gap:24px!important}.cho-home-v115-header ~ .cho-main .cho-q-row{grid-template-columns:minmax(0,1.75fr) minmax(280px,.85fr)!important;gap:24px!important}.cho-home-v115-header ~ .cho-main .cho-hiw-band{background:var(--cho-cc-section-bg,#EAF2FA)!important;border-radius:12px!important;padding:18px 28px 24px!important}.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:22px!important}.cho-home-v115-header ~ .cho-main .cho-guides-v2{display:none!important}
@media(max-width:980px){.cho-home-v115-header__inner{height:auto;min-height:78px;flex-wrap:wrap;padding:14px 22px}.cho-home-v115-nav{width:100%;overflow:auto;gap:20px}.cho-home-v115-nav a{padding:10px 0}.cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{grid-template-columns:1fr!important;max-width:700px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.cho-home-v115-header ~ .cho-main .cho-cn-row,.cho-home-v115-header ~ .cho-main .cho-q-row{grid-template-columns:1fr!important}.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:640px){.cho-home-v115-logo{min-width:0}.cho-home-v115-logo__word{font-size:22px}.cho-home-v115-logo__tag{font-size:10px}.cho-home-v115-header ~ .cho-main .cho-hero-v2{padding:24px 16px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__h1{font-size:34px!important}.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel{flex-direction:column!important;padding:24px 20px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:1fr!important}.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{grid-template-columns:1fr!important}.cho-home-v115-header ~ .cho-main .cho-ab-v2__row{grid-template-columns:1fr!important}}

/* v1.1.6 live homepage polish */
.cho-home-v115-header{box-shadow:0 1px 0 rgba(255,255,255,.08)}
.cho-home-v115-header__inner{max-width:1240px!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2{min-height:520px!important;padding:34px 24px 34px!important;overflow:hidden!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__inner{max-width:1220px!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{max-width:1080px!important;gap:38px!important;margin-top:14px!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel{min-height:232px!important}
.cho-home-v115-header ~ .cho-main .cho-hero-v2__find-panel{min-height:232px!important}
.cho-home-v115-header ~ .cho-main .cho-mkt-bar{margin-top:0!important;padding-bottom:34px!important}
.cho-home-v115-header ~ .cho-main .cho-mkt-bar__inner{max-width:1220px!important;transform:translateY(-8px)!important;margin-bottom:-8px!important}
.cho-home-v115-header ~ .cho-main .cho-sec-v2,.cho-home-v115-header ~ .cho-main .cho-hiw-band,.cho-home-v115-header ~ .cho-main .cho-ab-v2{max-width:1220px!important}
.cho-home-v115-header ~ .cho-main .cho-sec-v2{margin-top:0!important;margin-bottom:28px!important}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card{min-height:96px!important;padding:19px 20px!important;background:#fff!important;box-shadow:0 7px 18px rgba(8,34,68,.055)!important}
.cho-home-v115-header ~ .cho-main .cho-cp-v2,.cho-home-v115-header ~ .cho-main .cho-np-v2,.cho-home-v115-header ~ .cho-main .cho-q-wrap,.cho-home-v115-header ~ .cho-main .cho-q-side{box-shadow:0 9px 22px rgba(8,34,68,.055)!important;border-color:rgba(8,34,68,.12)!important}
.cho-home-v115-header ~ .cho-main .cho-q-row{align-items:stretch!important}.cho-home-v115-header ~ .cho-main .cho-q-side{align-self:stretch!important;display:flex!important;flex-direction:column!important;justify-content:center!important}
.cho-home-v115-header ~ .cho-main .cho-hiw-band{margin-top:16px!important;margin-bottom:22px!important;padding:24px 34px 30px!important}.cho-home-v115-header ~ .cho-main .cho-ab-v2{margin-top:0!important;margin-bottom:0!important}.cho-home-v115-header ~ .cho-main .cho-guides-v2{display:none!important}
@media(max-width:980px){.cho-home-v115-header ~ .cho-main .cho-hero-v2{min-height:auto!important}.cho-home-v115-header ~ .cho-main .cho-mkt-bar__inner{transform:none!important;margin-bottom:0!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:640px){.cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{gap:18px!important}.cho-home-v115-header ~ .cho-main .cho-mkt-bar{padding-left:16px!important;padding-right:16px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:1fr!important}}


/* v1.1.6: center the How It Works band and prevent old full-bleed offsets from pulling it left. */
.cho-home-v115-header ~ .cho-main .cho-hiw-band{
  width:calc(100% - 48px)!important;
  max-width:1220px!important;
  left:auto!important;
  right:auto!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
  display:block!important;
}
.cho-home-v115-header ~ .cho-main .cho-hiw-v2{
  max-width:1120px!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  text-align:center!important;
}
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{
  justify-content:center!important;
  align-items:start!important;
}
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__step{
  text-align:center!important;
  align-items:center!important;
}
@media(max-width:640px){.cho-home-v115-header ~ .cho-main .cho-hiw-band{width:calc(100% - 32px)!important}}

/* =========================================================
   v1.1.60 homepage mobile usability cleanup
   Scope: front-page-v2.css only. Desktop and non-home pages unaffected.
   ========================================================= */
.cho-home-v115-toggle{display:none!important;margin-left:auto;flex:0 0 auto}

@media(max-width:760px){
  body.cho-homepage-v2 .cho-ticker{font-size:10px!important;height:24px!important;line-height:24px!important;overflow:hidden!important}
  body.cho-homepage-v2 .cho-ticker__track{gap:10px!important;white-space:nowrap!important}

  .cho-home-v115-header__inner{height:68px!important;min-height:68px!important;flex-wrap:nowrap!important;gap:10px!important;padding:0 14px!important;position:relative!important}
  .cho-home-v115-logo{min-width:0!important;flex:1 1 auto!important;gap:7px!important;overflow:hidden!important}
  .cho-home-v115-logo svg{width:42px!important;height:30px!important;flex-basis:42px!important}
  .cho-home-v115-logo__word{font-size:18px!important;line-height:.95!important;letter-spacing:0!important}
  .cho-home-v115-logo__dot{font-size:10px!important}
  .cho-home-v115-logo__tag{display:none!important}
  .cho-home-v115-toggle{display:flex!important;align-items:center!important;justify-content:center!important;width:42px!important;height:42px!important;border:1px solid rgba(255,255,255,.22)!important;border-radius:8px!important;background:rgba(255,255,255,.07)!important}
  .cho-home-v115-nav{display:none!important;position:absolute!important;left:0!important;right:0!important;top:68px!important;z-index:100!important;width:auto!important;background:#061f3a!important;border-top:1px solid rgba(255,255,255,.12)!important;box-shadow:0 18px 28px rgba(0,0,0,.22)!important;overflow:visible!important;padding:8px 16px 14px!important;gap:0!important;margin-left:0!important;white-space:normal!important}
  .cho-home-v115-nav.cho-nav--open{display:flex!important;flex-direction:column!important;align-items:stretch!important}
  .cho-home-v115-nav a{display:block!important;padding:13px 4px!important;border-bottom:1px solid rgba(255,255,255,.10)!important;font-size:13px!important;line-height:1.2!important;color:#fff!important}
  .cho-home-v115-nav a:last-child{border-bottom:0!important;margin-top:8px!important;text-align:center!important;border-radius:8px!important;padding:13px 16px!important}

  .cho-home-v115-header ~ .cho-main .cho-hero-v2{min-height:auto!important;padding:18px 12px 18px!important;align-items:flex-start!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__overlay{background:linear-gradient(180deg,rgba(244,248,252,.90) 0%,rgba(244,248,252,.78) 48%,rgba(244,248,252,.68) 100%)!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__inner{gap:13px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__headline{padding:2px 4px 0!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__h1{font-size:28px!important;line-height:1.03!important;letter-spacing:-.02em!important;margin-bottom:6px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__sub{font-size:12.5px!important;line-height:1.35!important;font-weight:700!important;max-width:330px!important;margin-left:auto!important;margin-right:auto!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{gap:12px!important;margin-top:8px!important;max-width:100%!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel{padding:16px 14px!important;gap:12px!important;border-radius:12px!important;min-height:0!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon,.cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon svg{width:44px!important;height:44px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-title{font-size:25px!important;line-height:1.05!important;margin-bottom:7px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-desc{font-size:13px!important;line-height:1.35!important;margin-bottom:8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-trust{display:none!important}
  .cho-home-v115-header ~ .cho-main .cho-btn-v2{min-height:45px!important;font-size:12.5px!important;border-radius:8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-note{font-size:11px!important;margin-top:8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-panel{padding:18px 15px!important;border-radius:12px!important;min-height:0!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head{font-size:23px!important;line-height:1.12!important;margin-bottom:8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head svg{width:22px!important;height:22px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-sub{font-size:12.5px!important;line-height:1.4!important;margin-bottom:12px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__zip-input{min-height:45px!important;font-size:13px!important}

  .cho-home-v115-header ~ .cho-main .cho-mkt-bar{padding:0 12px 16px!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__inner{padding:12px 13px!important;border-radius:10px!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__items{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__item{border-right:0!important;min-width:0!important;padding:0!important;margin:0!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__label{font-size:8.5px!important;letter-spacing:.08em!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__val{font-size:17px!important;line-height:1.1!important}
  .cho-home-v115-header ~ .cho-main .cho-mkt-bar__meta{font-size:9.5px!important;margin-top:10px!important;text-align:left!important;border-top:1px solid rgba(255,255,255,.10)!important;padding-top:8px!important}

  .cho-home-v115-header ~ .cho-main .cho-body-v2{padding-left:12px!important;padding-right:12px!important}
  .cho-home-v115-header ~ .cho-main .cho-sec-v2{margin-bottom:18px!important}
  .cho-home-v115-header ~ .cho-main .cho-sec-v2__head{align-items:flex-end!important;gap:8px!important;margin-bottom:12px!important}
  .cho-home-v115-header ~ .cho-main .cho-sec-v2__title{font-size:20px!important;line-height:1.15!important}
  .cho-home-v115-header ~ .cho-main .cho-sg-v2__card{min-height:0!important;padding:13px 14px!important;border-radius:9px!important}

  .cho-home-v115-header ~ .cho-main .cho-cp-v2,.cho-home-v115-header ~ .cho-main .cho-np-v2,.cho-home-v115-header ~ .cho-main .cho-q-wrap,.cho-home-v115-header ~ .cho-main .cho-q-side{border-radius:10px!important}
  .cho-home-v115-header ~ .cho-main .cho-cp-v2{overflow:hidden!important}
  .cho-home-v115-header ~ .cho-main .cho-price-chart__svg{min-width:520px!important}
  .cho-home-v115-header ~ .cho-main .cho-price-chart{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}

  .cho-home-v115-header ~ .cho-main .cho-q-title{font-size:19px!important;line-height:1.2!important;align-items:flex-start!important}
  .cho-home-v115-header ~ .cho-main .cho-q-wrap{background:transparent!important;border:0!important;box-shadow:none!important;overflow:visible!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl,.cho-home-v115-header ~ .cho-main .cho-q-tbl tbody,.cho-home-v115-header ~ .cho-main .cho-q-tbl tr,.cho-home-v115-header ~ .cho-main .cho-q-tbl td{display:block!important;width:100%!important;box-sizing:border-box!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl thead{display:none!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl tr{background:#fff!important;border:1px solid rgba(8,34,68,.11)!important;border-radius:10px!important;margin:0 0 10px!important;padding:10px 12px!important;box-shadow:0 5px 14px rgba(8,34,68,.045)!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td{border:0!important;padding:5px 0!important;font-size:12px!important;line-height:1.35!important;display:grid!important;grid-template-columns:82px minmax(0,1fr)!important;gap:8px!important;align-items:start!important;overflow-wrap:anywhere!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td::before{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace!important;font-size:9px!important;text-transform:uppercase!important;letter-spacing:.08em!important;color:#6d7b89!important;font-weight:800!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td:nth-child(1)::before{content:'Location'}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td:nth-child(2)::before{content:'Dealer'}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td:nth-child(3)::before{content:'Price'}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td:nth-child(4)::before{content:'Reported'}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td:nth-child(5)::before{content:'Source'}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl__price{font-size:15px!important}
  .cho-home-v115-header ~ .cho-main .cho-q-note{font-size:11px!important;line-height:1.35!important}
  .cho-home-v115-header ~ .cho-main .cho-q-side{padding:22px 16px!important;min-height:0!important}

  .cho-home-v115-header ~ .cho-main .cho-hiw-band{width:100%!important;margin-top:12px!important;margin-bottom:16px!important;padding:18px 14px!important;border-radius:10px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__title{font-size:22px!important;margin-bottom:14px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{gap:12px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__step{padding:10px 8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__icon{width:44px!important;height:44px!important;margin-bottom:8px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__step h3{font-size:14px!important;margin-bottom:4px!important}
  .cho-home-v115-header ~ .cho-main .cho-hiw-v2__step p{font-size:11.5px!important;line-height:1.35!important}
  .cho-home-v115-header ~ .cho-main .cho-ab-v2{padding:16px!important;border-radius:10px!important}
  .cho-home-v115-header ~ .cho-main .cho-ab-v2__inner{gap:14px!important}
  .cho-home-v115-header ~ .cho-main .cho-ab-v2__title{font-size:20px!important}
  .cho-home-v115-header ~ .cho-main .cho-ab-v2__desc{font-size:12px!important}
}

@media(max-width:390px){
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__h1{font-size:25px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-title{font-size:23px!important}
  .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head{font-size:21px!important}
  .cho-home-v115-header ~ .cho-main .cho-q-tbl td{grid-template-columns:76px minmax(0,1fr)!important}
}

/* v1.1.68 — homepage dealer-median state cards */
.cho-sec-v2__head--stacked{align-items:flex-end;}
.cho-sec-v2__title-wrap{display:flex;flex-direction:column;gap:4px;min-width:0;}
.cho-sec-v2__subline{margin:0;color:var(--muted);font-size:13px;line-height:1.35;}
.cho-sg-v2__label{font-family:var(--mono);font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--flame);line-height:1.1;}
.cho-sg-v2__source{font-size:11px;color:var(--muted);line-height:1.25;}
.cho-sg-v2__count{font-size:11px;color:#43566b;line-height:1.25;}
.cho-sg-v2__price--empty{color:#64748b!important;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median{align-items:center!important;justify-content:center!important;text-align:center!important;gap:7px!important;min-height:132px!important;padding:22px 16px!important;border-radius:12px!important;box-shadow:0 9px 24px rgba(8,34,68,.065)!important;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(8,34,68,.10)!important;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__name{font-size:14px!important;font-weight:800!important;line-height:1.2!important;color:var(--navy)!important;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__price{font-size:29px!important;line-height:1!important;margin-top:1px!important;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__gal{font-family:var(--sans);font-size:13px!important;margin-left:1px;}
.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__arrow{top:14px!important;right:14px!important;transform:none!important;opacity:.55!important;}
@media(min-width:981px){.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median:nth-child(11):last-child{grid-column:3;}}
@media(max-width:640px){.cho-sec-v2__head--stacked{align-items:flex-start!important;flex-direction:column!important}.cho-sec-v2__subline{font-size:12px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median{min-height:118px!important}.cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__price{font-size:25px!important}}

/* v1.1.70 homepage price-alert form completion */
.cho-ab-v2__row--details{
  display:grid;
  grid-template-columns:120px minmax(170px,1fr);
  gap:10px;
}
.cho-ab-v2__input--zip{
  text-align:center;
}
.cho-ab-v2__help{
  font-size:11px;
  line-height:1.35;
  color:rgba(255,255,255,.62);
  margin-top:2px;
}
body.cho-homepage-v2 .cho-ab-v2__row--details,
.cho-home-v115-header ~ .cho-main .cho-ab-v2__row--details{
  display:grid!important;
  grid-template-columns:120px minmax(170px,1fr)!important;
}
body.cho-homepage-v2 .cho-ab-v2__help,
.cho-home-v115-header ~ .cho-main .cho-ab-v2__help{
  font-size:11px!important;
  line-height:1.35!important;
  color:rgba(255,255,255,.62)!important;
}
@media(max-width:640px){
  body.cho-homepage-v2 .cho-ab-v2__row--details,
  .cho-home-v115-header ~ .cho-main .cho-ab-v2__row--details{
    grid-template-columns:1fr!important;
  }
}

/* =========================================================
   v1.1.79 homepage mobile UX upgrade — approved mockup pass
   ========================================================= */
@media(max-width:760px){
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2{
    padding:18px 14px 16px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__panels{
    display:flex!important;
    flex-direction:column!important;
    gap:14px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-panel{
    order:1!important;
    padding:24px 20px!important;
    border-radius:20px!important;
    background:linear-gradient(135deg, #061f3a 0%, #0a2d63 100%)!important;
    box-shadow:0 14px 32px rgba(6,31,58,.20)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel{
    order:2!important;
    display:grid!important;
    grid-template-columns:56px minmax(0,1fr) 20px!important;
    gap:12px!important;
    align-items:center!important;
    padding:18px!important;
    border:2px solid rgba(255,91,26,.82)!important;
    border-radius:18px!important;
    background:#fffdf9!important;
    color:#071f3a!important;
    box-shadow:0 10px 24px rgba(8,34,68,.08)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-panel::after{
    content:"›";
    color:#ff5b1a;
    font-size:42px;
    line-height:1;
    justify-self:end;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon{
    width:56px!important;
    height:56px!important;
    background:#ff5b1a!important;
    border-radius:999px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-icon svg{
    width:34px!important;
    height:34px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-copy{
    min-width:0!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-title{
    color:#071f3a!important;
    font-size:28px!important;
    line-height:1.08!important;
    margin:0 0 3px!important;
    letter-spacing:-.02em!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-desc{
    color:#596a7b!important;
    font-size:15px!important;
    line-height:1.35!important;
    margin:0!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-note,
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__report-copy > .cho-btn-v2{
    display:none!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__h1{
    font-size:40px!important;
    line-height:1.02!important;
    letter-spacing:-.035em!important;
    color:#071f3a!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__sub{
    font-size:17px!important;
    line-height:1.45!important;
    font-weight:760!important;
    color:#31465b!important;
    max-width:none!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-head{
    color:#fff!important;
    font-size:34px!important;
    line-height:1.08!important;
    font-weight:950!important;
    letter-spacing:-.025em!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__find-sub{
    color:rgba(255,255,255,.84)!important;
    font-size:17px!important;
    line-height:1.4!important;
    margin-bottom:16px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__zip-input-wrap{
    min-height:62px!important;
    border-radius:14px!important;
    background:#fff!important;
    box-shadow:inset 0 0 0 1px rgba(8,34,68,.10)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-hero-v2__zip-input{
    min-height:62px!important;
    font-size:20px!important;
    font-weight:650!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-btn-v2{
    min-height:62px!important;
    border-radius:14px!important;
    font-size:18px!important;
    font-weight:950!important;
    letter-spacing:.01em!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar{
    padding:0 14px 18px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar__inner{
    background:#fff!important;
    color:#071f3a!important;
    border:1px solid rgba(8,34,68,.10)!important;
    border-radius:18px!important;
    padding:18px!important;
    box-shadow:0 10px 24px rgba(8,34,68,.08)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar__items{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:14px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar__label{
    color:#43566b!important;
    font-size:10px!important;
    font-weight:900!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar__val{
    color:#071f3a!important;
    font-size:26px!important;
    font-weight:900!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-mkt-bar__meta{
    color:#506176!important;
    font-size:12px!important;
    border-top:1px solid rgba(8,34,68,.10)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sec-v2__title{
    font-size:32px!important;
    line-height:1.08!important;
    letter-spacing:-.025em!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sec-v2__link{
    font-size:16px!important;
    font-weight:900!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2{
    grid-template-columns:1fr!important;
    gap:13px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 24px!important;
    align-items:center!important;
    text-align:left!important;
    min-height:0!important;
    padding:20px 18px!important;
    border-radius:18px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__name{
    font-size:26px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#071f3a!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__label{
    font-size:13px!important;
    font-weight:950!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__price{
    font-size:42px!important;
    font-weight:950!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__count,
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__source{
    font-size:15px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__arrow{
    position:static!important;
    color:#ff5b1a!important;
    opacity:1!important;
    font-size:34px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-cs-row{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-cs-cell{
    border-bottom:0!important;
    border-right:1px solid var(--rule)!important;
    padding:18px 12px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-cs-cell__label{
    font-size:12px!important;
    font-weight:900!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-cs-cell__val{
    font-size:30px!important;
    font-weight:950!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-np-v2__title{
    font-size:31px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-np-v2__item{
    padding:17px 16px!important;
    gap:14px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-np-v2__t{
    font-size:18px!important;
    line-height:1.28!important;
    font-weight:900!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-q-title{
    font-size:32px!important;
    line-height:1.08!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-q-tbl tr{
    border-radius:18px!important;
    padding:18px!important;
    box-shadow:0 10px 24px rgba(8,34,68,.07)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-q-tbl td{
    grid-template-columns:1fr!important;
    gap:2px!important;
    font-size:17px!important;
    padding:4px 0!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-q-tbl td::before{
    font-size:11px!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-q-tbl__price{
    font-size:28px!important;
    font-weight:950!important;
    color:#071f3a!important;
  }
}

/* v1.1.80 mobile refinements requested after field testing */
.cho-hero-v2__report-panel[data-cho-click-url]{cursor:pointer;}
.cho-hero-v2__report-panel[data-cho-click-url]:focus-visible{outline:3px solid rgba(255,91,26,.65);outline-offset:4px;}
.cho-zip-result__card{display:block;text-decoration:none;border-radius:14px;padding:14px 16px;margin-top:14px;background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.18);box-shadow:0 10px 26px rgba(0,0,0,.10);}
.cho-zip-result__card:hover{background:rgba(255,255,255,.15);}
.cho-zip-result__eyebrow{display:block;font-family:var(--mono);font-size:11px;line-height:1.1;font-weight:900;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.72);margin-bottom:6px;}
.cho-zip-result__main{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.cho-zip-result__town{display:block;color:#fff;font-size:24px;line-height:1.05;font-weight:950;letter-spacing:-.02em;}
.cho-zip-result__price{display:inline-flex;align-items:baseline;color:#20b26b;font-size:28px;line-height:1;font-weight:950;letter-spacing:-.025em;white-space:nowrap;}
.cho-zip-result__price small{font-size:17px;font-weight:800;margin-left:2px;color:#a8f0c8;}
.cho-zip-result__details{display:block;color:#ff7a1a;font-size:18px;line-height:1.15;font-weight:950;margin-top:7px;}
.cho-zip-result__note{display:block;color:rgba(255,255,255,.70);font-size:12px;line-height:1.25;margin-top:6px;}
.cho-zip-result--notfound .cho-zip-result__price{color:#fff;}
.cho-zip-result--notfound .cho-zip-result__price small{display:none;}

@media(max-width:640px){
  .cho-home-v115-header ~ .cho-main .cho-zip-result__card{padding:15px 15px!important;border-radius:14px!important;margin-top:14px!important;}
  .cho-home-v115-header ~ .cho-main .cho-zip-result__town{font-size:24px!important;}
  .cho-home-v115-header ~ .cho-main .cho-zip-result__price{font-size:31px!important;}
  .cho-home-v115-header ~ .cho-main .cho-zip-result__details{font-size:19px!important;}

  /* Front-page state cards: match the /heating-oil-prices/ mobile card hierarchy. */
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2{grid-template-columns:1fr!important;gap:14px!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median{
    min-height:0!important;display:grid!important;grid-template-columns:96px minmax(0,1fr) 24px!important;grid-template-areas:"map name arrow" "map label arrow" "map price arrow" "map count arrow"!important;text-align:left!important;align-items:center!important;justify-content:stretch!important;gap:2px 16px!important;padding:22px 18px!important;border-radius:18px!important;box-shadow:0 12px 26px rgba(8,34,68,.08)!important;
  }
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median:first-child{border-color:rgba(255,91,26,.75)!important;box-shadow:0 14px 30px rgba(255,91,26,.08)!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median::before{content:none!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__icon{display:block;grid-area:map;width:88px;height:64px;border-radius:16px;overflow:hidden;background:linear-gradient(135deg,#d8ebfb,#eef7ff);opacity:.96;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__name{grid-area:name;font-size:28px!important;line-height:1.05!important;font-weight:900!important;color:#071f3a!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__label{grid-area:label;font-size:13px!important;letter-spacing:.09em!important;font-weight:900!important;margin-top:2px!important;color:#ff5b1a!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__price{grid-area:price;font-size:42px!important;font-weight:900!important;letter-spacing:-.025em!important;line-height:1!important;margin-top:4px!important;color:#071f3a!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__gal{font-size:18px!important;font-weight:600!important;color:#52677d!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__source{display:none!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__count{grid-area:count;font-size:15px!important;color:#40546a!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__arrow{grid-area:arrow;position:static!important;justify-self:end;align-self:center;color:#ff5b1a!important;opacity:1!important;font-size:38px!important;font-family:var(--sans,system-ui,sans-serif);}
}

@media(max-width:390px){
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median{grid-template-columns:76px minmax(0,1fr) 22px!important;gap:2px 12px!important;padding:20px 16px!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__icon{width:68px;height:56px;border-radius:14px;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__name{font-size:25px!important;}
  body.cho-homepage-v2 .cho-home-v115-header ~ .cho-main .cho-sg-v2__card--median .cho-sg-v2__price{font-size:38px!important;}
}



/* v1.1.81 configurable state-card images */
.cho-sg-v2__icon{display:none;}
.cho-sg-v2__icon img{display:block;width:100%;height:100%;object-fit:cover;}
