/*
Theme Name: Classic Car History — Reference Design
Theme URI: https://classic-car-history.com/
Description: Premium editorial child theme for Classic Car History, based on Kadence.
Author: Classic Car History
Version: 2.4.0
Template: kadence
Text Domain: classic-car-history
*/

:root {
    --cch-navy: #081725;
    --cch-navy-2: #102a3b;
    --cch-ink: #16202a;
    --cch-muted: #65717b;
    --cch-line: #d9d8d2;
    --cch-paper: #f5f2eb;
    --cch-paper-2: #ece8de;
    --cch-red: #a9251d;
    --cch-red-dark: #861b16;
    --cch-gold: #b8904a;
    --cch-white: #fff;
    --cch-shadow: 0 18px 48px rgba(10, 23, 36, .12);
    --cch-radius: 4px;
    --cch-serif: Georgia, "Times New Roman", serif;
    --cch-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--cch-ink);
    background: var(--cch-paper);
    font-family: var(--cch-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body *,
body *::before,
body *::after {
    box-sizing: border-box;
}

body a {
    color: inherit;
}

body img {
    max-width: 100%;
}

.cch-shell {
    width: min(100% - 40px, 1220px);
    margin-inline: auto;
}

.cch-shell-narrow {
    width: min(100% - 40px, 790px);
    margin-inline: auto;
}

.cch-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.cch-kicker,
.cch-card-meta {
    display: block;
    color: var(--cch-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.cch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--cch-red);
    color: #fff;
    background: var(--cch-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cch-button:hover,
.cch-button:focus-visible {
    color: #fff;
    background: var(--cch-red-dark);
    border-color: var(--cch-red-dark);
    transform: translateY(-1px);
}

.cch-button-light {
    border-color: rgba(255,255,255,.65);
    background: transparent;
}

.cch-text-link {
    display: inline-block;
    color: var(--cch-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.cch-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
}

.cch-section-heading h2 {
    flex: 0 0 auto;
    margin: 0;
    color: var(--cch-navy);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.cch-section-heading > span {
    width: 100%;
    height: 1px;
    background: var(--cch-line);
}

.cch-section-heading > a,
.cch-section-heading > small {
    flex: 0 0 auto;
    color: var(--cch-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

/* Header */
.cch-site-header {
    position: relative;
    z-index: 100;
    color: #fff;
    background: var(--cch-navy);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.cch-site-header-inner {
    width: min(100% - 40px, 1320px);
    min-height: 68px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cch-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    line-height: 1;
    text-decoration: none;
}

.cch-brand-mark {
    display: grid;
    width: 38px;
    height: 30px;
    place-items: center;
    color: #fff;
}

.cch-brand-mark svg {
    width: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cch-brand-text {
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cch-brand-text small {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: .23em;
    opacity: .72;
}

.cch-main-nav {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.8vw, 29px);
}

.cch-main-nav a {
    position: relative;
    padding: 25px 0;
    color: rgba(255,255,255,.9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.cch-main-nav a:not(.cch-nav-search)::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cch-red);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.cch-main-nav a:hover::after,
.cch-main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.cch-nav-search svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.cch-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    background: transparent;
}

.cch-menu-toggle > span:not(.cch-sr-only) {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
}

/* Homepage */
.cch-home {
    overflow: hidden;
    background: var(--cch-paper);
}

.cch-home-hero {
    position: relative;
    min-height: 550px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 40%, rgba(177,128,65,.3), transparent 30%),
        linear-gradient(115deg, #071421 0%, #11293a 56%, #253740 100%);
    isolation: isolate;
}

.cch-home-hero.has-image {
    background-image:
        linear-gradient(90deg, rgba(5,15,24,.93) 0%, rgba(5,15,24,.76) 42%, rgba(5,15,24,.13) 75%, rgba(5,15,24,.24) 100%),
        var(--cch-hero-image);
    background-position: center;
    background-size: cover;
}

.cch-home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.22));
}

.cch-home-hero-inner {
    min-height: 550px;
    padding: 66px 0 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cch-home-hero-copy {
    width: min(610px, 100%);
    padding: 32px 34px 34px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(4,16,25,.28);
    backdrop-filter: blur(2px);
}

.cch-home-hero .cch-kicker {
    color: #e1c490;
}

.cch-home-hero h1 {
    max-width: 590px;
    margin: 12px 0 16px;
    color: #fff;
    font-family: var(--cch-serif);
    font-size: clamp(43px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.cch-home-hero-copy > p {
    max-width: 500px;
    margin: 0 0 26px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.cch-hero-search,
.cch-listing-search {
    display: flex;
    width: min(510px, 100%);
}

.cch-hero-search input,
.cch-listing-search input {
    min-width: 0;
    min-height: 48px;
    flex: 1;
    padding: 0 16px;
    border: 0;
    border-radius: 0;
    color: var(--cch-ink);
    background: #fff;
    font: inherit;
    font-size: 13px;
}

.cch-hero-search button,
.cch-listing-search button {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: var(--cch-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.cch-hero-feature {
    align-self: flex-end;
    max-width: 260px;
    padding: 18px 20px;
    color: #fff;
    background: rgba(7,21,32,.86);
    text-decoration: none;
    box-shadow: var(--cch-shadow);
}

.cch-hero-feature span,
.cch-hero-feature small {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cch-hero-feature strong {
    display: block;
    margin: 6px 0 8px;
    font-family: var(--cch-serif);
    font-size: 21px;
    line-height: 1.1;
}

.cch-discovery-bar {
    position: relative;
    z-index: 5;
    display: grid;
    min-height: 116px;
    margin-top: -58px;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    background: var(--cch-navy);
    box-shadow: var(--cch-shadow);
}

.cch-discovery-bar > a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.16);
    transition: background .2s ease;
}

.cch-discovery-bar > a:last-child {
    border-right: 0;
}

.cch-discovery-bar > a:hover {
    background: var(--cch-navy-2);
}

.cch-feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    font-size: 20px;
}

.cch-discovery-bar strong,
.cch-discovery-bar small {
    display: block;
}

.cch-discovery-bar strong {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cch-discovery-bar small {
    color: rgba(255,255,255,.66);
    font-size: 10px;
    line-height: 1.35;
}

.cch-home-section {
    padding-top: 58px;
}

.cch-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.cch-category-card {
    position: relative;
    min-height: 218px;
    overflow: hidden;
    color: #fff;
    background: var(--cch-navy-2);
    text-decoration: none;
}

.cch-category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 38%, rgba(4,14,22,.88));
}

.cch-category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .45s ease;
}

.cch-category-card:hover img {
    transform: scale(1.045);
}

.cch-category-card span {
    position: absolute;
    right: 12px;
    bottom: 14px;
    left: 12px;
    z-index: 2;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .03em;
    text-align: center;
    text-transform: uppercase;
}

.cch-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cch-car-card-grid.has-one {
    grid-template-columns: minmax(260px, .8fr) minmax(300px, 1.6fr);
}

.cch-content-card {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--cch-line);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cch-content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(12,29,43,.1);
}

.cch-card-image {
    display: block;
    height: 210px;
    overflow: hidden;
    background: var(--cch-navy-2);
}

.cch-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.cch-content-card:hover .cch-card-image img {
    transform: scale(1.035);
}

.cch-card-body {
    padding: 17px 18px 20px;
}

.cch-card-body h2,
.cch-card-body h3 {
    margin: 7px 0 8px;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: 20px;
    line-height: 1.14;
}

.cch-card-body h2 a,
.cch-card-body h3 a {
    text-decoration: none;
}

.cch-card-body p {
    margin: 0 0 16px;
    color: var(--cch-muted);
    font-size: 12px;
    line-height: 1.6;
}

.cch-next-profile-card {
    min-height: 100%;
    padding: clamp(30px, 5vw, 64px);
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(183,140,75,.3), transparent 25%),
        linear-gradient(135deg, var(--cch-navy), var(--cch-navy-2));
}

.cch-next-profile-card > span {
    color: #e3c68e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cch-next-profile-card h3 {
    max-width: 600px;
    margin: 12px 0;
    color: #fff;
    font-family: var(--cch-serif);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.02;
}

.cch-next-profile-card p {
    max-width: 650px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.cch-database-banner {
    margin-top: 58px;
    padding: 34px 38px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6,22,34,.97), rgba(8,27,40,.91)),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.025) 12px 13px);
    box-shadow: var(--cch-shadow);
}

.cch-database-copy {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.cch-database-copy .cch-kicker {
    color: #e2c38c;
}

.cch-database-copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--cch-serif);
    font-size: 24px;
    font-weight: 600;
}

.cch-database-stats {
    display: grid;
    margin: 30px 0;
    grid-template-columns: repeat(5, 1fr);
}

.cch-database-stats div {
    padding: 0 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
}

.cch-database-stats div:first-child {
    padding-left: 0;
}

.cch-database-stats div:last-child {
    border-right: 0;
}

.cch-database-stats strong,
.cch-database-stats span {
    display: block;
}

.cch-database-stats strong {
    color: #fff;
    font-family: var(--cch-serif);
    font-size: 25px;
}

.cch-database-stats span {
    margin-top: 3px;
    color: rgba(255,255,255,.63);
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cch-editorial-empty {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cch-line);
    border: 1px solid var(--cch-line);
}

.cch-editorial-empty > div {
    min-height: 185px;
    padding: 28px;
    background: #fff;
}

.cch-editorial-empty span,
.cch-editorial-empty strong {
    display: block;
}

.cch-editorial-empty span {
    margin-bottom: 14px;
    color: var(--cch-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cch-editorial-empty strong {
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: 22px;
    line-height: 1.25;
}

.cch-editorial-empty > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 13px 20px;
    color: var(--cch-muted);
    background: var(--cch-paper-2);
    font-size: 11px;
    text-align: center;
}

.cch-makes-section {
    padding-bottom: 58px;
}

.cch-make-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    border: 0;
    background: transparent;
    gap: 12px;
}

.cch-make-grid a {
    min-height: 128px;
    padding: 17px 10px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--cch-navy);
    background: #fff; border: 1px solid var(--cch-line);
    text-align: center;
    text-decoration: none;
}

.cch-make-grid strong {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    place-items: center;
    border: 1px solid var(--cch-line);
    border-radius: 50%;
    font-family: var(--cch-serif);
    font-size: 22px;
}

.cch-make-grid span {
    font-size: 11px;
    font-weight: 800;
}

.cch-make-grid small {
    color: var(--cch-muted);
    font-size: 9px;
}

/* Newsletter and footer */
.cch-newsletter {
    padding: 27px 0;
    color: #fff;
    background: var(--cch-navy-2);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.cch-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cch-newsletter h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cch-newsletter p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 11px;
}

.cch-newsletter-form {
    display: flex;
    width: min(530px, 50%);
}

.cch-newsletter-form input,
.cch-newsletter-form button {
    min-height: 44px;
    border: 0;
    border-radius: 0;
    font: inherit;
}

.cch-newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 0 15px;
    background: rgba(255,255,255,.9);
    font-size: 11px;
}

