.cfmoto-model-page {
    --cfmoto-turquoise: #00a9b7;
    --cfmoto-turquoise-dark: #007f8b;
    --cfmoto-ink: #111827;
    --cfmoto-muted: #5b6777;
    --cfmoto-border: #dbe7ea;
    --cfmoto-soft: #f3fbfc;
    --cfmoto-soft-strong: #e3f6f8;
    --cfmoto-white: #ffffff;
    color: var(--cfmoto-ink);
    background: var(--cfmoto-white);
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px 56px;
    overflow-x: hidden;
    overflow-x: clip;
}

.cfmoto-model-page *,
.cfmoto-model-page *::before,
.cfmoto-model-page *::after {
    box-sizing: border-box;
}

.cfmoto-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--cfmoto-muted);
}

.cfmoto-breadcrumb a {
    color: var(--cfmoto-turquoise-dark);
    text-decoration: none;
}

.cfmoto-breadcrumb a:hover {
    text-decoration: underline;
}

.cfmoto-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 38px;
    align-items: center;
    padding: 14px 0 42px;
}

.cfmoto-eyebrow,
.cfmoto-section-heading span,
.cfmoto-final-cta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 4px;
    color: var(--cfmoto-turquoise-dark);
    background: var(--cfmoto-soft);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.cfmoto-hero h1 {
    margin: 14px 0 10px;
    color: var(--cfmoto-ink);
    font-size: 46px;
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 800;
}

.cfmoto-subtitle {
    margin: 0 0 26px;
    max-width: 640px;
    color: var(--cfmoto-muted);
    font-size: 19px;
    line-height: 1.55;
}

.cfmoto-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 26px;
}

.cfmoto-highlight {
    min-height: 88px;
    padding: 14px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    background: var(--cfmoto-white);
}

.cfmoto-highlight span {
    display: block;
    margin: 0 0 6px;
    color: var(--cfmoto-muted);
    font-size: 13px;
    line-height: 1.35;
}

.cfmoto-highlight strong {
    display: block;
    color: var(--cfmoto-ink);
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.cfmoto-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cfmoto-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 132px;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cfmoto-button--primary {
    border: 1px solid var(--cfmoto-turquoise);
    background: var(--cfmoto-turquoise);
    color: var(--cfmoto-white);
}

.cfmoto-button--primary:hover {
    border-color: var(--cfmoto-turquoise-dark);
    background: var(--cfmoto-turquoise-dark);
    color: var(--cfmoto-white);
}

.cfmoto-button--outline {
    border: 1px solid var(--cfmoto-turquoise);
    background: var(--cfmoto-white);
    color: var(--cfmoto-turquoise-dark);
}

.cfmoto-button--outline:hover {
    background: var(--cfmoto-soft);
    color: var(--cfmoto-turquoise-dark);
}

.cfmoto-gallery {
    display: grid;
    gap: 12px;
}

.cfmoto-gallery__main {
    aspect-ratio: 4 / 3;
    margin: 0;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cfmoto-soft);
}

.cfmoto-gallery__trigger {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.cfmoto-gallery__trigger:focus-visible {
    outline: 3px solid var(--cfmoto-turquoise);
    outline-offset: -3px;
}

.cfmoto-gallery__main img,
.cfmoto-gallery__thumbs img,
.cfmoto-model-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cfmoto-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.cfmoto-gallery__thumbs figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    border: 1px solid var(--cfmoto-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--cfmoto-soft);
}

.cfmoto-gallery__data {
    display: none !important;
}

.cfmoto-lightbox-open {
    overflow: hidden;
}

.cfmoto-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(3, 10, 18, 0.92);
}

.cfmoto-lightbox.is-open {
    display: flex;
}

.cfmoto-lightbox__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1180px, 100%);
    height: min(82vh, 820px);
}

.cfmoto-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    object-fit: contain;
    background: #ffffff;
}

.cfmoto-lightbox__button {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}

.cfmoto-lightbox__button:hover,
.cfmoto-lightbox__button:focus-visible {
    border-color: var(--cfmoto-turquoise);
    background: var(--cfmoto-turquoise-dark);
    outline: 0;
}

