/* EKR Hyva migration baseline.
 * Intentionally plain CSS so the first child-theme boot does not depend on
 * the local Tailwind build. Move these rules into web/tailwind later.
 */

[x-cloak] {
    display: none !important;
}

:root {
    --ekr-red: #e1261c;
    --ekr-ink: #111827;
    --ekr-muted: #667085;
    --ekr-line: #e5e7eb;
    --ekr-soft: #f7f7f8;
    --ekr-radius: 14px;
}

.ekr-container {
    width: min(100% - 32px, 1440px);
    margin-inline: auto;
}

/* Homepage only: remove the Hyva page container around the custom homepage.
 * The hero can now span the full viewport while each inner .ekr-container
 * continues to align the content at the normal 1440px max width.
 */
body.ekr-hyva-home-page .page-main {
    width: 100%;
    max-width: none;
    margin-block: 0;
    padding-inline: 0;
}

body.ekr-hyva-home-page .columns {
    width: 100%;
    max-width: none !important;
    margin-inline: 0;
    padding-inline: 0 !important;
}

body.ekr-hyva-home-page .column.main {
    width: 100%;
    min-width: 0;
    padding-inline: 0;
}

/* Homepage */
.ekr-home {
    color: var(--ekr-ink);
    background: #fff;
}

.ekr-home__content {
    padding-bottom: 72px;
}

.ekr-hero {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: min(72vh, 780px);
}

.ekr-hero__media,
.ekr-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.ekr-hero__media {
    position: absolute;
    inset: 0;
}

.ekr-hero__media img {
    object-fit: cover;
}

.ekr-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.20) 48%, rgba(0,0,0,.04) 100%);
}

.ekr-hero__overlay {
    position: relative;
    z-index: 2;
    min-height: min(72vh, 780px);
    display: flex;
    align-items: center;
}

.ekr-hero__content {
    color: #fff;
}

.ekr-hero__kicker {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ekr-hero__title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(38px, 5.5vw, 78px);
    line-height: 1;
    letter-spacing: -.035em;
    font-weight: 850;
}

.ekr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ekr-button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.ekr-button--primary {
    background: var(--ekr-red);
    color: #fff;
}

.ekr-button--ghost {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.12);
    color: #fff;
    backdrop-filter: blur(8px);
}

.ekr-button--dark {
    background: var(--ekr-ink);
    color: #fff;
}

.ekr-section {
    padding-top: 82px;
}

.ekr-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 520px) auto;
    gap: 24px;
    align-items: end;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ekr-line);
}

.ekr-section-heading__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--ekr-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.ekr-section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: -.025em;
}

.ekr-section-heading p {
    margin: 0;
    color: var(--ekr-muted);
    line-height: 1.65;
}

.ekr-text-link {
    color: var(--ekr-ink);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.ekr-text-link:hover {
    color: var(--ekr-red);
}

.ekr-how__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    padding-top: 32px;
}

.ekr-step-list {
    border-top: 1px solid var(--ekr-line);
}

.ekr-step {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 20px 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--ekr-line);
}

.ekr-step__tag {
    color: var(--ekr-red);
    font-weight: 850;
    letter-spacing: .04em;
}

.ekr-step__body strong,
.ekr-step__body span {
    display: block;
}

.ekr-step__body strong {
    margin-bottom: 5px;
    font-size: 18px;
}

.ekr-step__body span {
    color: var(--ekr-muted);
    line-height: 1.5;
}

.ekr-step-list > .ekr-text-link {
    display: inline-block;
    margin-top: 22px;
}

.ekr-video {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--ekr-radius);
    background: #0b0b0b;
}

.ekr-video__poster {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #0b0b0b;
    position: relative;
}

.ekr-video__poster img,
.ekr-video__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.ekr-video__play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ekr-red);
    font-size: 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

.ekr-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 24px 0 14px;
    scrollbar-width: thin;
}

.ekr-tab {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--ekr-line);
    border-radius: 999px;
    background: #fff;
    color: #4b5563;
    font-weight: 700;
    cursor: pointer;
}

.ekr-tab.is-active {
    border-color: var(--ekr-ink);
    background: var(--ekr-ink);
    color: #fff;
}

