.rs-ddf6c4dc-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.rs-ddf6c4dc-swiper {
    display: flex;
}

.rs-ddf6c4dc-swiper .swiper-wrapper {
    align-items: stretch;
}

.rs-ddf6c4dc-slide {
    height: auto; 
    display: flex;
}

.rs-ddf6c4dc-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.rs-ddf6c4dc-col-left {
    width: 100%;
    background: #f4f6f8;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.rs-ddf6c4dc-mockup {
    width: 100%;
    height: 100%;
    display: flex;
}

.rs-ddf6c4dc-mockup img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rs-ddf6c4dc-col-right {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Gleichmäßige vertikale Verteilung der 3 Hauptbereiche (Content, Button, Footer) */
    justify-content: space-between; 
}

@media (min-width: 768px) {
    .rs-ddf6c4dc-card {
        flex-direction: row;
    }
    .rs-ddf6c4dc-col-left {
        width: 45%;
    }
    .rs-ddf6c4dc-col-right {
        width: 55%;
        padding: 50px;
    }
}

.rs-ddf6c4dc-content {
    display: flex;
    flex-direction: column;
}

.rs-ddf6c4dc-logo {
    margin-bottom: 20px;
}

.rs-ddf6c4dc-logo img {
    max-height: 50px;
    object-fit: contain;
}

.rs-ddf6c4dc-title {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    font-weight: 600;
}

.rs-ddf6c4dc-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    /* Reduzierter Abstand nach unten, da Flexbox space-between übernimmt */
    margin-bottom: 10px; 
}

.rs-ddf6c4dc-action {
    /* Margin top/bottom, um Abstand zwischen Text und Kundenbereich zu schaffen */
    margin: 20px 0; 
    display: flex;
    align-items: center;
}

.rs-ddf6c4dc-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 0; /* Nicht abgerundet */
    font-weight: 600;
    transition: background 0.3s;
}

.rs-ddf6c4dc-btn:hover {
    background: #E4C586; /* Neue Hover-Farbe */
}

.rs-ddf6c4dc-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
}

.rs-ddf6c4dc-customer {
    display: none; 
}

@media (min-width: 768px) {
    .rs-ddf6c4dc-customer {
        display: flex;
        flex-direction: row; 
        align-items: center;
        gap: 15px; 
    }
}

.rs-ddf6c4dc-customer-photo {
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #eee;
}

.rs-ddf6c4dc-customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rs-ddf6c4dc-customer-info {
    display: flex;
    flex-direction: column;
}

.rs-ddf6c4dc-customer-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 4px;
}

.rs-ddf6c4dc-customer-subtitle {
    font-size: 14px;
    color: #777;
    line-height: 1.2;
}

/* Controls */
.rs-ddf6c4dc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.rs-ddf6c4dc-controls .swiper-button-prev,
.rs-ddf6c4dc-controls .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0;
}

.rs-ddf6c4dc-controls .swiper-button-prev::after,
.rs-ddf6c4dc-controls .swiper-button-next::after {
    font-size: 18px;
    color: #333;
}

.rs-ddf6c4dc-pagination {
    position: static !important;
    width: auto !important;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rs-ddf6c4dc-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.rs-ddf6c4dc-pagination .swiper-pagination-bullet-active {
    background: #111;
}
