.dealer-widget {
    display: flex;
    width: 100%;
    min-height: 360px;
    gap: 18px;
    align-items: stretch;
}
.dealer-widget__panel {
    position: relative;
    display: flex;
    min-height: 360px;
    border-radius: 2px;
    overflow: hidden;
    transition: flex 300ms ease, filter 300ms ease;
    flex: 0 0 120px;
    background: #0f1216;
}
.dealer-widget__panel.is-active {
    flex: 1 1 auto;
}
.dealer-widget__panel.is-inactive {
    flex: 0 0 120px;
}
.dealer-widget__tab {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    width: 120px;
    background: #d43126;
    cursor: pointer;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dealer-widget__tab:focus {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: -4px;
}
.dealer-widget__tabText {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.2px;
    transform: rotate(-90deg);
    white-space: nowrap;
}
.dealer-widget__contentWrap {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    background-image: var(--dealer-bg);
    background-size: cover;
    background-position: center;
}
.dealer-widget__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}
.dealer-widget__content {
    position: relative;
    z-index: 2;
    padding: 120px 45px;
    max-width: 620px;
    color: #ffffff;
}
.dealer-widget__title {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.06;
    font-weight: 800;
    color: #fff;
}
.dealer-widget__body {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
    opacity: 0.95;
}
.dealer-widget__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d43126;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
}
.dealer-widget__cta:hover {
    filter: brightness(1.05);
    color: #ffffff;
}
.dealer-widget__cta:focus {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}
.dealer-widget__panel.is-inactive .dealer-widget__contentWrap {
    display: none;
}
.dealer-widget__panel.is-active .dealer-widget__tab {
    display: none;
}

@media (max-width: 980px) {
    .dealer-widget {
        gap: 12px;
        min-height: 320px;
    }
    .dealer-widget__panel,
    .dealer-widget__panel.is-inactive {
        flex-basis: 92px;
        min-height: 320px;
    }
    .dealer-widget__tab {
        width: 92px;
    }
    .dealer-widget__tabText {
        font-size: 20px;
    }
    .dealer-widget__content {
        padding: 36px 28px;
    }
    .dealer-widget__title {
        font-size: 34px;
    }
}
@media (max-width: 640px) {
    .dealer-widget {
        flex-direction: column;
        min-height: auto;
    }
    .dealer-widget__panel,
    .dealer-widget__panel.is-inactive {
        flex: 1 1 auto;
        min-height: fit-content;
    }
    .dealer-widget__tab {
        width: 100%;
        height: 64px;
    }
    .dealer-widget__tabText {
        transform: none;
        font-size: 18px;
    }
    .dealer-widget__panel.is-inactive .dealer-widget__contentWrap {
        display: none;
    }
}