.cch-newsletter-form button {
    padding: 0 22px;
    color: #fff;
    background: var(--cch-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cch-site-footer {
    padding: 47px 0 22px;
    color: rgba(255,255,255,.67);
    background: var(--cch-navy);
}

.cch-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.cch-footer-about p {
    max-width: 300px;
    margin: 18px 0 0;
    font-size: 11px;
    line-height: 1.7;
}

.cch-footer-grid h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cch-footer-grid > div:not(.cch-footer-about) a {
    display: block;
    margin: 8px 0;
    color: rgba(255,255,255,.7);
    font-size: 10px;
    text-decoration: none;
}

.cch-footer-grid a:hover {
    color: #fff;
}

.cch-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 19px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 9px;
}

/* Vehicle page */
.cch-car-page,
.cch-listing-page,
.cch-article-page,
.cch-standard-page {
    background: var(--cch-paper);
}

.cch-car-wrap {
    padding-top: 25px;
    padding-bottom: 70px;
}

.cch-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--cch-muted);
    font-size: 10px;
}

.cch-breadcrumbs a {
    text-decoration: none;
}

.cch-breadcrumbs a:hover {
    color: var(--cch-red);
}

.cch-car-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 20px;
}

.cch-car-title {
    margin: 0;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: clamp(42px, 5.4vw, 70px);
    line-height: .98;
    letter-spacing: -.04em;
}