.cfmoto-lightbox__close {
    top: 18px;
    right: 18px;
}

.cfmoto-lightbox__prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.cfmoto-lightbox__next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.cfmoto-lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    min-width: 74px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

.cfmoto-gallery--empty {
    min-height: 360px;
    place-items: center;
    border: 1px dashed var(--cfmoto-border);
    border-radius: 8px;
    background: var(--cfmoto-soft);
    color: var(--cfmoto-muted);
    font-weight: 700;
}

.cfmoto-section {
    padding: 38px 0;
    border-top: 1px solid var(--cfmoto-border);
}

.cfmoto-section-heading {
    margin: 0 0 20px;
}

.cfmoto-section-heading h2,
.cfmoto-copy h2,
.cfmoto-final-cta h2 {
    margin: 10px 0 0;
    color: var(--cfmoto-ink);
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0;
}

.cfmoto-copy {
    color: var(--cfmoto-muted);
    font-size: 17px;
    line-height: 1.75;
}

.cfmoto-copy > *:first-child {
    margin-top: 0;
}

.cfmoto-copy > *:last-child {
    margin-bottom: 0;
}

.cfmoto-copy h2,
.cfmoto-copy h3 {
    color: var(--cfmoto-ink);
    line-height: 1.25;
}

.cfmoto-copy h2 {
    margin: 32px 0 12px;
}

.cfmoto-copy h3 {
    margin: 24px 0 10px;
    font-size: 22px;
}

.cfmoto-copy p {
    margin: 0 0 16px;
}

.cfmoto-copy ul,
.cfmoto-copy ol {
    margin: 0 0 18px 20px;
    padding: 0;
}

.cfmoto-intro {
    padding-top: 30px;
}

.cfmoto-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
}

.cfmoto-spec-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: var(--cfmoto-white);
}

.cfmoto-model-page table.cfmoto-spec-table,
.cfmoto-model-page table.cfmoto-spec-table tbody,
.cfmoto-model-page table.cfmoto-spec-table tr,
.cfmoto-model-page table.cfmoto-spec-table th,
.cfmoto-model-page table.cfmoto-spec-table td {
    border-color: var(--cfmoto-border);
}

.cfmoto-model-page table.cfmoto-spec-table tr:nth-child(odd) td {
    background: var(--cfmoto-soft) !important;
    background-color: var(--cfmoto-soft) !important;
}

.cfmoto-model-page table.cfmoto-spec-table tr:nth-child(even) td {
    background: var(--cfmoto-white) !important;
    background-color: var(--cfmoto-white) !important;
}

.cfmoto-spec-table th,
.cfmoto-spec-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--cfmoto-border);
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.cfmoto-spec-table tr:last-child th,
.cfmoto-spec-table tr:last-child td {
    border-bottom: 0;
}

.cfmoto-spec-table th {
    width: 34%;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    color: var(--cfmoto-white) !important;
    background: var(--cfmoto-turquoise-dark) !important;
    background-color: var(--cfmoto-turquoise-dark) !important;
    font-weight: 800;
}

.post_content .cfmoto-model-page table.cfmoto-spec-table tbody th[scope="row"],
.cfmoto-model-page table.cfmoto-spec-table tbody th[scope="row"] {
    color: #ffffff !important;
    background: var(--cfmoto-turquoise-dark) !important;
    background-color: var(--cfmoto-turquoise-dark) !important;
}

.cfmoto-spec-table td {
    color: var(--cfmoto-ink) !important;
}

.cfmoto-embed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cfmoto-embed-card {
    min-height: 320px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cfmoto-soft);
}

.cfmoto-embed-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.cfmoto-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 24px;
    color: var(--cfmoto-turquoise-dark);
    font-weight: 800;
    text-decoration: none;
}

.cfmoto-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 30px;
    padding: 24px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    background: var(--cfmoto-soft);
}

.cfmoto-final-cta h2 {
    margin-top: 10px;
    font-size: 24px;
}

.cfmoto-archive-hero {
    padding: 14px 0 26px;
}

