/* ==========================================================================
   Zitat Block — Testimonial Slider
   Desktop: large card with image left + text right
   Mobile: stacked card, swiper
   ========================================================================== */

.cf-zitat {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.cf-zitat__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: clamp(5rem, 8.33vw, 7.5rem) clamp(0.75rem, 2.78vw, 2.5rem);
}

.cf-zitat__slider {
    overflow: hidden;
}

.cf-zitat__slider .swiper-wrapper {
    align-items: stretch;
}

.cf-zitat__slide {
    width: 80%;
    max-width: 1100px;
    min-width: 0;
    height: auto;
}

/* === Card === */
.cf-zitat__card {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3.33vw, 3rem);
    background-color: #1A1A1A;
    padding: clamp(1.5rem, 2.78vw, 2.5rem);
    border-radius: 0;
    min-width: 0;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

/* === Image === */
.cf-zitat__image-wrap {
    flex-shrink: 0;
    width: clamp(200px, 30.37vw, 437px);
    aspect-ratio: 437 / 292;
    overflow: hidden;
    border-radius: 4px;
}

.cf-zitat__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Text === */
.cf-zitat__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2.78vw, 2.5rem);
}

.cf-zitat__quote {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 0.83rem + 2.22vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    border: none;
    quotes: none;
    overflow-wrap: break-word;
}

.cf-zitat__person {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cf-zitat__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    color: #FFFFFF;
    text-transform: uppercase;
}

.cf-zitat__role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
    color: #FFFFFF;
}

/* === Navigation === */
.cf-zitat__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(1.5rem, 2.78vw, 2.5rem);
}

.cf-zitat__counter {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.cf-zitat__arrows {
    display: flex;
    gap: 1rem;
}

.cf-zitat__nav-prev,
.cf-zitat__nav-next {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.cf-zitat__nav-prev:hover,
.cf-zitat__nav-next:hover {
    opacity: 0.6;
}

/* === Mobile === */
@media (max-width: 767px) {
    .cf-zitat__slide {
        width: 90%;
    }

    .cf-zitat__card {
        flex-direction: column;
    }

    .cf-zitat__image-wrap {
        width: 100%;
        aspect-ratio: 277 / 185;
    }
}
