.sv-banner {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    align-items: stretch;
    position: relative;
    width: 100%;
    max-width: var(--ast-normal-container-width, 1400px);
    height: 360px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 70px;
    box-sizing: border-box;
}

.sv-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px; /* 44px minimum touch target (Apple HIG / Material Design) */
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(0, 0, 0, 0.30);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.sv-banner-nav:hover  { background: rgba(0, 0, 0, 0.60); }
.sv-banner-prev       { left: 0; }
.sv-banner-next       { right: 0; }

/* 40% for text panel — leaves 60% for the image, matching the club's visual emphasis */
.sv-banner-text {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.sv-banner-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.sv-banner-panel.is-active {
    opacity: 1;
    pointer-events: auto;
}

.sv-banner-panel p {
    /* margin: auto 0 0 resets side/bottom margins and pushes text to bottom of panel */
    margin: auto 0 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #333;
}

.sv-banner-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    margin-top: auto;
    padding: 0.75rem 1.75rem;
    background: var(--svpromotie-brand-green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    line-height: 1.3;
    transition: background 0.2s;
}

.sv-banner-cta:hover { background: var(--svpromotie-brand-green-dark); color: #fff; }

.sv-banner-slides {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #eee;
}

.sv-banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.sv-banner-slide.is-active { opacity: 1; }

/* Tablet */
@media (max-width: 922px) {
    .sv-banner { height: 300px; }
}

/* Mobile: stack vertically, image above text */
@media (max-width: 700px) {
    .sv-banner {
        height: auto;
        flex-direction: column;
        gap: 1rem;
    }
    .sv-banner-slides {
        order: -1;
        min-height: 200px;
    }
    .sv-banner-text {
        flex: none;
        min-height: 200px;
        overflow: hidden;
        padding-top: 1rem;
    }
}

/* Small mobile: reduce heights for screens under 375px */
@media (max-width: 375px) {
    .sv-banner-text  { min-height: 160px; }
    .sv-banner-slides { min-height: 150px; }
}