.cfmoto-archive-hero span {
    display: inline-flex;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 4px;
    color: var(--cfmoto-turquoise-dark);
    background: var(--cfmoto-soft);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
}

.cfmoto-archive-hero h1 {
    margin: 14px 0 0;
    color: var(--cfmoto-ink);
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 800;
}

.cfmoto-category-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 22px;
}

.cfmoto-category-nav a,
.cfmoto-section-heading--inline a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 6px;
    background: var(--cfmoto-white);
    color: var(--cfmoto-turquoise-dark);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
}

.cfmoto-category-nav a:hover,
.cfmoto-category-nav a.is-active,
.cfmoto-section-heading--inline a:hover {
    border-color: var(--cfmoto-turquoise);
    background: var(--cfmoto-turquoise);
    color: var(--cfmoto-white);
}

.cfmoto-section-heading--inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.cfmoto-archive-empty {
    margin: 0;
    color: var(--cfmoto-muted);
    font-size: 16px;
    line-height: 1.6;
}

.cfmoto-reviews {
    scroll-margin-top: 90px;
}

.cfmoto-review-notice {
    margin: 0 0 18px;
    padding: 13px 14px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.cfmoto-review-notice--success {
    border: 1px solid #b8e7ce;
    background: #effbf4;
    color: #146c43;
}

.cfmoto-review-notice--error {
    border: 1px solid #f1c8c8;
    background: #fff5f5;
    color: #9f1d1d;
}

.cfmoto-review-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 24px;
}

.cfmoto-review-summary,
.cfmoto-review-form-wrap,
.cfmoto-review {
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    background: var(--cfmoto-white);
}