.cch-car-subtitle {
    margin: 9px 0 0;
    color: var(--cch-muted);
    font-family: var(--cch-serif);
    font-size: 18px;
}

.cch-car-actions {
    display: flex;
    gap: 10px;
}

.cch-car-actions button {
    min-width: 88px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #c9c7c0;
    color: var(--cch-navy);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.cch-car-actions button.is-saved {
    color: var(--cch-red);
    border-color: var(--cch-red);
}

.cch-car-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: clamp(18px, 3vw, 38px);
    overflow-x: auto;
    margin: 0 0 28px;
    border-bottom: 1px solid var(--cch-line);
    background: rgba(245,242,235,.96);
    scrollbar-width: none;
}

.admin-bar .cch-car-tabs {
    top: 32px;
}

.cch-car-tabs::-webkit-scrollbar {
    display: none;
}

.cch-car-tabs a {
    flex: 0 0 auto;
    padding: 15px 0 12px;
    color: var(--cch-ink);
    border-bottom: 2px solid transparent;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.cch-car-tabs a:first-child,
.cch-car-tabs a:hover {
    color: var(--cch-red);
    border-bottom-color: var(--cch-red);
}

.cch-profile-gallery-main {
    position: relative;
    height: clamp(390px, 54vw, 650px);
    overflow: hidden;
    background: var(--cch-navy);
}

.cch-profile-gallery-main > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cch-profile-gallery-main > p {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 55px 24px 18px;
    color: rgba(255,255,255,.82);
    background: linear-gradient(transparent, rgba(4,15,24,.75));
    font-size: 11px;
}

.cch-gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(6,22,34,.87);
    font-size: 27px;
    cursor: pointer;
    transform: translateY(-50%);
}

