/* Clean ProvenExpert Footer */
.mrf-pe-footer-clean {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.mrf-pe-footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.mrf-pe-footer-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mrf-pe-footer-small {
    font-size: 12px;
    color: #6b7280;
}

.mrf-pe-footer-bold {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* Base Card + Slider (2 Spalten Desktop) */
.mrf-pe-reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.mrf-pe-reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.mrf-pe-reviews-track {
    display: flex;
    transition: transform .3s ease;
}

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

.mrf-pe-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mrf-pe-header-text {
    display: flex;
    flex-direction: column;
}

.mrf-pe-review-name {
    font-size: 15px;
    font-weight: 600;
}

.mrf-pe-review-time {
    font-size: 12px;
    color:#6b7280;
}

.mrf-pe-review-rating {
    display:flex;
    align-items:center;
    gap:8px;
}

.mrf-pe-stars {
    color:#fbbf24;
}

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

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

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

.mrf-pe-reviews-nav:hover {
    background:#d1d5db;
}

/* Responsive: 1 Spalte auf Smartphone */
@media(max-width:900px){
    .mrf-pe-review-card{
        flex:0 0 100%;
    }
}

.mrf-pe-review-card:last-child { margin-right: 0; }