.cfmoto-review-summary {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.cfmoto-review-summary strong {
    color: var(--cfmoto-ink);
    font-size: 34px;
    line-height: 1.1;
}

.cfmoto-review-summary span:last-child {
    color: var(--cfmoto-muted);
    font-size: 14px;
    line-height: 1.4;
}

.cfmoto-stars {
    display: inline-flex;
    gap: 3px;
    color: #b8c4ca;
    font-size: 18px;
    line-height: 1;
}

.cfmoto-stars .is-filled {
    color: var(--cfmoto-turquoise);
}

.cfmoto-review-form-wrap {
    padding: 20px;
}

.cfmoto-review-form {
    display: grid;
    gap: 18px;
    margin: 0;
}

.cfmoto-review-control,
.cfmoto-review-form .cfmoto-review-control {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.cfmoto-review-form .cfmoto-review-label {
    box-sizing: border-box;
    display: block !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--cfmoto-ink);
    background: transparent !important;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: none;
}

.cfmoto-review-form .cfmoto-review-label::before,
.cfmoto-review-form .cfmoto-review-label::after,
.cfmoto-review-form .cfmoto-rating-box::before,
.cfmoto-review-form .cfmoto-rating-box::after {
    display: none !important;
    content: none !important;
}

.cfmoto-review-form .cfmoto-review-label small {
    color: var(--cfmoto-muted);
    font-size: 12px;
    font-weight: 700;
}

.cfmoto-rating-options {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(5, minmax(44px, 1fr));
    gap: 10px;
}

.cfmoto-review-control.cfmoto-review-control--rating {
    padding-bottom: 100px !important;
}

.cfmoto-rating-choice {
    position: relative;
    display: block;
    min-width: 0;
    height: 48px;
    margin: 0 !important;
}

.cfmoto-rating-input {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100% !important;
    height: 48px !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0;
    cursor: pointer;
    appearance: none !important;
}

.cfmoto-rating-box,
.cfmoto-review-form .cfmoto-rating-box {
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    width: 100%;
    min-width: 0;
    height: 48px;
    margin: 0 !important;
    padding: 0 6px !important;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    color: var(--cfmoto-ink);
    background: var(--cfmoto-white);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.cfmoto-rating-input:checked + .cfmoto-rating-box,
.cfmoto-rating-choice:hover .cfmoto-rating-box {
    border-color: var(--cfmoto-turquoise);
    color: var(--cfmoto-white);
    background: var(--cfmoto-turquoise);
}

.cfmoto-rating-input:focus-visible + .cfmoto-rating-box {
    outline: 2px solid var(--cfmoto-turquoise);
    outline-offset: 2px;
}

.post_content .cfmoto-model-page .cfmoto-rating-choice {
    display: block !important;
    height: 48px !important;
    margin: 0 !important;
}

.post_content .cfmoto-model-page .cfmoto-review-form .cfmoto-rating-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 6px !important;
    line-height: 1 !important;
    text-align: center !important;
}

.cfmoto-review-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.cfmoto-review-input,
.cfmoto-review-textarea,
.cfmoto-review-form .cfmoto-review-input,
.cfmoto-review-form .cfmoto-review-textarea,
.cfmoto-model-page .cfmoto-review-form input[type="text"].cfmoto-review-input,
.cfmoto-model-page .cfmoto-review-form textarea.cfmoto-review-textarea {
    box-sizing: border-box !important;
    display: block !important;
    float: none !important;
    width: 100%;
    min-height: 46px;
    margin: 0 !important;
    padding: 12px 13px;
    border: 1px solid var(--cfmoto-border) !important;
    border-radius: 6px !important;
    color: var(--cfmoto-ink) !important;
    background: var(--cfmoto-white) !important;
    box-shadow: none !important;
    font: inherit !important;
    appearance: none !important;
    outline: 0;
}

.post_content .cfmoto-model-page .cfmoto-review-form .cfmoto-review-input,
.post_content .cfmoto-model-page .cfmoto-review-form .cfmoto-review-textarea,
.post_content .cfmoto-model-page .cfmoto-review-form input[type="text"].cfmoto-review-input,
.post_content .cfmoto-model-page .cfmoto-review-form textarea.cfmoto-review-textarea {
    box-sizing: border-box !important;
    display: block !important;
    min-height: 46px !important;
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid var(--cfmoto-border) !important;
    border-radius: 6px !important;
    color: var(--cfmoto-ink) !important;
    background: var(--cfmoto-white) !important;
    box-shadow: none !important;
}

.cfmoto-review-input:focus,
.cfmoto-review-textarea:focus {
    border-color: var(--cfmoto-turquoise) !important;
    box-shadow: 0 0 0 3px rgba(0, 191, 214, 0.14) !important;
}

.cfmoto-review-textarea {
    min-height: 128px;
    resize: vertical;
}

.cfmoto-review-extra {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cfmoto-review-list {
    display: grid;
    gap: 12px;
}

.cfmoto-review {
    padding: 16px;
}

.cfmoto-review header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.cfmoto-review header strong {
    display: block;
    color: var(--cfmoto-ink);
    font-size: 16px;
    line-height: 1.35;
}

.cfmoto-review time {
    display: block;
    color: var(--cfmoto-muted);
    font-size: 13px;
    line-height: 1.4;
}

.cfmoto-review p,
.cfmoto-review-empty {
    margin: 0;
    color: var(--cfmoto-muted);
    font-size: 15px;
    line-height: 1.6;
}

.cfmoto-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cfmoto-model-card {
    display: grid;
    gap: 8px;
    padding: 12px;
    min-height: 100%;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    background: var(--cfmoto-white);
    color: var(--cfmoto-ink);
    text-decoration: none;
}

.cfmoto-model-card img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: var(--cfmoto-soft);
}

.cfmoto-model-card span {
    color: var(--cfmoto-turquoise-dark);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
}

.cfmoto-model-card strong {
    color: var(--cfmoto-ink);
    font-size: 19px;
    line-height: 1.3;
}

.cfmoto-model-card em {
    color: var(--cfmoto-muted);
    font-size: 14px;
    line-height: 1.4;
    font-style: normal;
}

.cfmoto-elementor-widget {
    --cfmoto-turquoise: #00a9b7;
    --cfmoto-turquoise-dark: #007f8b;
    --cfmoto-ink: #111827;
    --cfmoto-muted: #5b6777;
    --cfmoto-border: #dbe7ea;
    --cfmoto-soft: #f3fbfc;
    --cfmoto-white: #ffffff;
    color: var(--cfmoto-ink);
}

.cfmoto-widget-heading {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
}

.cfmoto-widget-heading span {
    color: var(--cfmoto-turquoise-dark);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
}

.cfmoto-widget-heading h2 {
    margin: 0;
    color: var(--cfmoto-ink);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.cfmoto-series-grid {
    display: grid;
    grid-template-columns: repeat(var(--cfmoto-series-columns, 5), minmax(0, 1fr));
    gap: 18px;
}

.cfmoto-series-card {
    position: relative;
    display: flex;
    min-height: 270px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #111827;
    background-image: linear-gradient(135deg, #00a9b7 0%, #111827 100%);
    background-position: center;
    background-size: cover;
    text-decoration: none;
}

.cfmoto-series-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.05) 0%, rgba(17, 24, 39, 0.72) 100%);
    transition: background-color 160ms ease;
}