.cch-gallery-prev { left: 16px; }
.cch-gallery-next { right: 16px; }

.cch-gallery-count {
    position: absolute;
    z-index: 4;
    right: 16px;
    bottom: 14px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(6,22,34,.86);
    font-size: 10px;
}

.cch-profile-gallery-main > p:not(:empty) + .cch-gallery-count,
.cch-profile-gallery-main > p:not(:empty) ~ .cch-gallery-count {
    bottom: 46px;
}

.cch-profile-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 9px 0 0;
}

.cch-profile-thumbnails button {
    position: relative;
    height: 95px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    background: var(--cch-navy-2);
    cursor: pointer;
}

.cch-profile-thumbnails button.is-active {
    border-color: var(--cch-red);
}

.cch-profile-thumbnails img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cch-profile-thumbnails button > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(5,18,28,.78);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.cch-car-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(285px, .72fr);
    gap: 48px;
}

.cch-overview-grid {
    align-items: start;
    padding-top: 38px;
}

.cch-car-section {
    scroll-margin-top: 75px;
    margin-top: 46px;
}

.cch-overview-grid .cch-car-section {
    margin-top: 0;
}

.cch-car-section > h2,
.cch-buyers-panel h2,
.cch-values-heading h2 {
    margin: 0 0 15px;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: 27px;
    line-height: 1.1;
}

.cch-car-content,
.cch-prose-panel,
.cch-article-body {
    color: #35404a;
    font-family: var(--cch-serif);
    font-size: 16px;
    line-height: 1.75;
}

.cch-car-content > :first-child,
.cch-prose-panel > :first-child,
.cch-article-body > :first-child {
    margin-top: 0;
}

.cch-car-content h2,
.cch-car-content h3,
.cch-prose-panel h3,
.cch-article-body h2,
.cch-article-body h3 {
    margin-top: 1.65em;
    color: var(--cch-navy);
    font-family: var(--cch-sans);
    line-height: 1.25;
}

.cch-quick-facts {
    padding: 22px 24px;
    border: 1px solid var(--cch-line);
    background: rgba(255,255,255,.54);
}

.cch-quick-facts h2 {
    margin: 0 0 10px;
    color: var(--cch-navy);
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cch-fact {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cch-line);
    font-size: 11px;
}

.cch-fact:last-child { border-bottom: 0; }
.cch-fact span { color: var(--cch-muted); }
.cch-fact strong { color: var(--cch-navy); font-weight: 700; }

.cch-timeline-section .cch-section-heading {
    margin-bottom: 30px;
}

.cch-timeline {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
}

.cch-timeline::before {
    position: absolute;
    top: 19px;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: #b9bbb7;
}

.cch-timeline li {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cch-timeline li > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0 auto 8px;
    place-items: center;
    border: 1px solid var(--cch-line);
    border-radius: 50%;
    color: var(--cch-muted);
    background: var(--cch-paper);
    font-size: 10px;
}

.cch-timeline li.is-current > span {
    color: #fff;
    background: var(--cch-red);
    border-color: var(--cch-red);
}

.cch-timeline strong,
.cch-timeline small {
    display: block;
}

.cch-timeline strong {
    color: var(--cch-navy);
    font-size: 12px;
}

.cch-timeline small {
    max-width: 110px;
    margin: 3px auto 0;
    color: var(--cch-muted);
    font-size: 9px;
    line-height: 1.35;
}

.cch-timeline li.is-current strong,
.cch-timeline li.is-current small {
    color: var(--cch-red);
}

.cch-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--cch-line);
    background: #fff;
}

.cch-data-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    font-size: 11px;
}

.cch-data-table th,
.cch-data-table td {
    padding: 12px 13px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid #ecebe6;
    border-bottom: 1px solid #e2e1dc;
}

.cch-data-table thead th {
    color: var(--cch-navy);
    background: #eeece6;
    font-size: 9px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.cch-data-table tbody th {
    color: var(--cch-navy);
}

.cch-data-table tbody tr:nth-child(even) {
    background: #faf9f6;
}

.cch-data-table tr:last-child > * { border-bottom: 0; }
.cch-data-table tr > *:last-child { border-right: 0; }

.cch-spec-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.cch-spec-card {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--cch-line);
    background: rgba(255,255,255,.56);
}