.ekr-why-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--ekr-line);
    border-radius: var(--ekr-radius);
    background: #fff;
}

.ekr-why-card__media {
    min-height: 460px;
    background: var(--ekr-soft);
}

.ekr-why-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekr-why-card__copy {
    padding: clamp(28px, 5vw, 64px);
    align-self: center;
}

.ekr-why-card__copy h3 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
}

.ekr-why-card__copy p,
.ekr-why-card__copy li {
    color: var(--ekr-muted);
    line-height: 1.65;
}

.ekr-why-card__copy ul {
    padding-left: 20px;
}

/* Popular Vehicles - matches the previous one-row homepage presentation. */
.ekr-vehicles {
    padding-top: 48px;
}

.ekr-vehicles__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ekr-vehicles__divider-dots {
    display: inline-flex;
    gap: 5px;
    flex: 0 0 auto;
}

.ekr-vehicles__divider-dots i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #222;
}

.ekr-vehicles__divider-line {
    height: 1px;
    flex: 1 1 auto;
    background: #d9d9d9;
}

.ekr-vehicles__heading {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}

.ekr-vehicles__heading h2 {
    flex: 0 0 auto;
    margin: 0;
    color: #090909;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .01em;
}

.ekr-vehicles__heading p {
    margin: 0;
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.4;
}

.ekr-vehicles__layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 16px;
    padding-top: 0;
    align-items: stretch;
}

.ekr-vehicle-tool-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    color: #111;
    background: #fff;
}

.ekr-vehicle-tool-card__head {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 12px 14px;
    background: #0c0c0c;
    color: #fff;
}

.ekr-vehicle-tool-card__head h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 850;
}

.ekr-vehicle-tool-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 14px 16px;
}

.ekr-vehicle-tool-card__body p {
    margin: 0 0 18px;
    color: #222;
    font-size: 13px;
    line-height: 1.45;
}

.ekr-vehicle-tool-card__button {
    width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    border: 0;
    border-radius: 0;
    background: #d60000;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
    cursor: pointer;
}

.ekr-vehicle-tool-card__button:hover,
.ekr-vehicle-tool-card__button:focus-visible {
    background: #b90000;
}

.ekr-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.ekr-vehicle-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #090909;
    text-decoration: none;
}

.ekr-vehicle-card__media {
    display: block;
    position: relative;
    flex: 1 1 auto;
    min-height: 145px;
    overflow: hidden;
    border-radius: 0;
    background: #f7f7f7;
}

.ekr-vehicle-card img {
    width: 100%;
    height: 100%;
    padding: 10px 8px 8px;
    object-fit: contain;
    transition: transform .25s ease;
}

.ekr-vehicle-card:hover img {
    transform: scale(1.025);
}

.ekr-vehicle-card__cta {
    position: absolute;
    inset: auto 10px 10px;
    padding: 7px 8px;
    background: rgba(12,12,12,.9);
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease;
}

.ekr-vehicle-card:hover .ekr-vehicle-card__cta,
.ekr-vehicle-card:focus-visible .ekr-vehicle-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.ekr-vehicle-card strong {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    border-top: 1px solid #efefef;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
}

.ekr-builds__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 32%);
    gap: 18px;
    overflow-x: auto;
    padding: 28px 0 8px;
    scroll-snap-type: x mandatory;
}

.ekr-build-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: var(--ekr-radius);
    background: #111;
    color: #fff;
    text-decoration: none;
    scroll-snap-align: start;
}

.ekr-build-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: .88;
}

.ekr-build-card > span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(6px);
}

.ekr-build-card--cta > span strong {
    display: block;
    margin-bottom: 4px;
    font-size: 22px;
}

.ekr-reviews .trustpilot-widget {
    margin-top: 30px;
    min-height: 140px;
}

.ekr-stock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 30px;
}

.ekr-stock-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: var(--ekr-radius);
    background: #111;
    color: #fff;
    text-decoration: none;
}

.ekr-stock-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform .25s ease;
}

.ekr-stock-card:hover img {
    transform: scale(1.025);
}

.ekr-stock-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68) 100%);
}

.ekr-stock-card__overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
}

