/* Customer Reviews Slider basic styles */

.crs-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.crs-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.crs-track {
    display: flex;
    transition: transform .3s ease;
}

.crs-card {
    flex: 0 0 50%;
    margin-right: 24px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(15,35,52,.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crs-card:last-child {
    margin-right: 0;
}

.crs-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crs-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.crs-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crs-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.crs-date {
    font-size: 12px;
    color: #6b7280;
}

.crs-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crs-stars {
    color: #fbbf24;
    font-size: 15px;
}

.crs-rating-value {
    font-size: 13px;
    color: #6b7280;
}

.crs-text {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.crs-toggle {
    margin-top: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
}

/* Navigation */
.crs-nav {
    border: none;
    background: #e5e7eb;
    border-radius: 999px;
    width: 32px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crs-nav:hover {
    background: #d1d5db;
}

.crs-nav-icon {
    font-size: 20px;
    line-height: 1;
}

/* Responsive: 1 Karte pro Ansicht auf kleineren Screens */
@media (max-width: 900px) {
    .crs-card {
        flex: 0 0 100%;
        margin-right: 16px;
    }

    .crs-card:last-child {
        margin-right: 0;
    }
}