.cch-spec-card h3 {
    margin: 0 0 18px;
    color: var(--cch-navy);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cch-spec-card > strong {
    display: block;
    margin-top: 30px;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: 26px;
    line-height: 1.1;
}

.cch-spec-card > p {
    color: var(--cch-muted);
    font-size: 10px;
}

.cch-spec-card > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--cch-line);
    font-size: 10px;
}

.cch-spec-card > div span { color: var(--cch-muted); }
.cch-spec-card > div strong { color: var(--cch-navy); text-align: right; }

.cch-spec-card-colors { display: flex; flex-direction: column; }
.cch-spec-card > .cch-color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(102px, 1fr)); gap: 12px 10px; margin-top: 4px; padding: 0; border-bottom: 0; justify-content: normal; }
.cch-color-chip { display: flex; align-items: center; gap: 8px; }
.cch-color-swatch { display: inline-block; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--cch-line); flex-shrink: 0; }
.cch-color-chip > .cch-color-name { font-size: 10px; color: var(--cch-navy); line-height: 1.3; }
.cch-spec-card-colors > p { color: var(--cch-muted); font-size: 10px; margin-top: 6px; }

.cch-prose-panel {
    padding: 26px 28px;
    border: 1px solid var(--cch-line);
    background: rgba(255,255,255,.55);
}

.cch-buyers-panel {
    display: grid;
    grid-template-columns: 1.35fr .8fr;
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--cch-line);
    background: rgba(255,255,255,.55);
}

.cch-buyers-panel > img {
    width: 100%;
    min-height: 320px;
    height: 100%;
    object-fit: cover;
}

.cch-buyers-copy {
    min-width: 0;
}

.cch-buyers-copy .cch-car-content {
    max-height: 570px;
    overflow: hidden;
    position: relative;
    padding-right: 12px;
}

.cch-buyers-copy .cch-car-content::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 80px;
    content: "";
    background: linear-gradient(transparent, #f8f6f1);
    pointer-events: none;
}

.cch-values-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

.cch-values-heading h2 { margin: 3px 0 0; }

.cch-values-updated {
    padding: 6px 10px;
    border: 1px solid var(--cch-line);
    color: var(--cch-muted);
    background: rgba(255,255,255,.55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cch-values-summary {
    max-width: 850px;
    color: var(--cch-muted);
    font-family: var(--cch-serif);
    font-size: 16px;
}

.cch-values-disclaimer,
.cch-empty-note {
    margin-top: 19px;
    padding: 14px 17px;
    color: var(--cch-muted);
    background: var(--cch-paper-2);
    border-left: 3px solid var(--cch-red);
    font-size: 11px;
    line-height: 1.6;
}

.cch-values-table a { color: var(--cch-red); font-weight: 700; }

.cch-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cch-related-grid a {
    position: relative;
    height: 170px;
    overflow: hidden;
    color: #fff;
    background: var(--cch-navy);
    text-decoration: none;
}

.cch-related-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cch-related-grid span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 12px 10px;
    background: linear-gradient(transparent, rgba(4,14,22,.9));
    font-size: 11px;
    font-weight: 800;
}

.cch-car-hero-placeholder {
    min-height: 390px;
    display: grid;
    place-items: center;
    align-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--cch-navy), var(--cch-navy-2));
    text-align: center;
}

.cch-car-hero-placeholder strong,
.cch-car-hero-placeholder span { display: block; }
.cch-car-hero-placeholder strong { font-family: var(--cch-serif); font-size: 40px; }
.cch-car-hero-placeholder span { margin-top: 7px; color: rgba(255,255,255,.64); font-size: 11px; }

/* Listings and editorial pages */
.cch-listing-hero {
    padding: 66px 0 62px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(181,137,69,.24), transparent 23%),
        linear-gradient(120deg, var(--cch-navy), var(--cch-navy-2));
}