.ekr-stock-card__overlay strong,
.ekr-stock-card__overlay span {
    display: block;
}

.ekr-stock-card__overlay strong {
    font-size: 22px;
}

.ekr-stock-card__overlay span {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
}

.ekr-faq-list {
    padding-top: 28px;
}

.ekr-faq-list details {
    border-bottom: 1px solid var(--ekr-line);
}

.ekr-faq-list summary {
    position: relative;
    padding: 22px 46px 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 800;
}

.ekr-faq-list summary::-webkit-details-marker {
    display: none;
}

.ekr-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 18px;
    font-size: 26px;
    font-weight: 400;
}

.ekr-faq-list details[open] summary::after {
    content: "−";
}

.ekr-faq-list details > div {
    max-width: 960px;
    padding: 0 0 24px;
    color: var(--ekr-muted);
    line-height: 1.7;
}

.ekr-faq-list details > div ul {
    padding-left: 22px;
}

.ekr-faq-list a {
    color: var(--ekr-red);
    font-weight: 750;
}

@media (max-width: 1279px) and (min-width: 1024px) {
    .ekr-vehicles__layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 14px;
    }

    .ekr-vehicle-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        min-width: 0;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
    }

    .ekr-vehicle-card {
        flex: 0 0 166px;
        scroll-snap-align: start;
    }
}

@media (max-width: 1023px) {

    .ekr-section-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ekr-how__grid,
    .ekr-why-card,
    .ekr-vehicles__layout {
        grid-template-columns: 1fr;
    }

    .ekr-vehicles__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ekr-why-card__media {
        min-height: 340px;
    }

    .ekr-vehicle-grid,
    .ekr-stock-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ekr-builds__rail {
        grid-auto-columns: minmax(280px, 60%);
    }
}

@media (max-width: 767px) {
    .ekr-container {
        width: min(100% - 28px, 1440px);
    }

    .ekr-hero,
    .ekr-hero__overlay {
        min-height: 620px;
    }

    .ekr-hero::after {
        background: linear-gradient(180deg, rgba(0,0,0,.14) 20%, rgba(0,0,0,.72) 100%);
    }

    .ekr-hero__overlay {
        align-items: flex-end;
        padding-bottom: 48px;
    }

    .ekr-hero__title {
        font-size: clamp(36px, 12vw, 56px);
    }

    .ekr-section {
        padding-top: 58px;
    }

    .ekr-section-heading {
        padding-bottom: 18px;
    }

    .ekr-step {
        grid-template-columns: 72px 1fr;
        gap: 12px;
    }

    .ekr-video__play {
        width: 58px;
        height: 58px;
    }

    .ekr-why-card__media {
        min-height: 260px;
    }

    .ekr-why-card__copy {
        padding: 24px 20px;
    }

    .ekr-vehicle-grid,
    .ekr-stock-grid {
        grid-template-columns: 1fr;
    }

    .ekr-vehicle-card__media {
        min-height: 190px;
    }

    .ekr-builds__rail {
        grid-auto-columns: 86%;
    }

    .ekr-stock-card,
    .ekr-stock-card img {
        min-height: 280px;
    }
}

/* ========================================================================
 * Homepage screenshot alignment - 2026-09
 * Restores the compact Porto-era section proportions while keeping Hyva
 * (Alpine/native browser APIs, no RequireJS/jQuery/Owl dependency).
 * ======================================================================== */

.ekr-home {
    background: #f5f5f5;
}

.ekr-home__content {
    padding-bottom: 72px;
}

.ekr-section {
    padding-top: 48px;
}

/* Shared section header: three dots + fine rule + compact title/subtitle. */
.ekr-section-heading {
    position: relative;
    display: flex;
    grid-template-columns: none;
    align-items: baseline;
    gap: 16px;
    min-height: 54px;
    padding: 22px 0 12px;
    border-bottom: 0;
}

.ekr-section-heading::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #222;
    box-shadow: 9px 0 #222, 18px 0 #222;
}

.ekr-section-heading::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 32px;
    right: 0;
    height: 1px;
    background: #d7d7d7;
}

.ekr-section-heading > div {
    flex: 0 0 auto;
}

.ekr-section-heading__eyebrow {
    display: none;
}