.cfmoto-series-card:hover::before {
    background-color: rgba(0, 169, 183, 0.16);
}

.cfmoto-series-card span,
.cfmoto-series-card em {
    position: relative;
    z-index: 1;
}

.cfmoto-series-card span {
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.cfmoto-series-card em {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.cfmoto-elementor-models .cfmoto-model-grid {
    grid-template-columns: repeat(var(--cfmoto-elementor-columns, 3), minmax(0, 1fr));
}

.cfmoto-widget-empty {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--cfmoto-border);
    border-radius: 8px;
    color: var(--cfmoto-muted);
    background: var(--cfmoto-soft);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .cfmoto-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cfmoto-hero h1 {
        font-size: 36px;
    }

    .cfmoto-embed-grid,
    .cfmoto-review-layout,
    .cfmoto-model-grid {
        grid-template-columns: 1fr;
    }

    .cfmoto-series-grid,
    .cfmoto-elementor-models .cfmoto-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cfmoto-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .cfmoto-section-heading--inline {
        align-items: flex-start;
        flex-direction: column;
    }

    .cfmoto-widget-heading h2 {
        font-size: 28px;
    }

    .cfmoto-series-card {
        min-height: 210px;
    }
}

@media (max-width: 560px) {
    body.cfmoto-model-page-context,
    body.cfmoto-model-page-context .page_wrap {
        overflow-x: hidden;
    }

    body.cfmoto-model-page-context .page_content_wrap .content_wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .post_content .cfmoto-model-page,
    .cfmoto-model-page {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 14px 6px 38px;
    }

    .cfmoto-hero {
        padding: 8px 0 30px;
    }

    .cfmoto-section {
        padding: 30px 0;
    }

    .cfmoto-hero h1 {
        font-size: 30px;
    }

    .cfmoto-subtitle {
        font-size: 16px;
    }

    .cfmoto-archive-hero h1 {
        font-size: 30px;
    }

    .cfmoto-highlights {
        grid-template-columns: 1fr;
    }

    .cfmoto-actions,
    .cfmoto-button {
        width: 100%;
    }

    .cfmoto-series-grid,
    .cfmoto-elementor-models .cfmoto-model-grid {
        grid-template-columns: 1fr;
    }

    .cfmoto-series-card {
        min-height: 190px;
    }

    .cfmoto-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cfmoto-lightbox {
        padding: 12px;
    }

    .cfmoto-lightbox__stage {
        height: 78vh;
    }

    .cfmoto-lightbox__button {
        width: 42px;
        height: 42px;
        font-size: 23px;
    }

    .cfmoto-lightbox__close {
        top: 12px;
        right: 12px;
    }

    .cfmoto-lightbox__prev {
        left: 12px;
    }

    .cfmoto-lightbox__next {
        right: 12px;
    }

    .cfmoto-section-heading h2,
    .cfmoto-copy h2 {
        font-size: 24px;
    }

    .cfmoto-spec-table {
        min-width: 520px;
    }

    .cfmoto-final-cta {
        padding: 14px;
    }

    .cfmoto-review-summary,
    .cfmoto-review-form-wrap,
    .cfmoto-review {
        padding: 14px;
    }

    .cfmoto-review-fields {
        grid-template-columns: 1fr;
    }

    .cfmoto-review header {
        flex-direction: column;
    }
}