.cch-listing-hero .cch-kicker { color: #dfc08c; }

.cch-listing-hero h1 {
    margin: 10px 0 11px;
    color: #fff;
    font-family: var(--cch-serif);
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -.035em;
}

.cch-listing-hero div > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.cch-listing-search { margin-top: 25px; }

.cch-listing-content {
    min-height: 430px;
    padding-top: 46px;
    padding-bottom: 70px;
}

.cch-browse-strip {
    scroll-margin-top: 25px;
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 18px;
    margin: 0 0 16px;
    padding: 18px 20px;
    border: 1px solid var(--cch-line);
    background: rgba(255,255,255,.55);
}

.cch-browse-strip > strong {
    padding-top: 8px;
    color: var(--cch-navy);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cch-browse-strip > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.cch-browse-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    color: var(--cch-navy);
    background: #fff;
    border: 1px solid var(--cch-line);
    font-size: 10px;
    font-weight: 750;
    text-decoration: none;
}

.cch-browse-strip a:hover {
    color: #fff;
    border-color: var(--cch-red);
    background: var(--cch-red);
}

.cch-browse-strip small {
    color: var(--cch-muted);
    font-size: 8px;
}

.cch-browse-strip a:hover small { color: rgba(255,255,255,.7); }

.cch-browse-strip + .cch-section-heading {
    margin-top: 36px;
}

.cch-archive-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cch-archive-grid .cch-card-image { height: 245px; }

.cch-empty-state {
    padding: 70px 30px;
    border: 1px solid var(--cch-line);
    background: #fff;
    text-align: center;
}

.cch-empty-state h2 {
    margin: 0 0 8px;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: 32px;
}

.cch-empty-state p { color: var(--cch-muted); }

.cch-pagination {
    margin-top: 38px;
}

.cch-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.cch-pagination .page-numbers {
    min-width: 39px;
    min-height: 39px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    border: 1px solid var(--cch-line);
    background: #fff;
    font-size: 11px;
    text-decoration: none;
}

.cch-pagination .current {
    color: #fff;
    background: var(--cch-red);
    border-color: var(--cch-red);
}

.cch-article-header {
    padding-top: 60px;
    padding-bottom: 35px;
    text-align: center;
}

.cch-article-header .cch-breadcrumbs {
    justify-content: center;
}

.cch-article-header h1,
.cch-standard-page h1 {
    margin: 10px 0 14px;
    color: var(--cch-navy);
    font-family: var(--cch-serif);
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.cch-article-header > p {
    margin: 0 auto;
    color: var(--cch-muted);
    font-family: var(--cch-serif);
    font-size: 20px;
}

.cch-article-hero img {
    width: 100%;
    max-height: 660px;
    display: block;
    object-fit: cover;
}

.cch-article-body {
    padding-top: 42px;
    padding-bottom: 74px;
    font-size: 18px;
    line-height: 1.82;
}

.cch-article-body blockquote {
    margin: 2em 0;
    padding: 12px 0 12px 24px;
    color: var(--cch-navy);
    border-left: 3px solid var(--cch-red);
    font-size: 1.22em;
}

.cch-standard-page {
    min-height: 600px;
    padding: 65px 0;
}

/* Responsive */
@media (max-width: 1050px) {
    .cch-main-nav { gap: 14px; }
    .cch-main-nav a { font-size: 9px; }
    .cch-discovery-bar { grid-template-columns: repeat(2, 1fr); }
    .cch-discovery-bar > a:nth-child(2) { border-right: 0; }
    .cch-discovery-bar > a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
    .cch-category-grid { grid-template-columns: repeat(3, 1fr); }
    .cch-category-card:nth-child(n+4) { min-height: 190px; }
    .cch-card-grid { grid-template-columns: repeat(2, 1fr); }
    .cch-car-card-grid.has-one { grid-template-columns: minmax(260px, .8fr) minmax(300px, 1.2fr); }
    .cch-database-stats { grid-template-columns: repeat(3, 1fr); gap: 22px 0; }
    .cch-database-stats div:nth-child(3) { border-right: 0; }
    .cch-database-stats div:nth-child(4) { padding-left: 0; }
    .cch-make-grid { grid-template-columns: repeat(4, 1fr); }
    .cch-profile-thumbnails { grid-template-columns: repeat(5, 1fr); }
    .cch-profile-thumbnails button { height: 82px; }
}

@media (max-width: 880px) {
    .cch-menu-toggle { display: block; }
    .cch-main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 10px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cch-navy);
        box-shadow: 0 20px 35px rgba(0,0,0,.25);
    }
    .cch-site-header.is-menu-open .cch-main-nav { display: flex; }
    .cch-main-nav a { padding: 12px 0; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .cch-main-nav a::after { display: none; }
    .cch-home-hero-inner { align-items: flex-start; flex-direction: column; }
    .cch-hero-feature { align-self: flex-start; }
    .cch-car-header { align-items: flex-start; }
    .cch-car-grid { grid-template-columns: 1fr; gap: 25px; }
    .cch-quick-facts { order: -1; }
    .cch-buyers-panel { grid-template-columns: 1fr; }
    .cch-buyers-panel > img { min-height: 280px; max-height: 430px; }
    .cch-footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 25px; }
    .cch-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .cch-shell,
    .cch-shell-narrow,
    .cch-site-header-inner { width: min(100% - 28px, 1220px); }
    .cch-home-hero,
    .cch-home-hero-inner { min-height: 590px; }
    .cch-home-hero-inner { padding-top: 40px; }
    .cch-home-hero-copy { padding: 25px 20px; }
    .cch-home-hero h1 { font-size: 41px; }
    .cch-hero-search,
    .cch-listing-search { display: block; }
    .cch-hero-search input,
    .cch-hero-search button,
    .cch-listing-search input,
    .cch-listing-search button { width: 100%; }
    .cch-discovery-bar { width: min(100% - 28px, 1220px); grid-template-columns: 1fr; margin-top: -52px; }
    .cch-discovery-bar > a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .cch-discovery-bar > a:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.16); }
    .cch-category-grid { grid-template-columns: repeat(2, 1fr); }
    .cch-category-card { min-height: 185px; }
    .cch-category-card:last-child { grid-column: 1 / -1; }
    .cch-card-grid,
    .cch-car-card-grid.has-one,
    .cch-archive-grid { grid-template-columns: 1fr; }
    .cch-card-image,
    .cch-archive-grid .cch-card-image { height: 245px; }
    .cch-database-banner { padding: 28px 22px; }
    .cch-database-copy { display: block; }
    .cch-database-copy h2 { margin-top: 6px; }
    .cch-database-stats { grid-template-columns: repeat(2, 1fr); }
    .cch-database-stats div:nth-child(2n) { border-right: 0; }
    .cch-database-stats div:nth-child(odd) { padding-left: 0; }
    .cch-database-stats div:nth-child(3) { border-right: 1px solid rgba(255,255,255,.15); }
    .cch-editorial-empty { grid-template-columns: 1fr; }
    .cch-editorial-empty > p { grid-column: 1; }
    .cch-make-grid { grid-template-columns: repeat(2, 1fr); }
    .cch-newsletter-inner,
    .cch-footer-bottom { display: block; }
    .cch-newsletter-form { width: 100%; margin-top: 17px; }
    .cch-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cch-footer-about { grid-column: 1 / -1; }
    .cch-footer-bottom span { display: block; margin: 5px 0; }
    .cch-car-header { display: block; }
    .cch-car-title { font-size: 43px; }
    .cch-car-actions { margin-top: 18px; }
    .cch-profile-gallery-main { height: 330px; }
    .cch-profile-thumbnails { grid-template-columns: repeat(3, 1fr); }
    .cch-profile-thumbnails button { height: 74px; }
    .cch-gallery-arrow { width: 37px; height: 37px; }
    .cch-timeline { display: flex; overflow-x: auto; padding-bottom: 12px; }
    .cch-timeline::before { right: auto; left: 50px; width: 480px; }
    .cch-timeline li { min-width: 130px; }
    .cch-spec-card-grid { grid-template-columns: 1fr; }
    .cch-buyers-panel { padding: 22px; }
    .cch-values-heading { display: block; }
    .cch-values-updated { display: inline-block; margin-top: 8px; }
    .cch-related-grid { grid-template-columns: repeat(2, 1fr); }
    .cch-related-grid a { height: 145px; }
    .cch-listing-hero { padding: 45px 0; }
    .cch-browse-strip { grid-template-columns: 1fr; gap: 8px; }
    .cch-article-header { padding-top: 43px; }
    .cch-article-body { font-size: 17px; }
}