.ekr-section-heading h2 {
    margin: 0;
    color: #090909;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .015em;
    white-space: nowrap;
}

.ekr-section-heading p {
    margin: 0;
    color: #696969;
    font-size: 14px;
    line-height: 1.4;
}

.ekr-section-heading > .ekr-text-link {
    margin-left: auto;
    color: #090909;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .02em;
}

/* HOW EKR CUSTOMIZE WORK */
.ekr-how__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
    padding-top: 0;
}

.ekr-how-left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    min-width: 0;
    min-height: 404px;
}

.ekr-step-list {
    border: 1px solid #dedede;
    border-right: 0;
    border-top: 1px solid #dedede;
    background: #fff;
}

.ekr-step {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 100px;
    padding: 16px;
    border-bottom: 1px solid #e4e4e4;
    color: #0c0c0c;
}

.ekr-step:last-child {
    border-bottom: 0;
}

.ekr-step__tag {
    color: #db1010;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0;
}

.ekr-step__body strong {
    margin-bottom: 4px;
    color: #050505;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 850;
}

.ekr-step__body span {
    color: #777;
    font-size: 13px;
    line-height: 1.35;
}

.ekr-how-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    background: #2b2b2b;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.ekr-how-explore strong {
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
}

.ekr-how-explore span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 21px;
    line-height: 24px;
    font-weight: 700;
}

.ekr-video {
    min-height: 404px;
    height: 404px;
    aspect-ratio: auto;
    border-radius: 0;
}

.ekr-video__play {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, .55);
    box-shadow: none;
}

/* WHY CHOOSE EKR CUSTOMIZE */
.ekr-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    padding: 0;
    border-bottom: 1px solid #d8d8d8;
}

.ekr-tab {
    min-width: 0;
    padding: 14px 2px 12px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #3e3e3e;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
}

.ekr-tab:nth-child(n+2):not(:last-child) {
    text-align: center;
}

.ekr-tab:last-child {
    text-align: right;
}

.ekr-tab.is-active {
    border-color: #e1261c;
    background: transparent;
    color: #090909;
}

.ekr-why-slides {
    width: 100%;
    overflow: hidden;
    padding-top: 14px;
    touch-action: pan-y;
}

.ekr-why-track {
    display: flex;
    width: 100%;
    align-items: stretch;
    transform: translate3d(0, 0, 0);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.ekr-why-card {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 56% 44%;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ekr-why-card__media {
    height: 385px;
    min-height: 385px;
    background: #e9e9e9;
}

.ekr-why-card__copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 40px;
}

.ekr-why-card__copy h3 {
    margin: 0 0 10px;
    color: #747474;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 850;
}

.ekr-why-card__copy p,
.ekr-why-card__copy li {
    color: #111;
    font-size: 14px;
    line-height: 1.55;
}

.ekr-why-card__copy p {
    margin: 0 0 12px;
}

.ekr-why-card__copy ul {
    margin: 0;
    padding-left: 22px;
}

/* CUSTOMER BUILDS: true 3-items-per-page carousel, not a free-scroll rail. */
.ekr-builds__carousel {
    padding-top: 8px;
}

.ekr-builds__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.ekr-builds__track {
    display: flex;
    width: 100%;
    align-items: stretch;
    transform: translate3d(0, 0, 0);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.ekr-builds__page {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ekr-build-card {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.ekr-build-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    opacity: .92;
}

.ekr-build-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.56));
    pointer-events: none;
}

.ekr-build-card > span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    padding: 0 18px;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: none;
    text-shadow: 0 1px 2px rgba(0,0,0,.7);
}

.ekr-build-card--cta > span strong {
    margin-bottom: 6px;
    font-size: 20px;
}

.ekr-builds__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
}

.ekr-builds__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d2d2d2;
    cursor: pointer;
    transition: width .18s ease, background .18s ease;
}

.ekr-builds__dots button.is-active {
    width: 18px;
    background: #90a59f;
}

@media (prefers-reduced-motion: reduce) {
    .ekr-why-track,
    .ekr-builds__track {
        transition: none;
    }
}

/* IN-STOCK & ACCESSORIES */
.ekr-stock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 6px;
}