@media (max-width: 380px) {
    .cch-brand-text { font-size: 11px; }
    .cch-profile-thumbnails { grid-template-columns: repeat(2, 1fr); }
    .cch-footer-grid { grid-template-columns: 1fr; }
    .cch-footer-about { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Production donut chart */
.cch-spec-card > .cch-donut-block { display: block; padding: 0; border-bottom: 0; margin-top: 6px; }
.cch-donut-wrap { position: relative; width: 148px; margin: 2px auto 16px; }
.cch-donut { display: block; width: 148px; height: 148px; transform: rotate(-90deg); }
.cch-donut-seg { fill: none; stroke-width: 12; }
.cch-donut-center { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.cch-donut-center strong { font-family: var(--cch-serif); font-size: 21px; line-height: 1.05; color: var(--cch-navy); }
.cch-donut-center span { margin-top: 2px; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: var(--cch-muted); }
.cch-donut-legend { list-style: none; margin: 0; padding: 0; }
.cch-donut-legend li { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--cch-line); font-size: 10px; }
.cch-donut-legend li:last-child { border-bottom: 0; }
.cch-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cch-legend-label { color: var(--cch-navy); font-weight: 700; }
.cch-legend-val { margin-left: auto; text-align: right; color: var(--cch-navy); font-weight: 700; }
.cch-legend-val em { font-style: normal; font-weight: 400; color: var(--cch-muted); }

/* Tables pasted into any editor-driven prose area (overview, production, buyer's guide, values commentary).
   Generic on purpose so every future car profile is styled automatically. */
.cch-car-content table,
.cch-prose-panel table {
width: 100%;
border-collapse: collapse;
margin: 18px 0;
font-family: var(--cch-sans);
font-size: 11px;
background: #fff;
border: 1px solid var(--cch-line);
}
.cch-car-content table th,
.cch-car-content table td,
.cch-prose-panel table th,
.cch-prose-panel table td {
padding: 11px 13px;
text-align: left;
vertical-align: top;
border-right: 1px solid #ecebe6;
border-bottom: 1px solid #e2e1dc;
}
.cch-car-content table th,
.cch-prose-panel table th {
background: #eeece6;
color: var(--cch-navy);
font-size: 9px;
font-weight: 800;
letter-spacing: .03em;
text-transform: uppercase;
}
.cch-car-content table tbody tr:nth-child(even),
.cch-prose-panel table tbody tr:nth-child(even) { background: #faf9f6; }
.cch-car-content table tr:last-child > *,
.cch-prose-panel table tr:last-child > * { border-bottom: 0; }
.cch-car-content table tr > *:last-child,
.cch-prose-panel table tr > *:last-child { border-right: 0; }
.cch-car-content table caption,
.cch-prose-panel table caption { caption-side: bottom; padding-top: 8px; color: var(--cch-muted); font-size: 10px; text-align: left; }

@media (max-width: 700px) {
.cch-car-content table, .cch-prose-panel table { font-size: 10px; }
.cch-car-content table th, .cch-car-content table td,
.cch-prose-panel table th, .cch-prose-panel table td { padding: 8px 9px; }
}

/* Buyer's guide panel: show the full text. It was clamped to 570px with a fade-out,
   which silently cut sentences off mid-word with no way to read the rest. */
.cch-buyers-copy .cch-car-content { max-height: none; overflow: visible; }
.cch-buyers-copy .cch-car-content::after { content: none; }
.cch-buyers-panel > img { align-self: start; }
.cch-buyers-panel > img { position: sticky; top: 24px; height: auto; max-height: 620px; object-fit: cover; }

/* Progressive disclosure toggles (Overview "Read more", Buyer's guide "View full guide") */
.cch-collapsible.is-collapsed .cch-more-part { display: none; }

.cch-toggle-more {
display: inline-flex;
align-items: center;
gap: 7px;
margin-top: 16px;
cursor: pointer;
font-family: inherit;
}
button.cch-text-link.cch-toggle-more { background: none; border: 0; padding: 0; }

.cch-toggle-chevron {
display: inline-block;
width: 6px;
height: 6px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: rotate(-45deg);
transition: transform .2s ease;
margin-left: 1px;
}
.cch-toggle-more.is-open .cch-toggle-chevron { transform: rotate(-135deg); }
.cch-button .cch-toggle-chevron { display: none; }

.cch-button-outline {
background: transparent;
border-color: var(--cch-line);
color: var(--cch-navy);
}
.cch-button-outline:hover,
.cch-button-outline:focus-visible {
background: var(--cch-navy);
border-color: var(--cch-navy);
color: #fff;
}

/* Buyer's guide highlights - tick list summary shown before the full guide */
.cch-buyers-highlights { list-style: none; margin: 20px 0 0; padding: 0; }
.cch-buyers-highlights li {
position: relative;
padding-left: 30px;
margin-bottom: 14px;
font-family: var(--cch-sans);
font-size: 12px;
line-height: 1.6;
color: var(--cch-ink);
}
.cch-buyers-highlights li:last-child { margin-bottom: 0; }
.cch-buyers-highlights li::before {
content: "";
position: absolute;
left: 3px;
top: 4px;
width: 12px;
height: 6px;
border-left: 2px solid var(--cch-navy);
border-bottom: 2px solid var(--cch-navy);
transform: rotate(-45deg);
}

/* Stronger, darker Read more / Show less control */
button.cch-text-link.cch-toggle-more {
color: var(--cch-navy);
border-bottom: 2px solid var(--cch-navy);
padding-bottom: 3px;
transition: color .2s ease, border-color .2s ease;
}
button.cch-text-link.cch-toggle-more:hover,
button.cch-text-link.cch-toggle-more:focus-visible {
color: var(--cch-red-dark);
border-bottom-color: var(--cch-red-dark);
}