.ekr-stock-card {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 272px;
    overflow: hidden;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    color: #090909;
    text-decoration: none;
}

.ekr-stock-card::after {
    display: none;
}

.ekr-stock-card img {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 26px 18px;
    object-fit: contain;
    transition: transform .25s ease;
}

.ekr-stock-card__overlay {
    position: static;
    z-index: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 22px;
    color: #090909;
    text-align: left;
}

.ekr-stock-card__overlay strong {
    display: block;
    width: 100%;
    color: #090909;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 850;
}

.ekr-stock-card__overlay > span {
    display: none;
}

/* FAQ */
.ekr-faq-list {
    margin-top: 6px;
    padding-top: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .10);
}

.ekr-faq-list details {
    border-bottom: 1px solid #e5e5e5;
}

.ekr-faq-list details:last-child {
    border-bottom: 0;
}

.ekr-faq-list summary {
    padding: 20px 52px 20px 18px;
    color: #090909;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
}

.ekr-faq-list summary::after {
    right: 18px;
    top: 15px;
    color: #707070;
    font-size: 24px;
}

.ekr-faq-list details > div {
    max-width: none;
    padding: 0 18px 24px;
    color: #111;
    font-size: 14px;
    line-height: 1.6;
}

.ekr-faq-list details > div p {
    margin: 0 0 10px;
}

.ekr-faq-list__label {
    margin-top: 10px !important;
}

.ekr-faq-list details > div ul {
    margin: 6px 0 18px;
    padding-left: 18px;
}

.ekr-faq-list details > div li {
    margin: 5px 0;
}

.ekr-faq-list a {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid #efaaaa;
    color: #d71919;
    font-weight: 850;
    text-decoration: none;
}

.ekr-faq .ekr-section-heading a:not(.ekr-text-link) {
    color: #e1261c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1199px) {
    .ekr-tab {
        font-size: 15px;
    }

    .ekr-how-left {
        grid-template-columns: minmax(0, 1fr) 110px;
    }

    .ekr-step {
        grid-template-columns: 70px minmax(0, 1fr);
        padding-inline: 12px;
    }
}

@media (max-width: 1023px) {
    .ekr-section-heading {
        flex-wrap: wrap;
        gap: 6px 12px;
    }

    .ekr-section-heading > .ekr-text-link {
        margin-left: 0;
    }

    .ekr-section-heading h2 {
        white-space: normal;
    }

    .ekr-how__grid,
    .ekr-why-card {
        grid-template-columns: 1fr;
    }

    .ekr-video {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .ekr-tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .ekr-tab,
    .ekr-tab:nth-child(n+2):not(:last-child),
    .ekr-tab:last-child {
        flex: 0 0 auto;
        padding-inline: 14px;
        text-align: left;
    }

    .ekr-why-card__media {
        height: auto;
        min-height: 340px;
        aspect-ratio: 16 / 8;
    }

    .ekr-builds__page,
    .ekr-stock-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ekr-section {
        padding-top: 42px;
    }

    .ekr-section-heading {
        display: block;
        padding-top: 22px;
    }

    .ekr-section-heading p,
    .ekr-section-heading > .ekr-text-link {
        display: block;
        margin-top: 7px;
    }

    .ekr-how-left {
        grid-template-columns: 1fr;
    }

    .ekr-step-list {
        border-right: 1px solid #dedede;
    }

    .ekr-how-explore {
        min-height: 86px;
        flex-direction: row;
    }

    .ekr-why-card__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .ekr-why-card__copy {
        padding: 24px 4px 10px;
    }

    .ekr-why-card__copy h3 {
        font-size: 24px;
    }

    .ekr-builds__page,
    .ekr-stock-grid {
        grid-template-columns: 1fr;
    }

    .ekr-build-card {
        aspect-ratio: 1.6 / 1;
    }

    .ekr-stock-card {
        grid-template-columns: 52% 48%;
        min-height: 210px;
    }

    .ekr-stock-card img {
        padding: 18px 12px;
    }

    .ekr-stock-card__overlay {
        padding: 14px;
    }

    .ekr-stock-card__overlay strong {
        font-size: 17px;
    }
}
