.crc-carousel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}
.crc-carousel * {
    box-sizing: border-box;
}

/* Top "Client" label */
.crc-top-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 32px;
}

/* Slides */
.crc-track {
    position: relative;
    min-height: 200px;
}
.crc-slide {
    display: none;
    animation: crc-fade 0.5s ease;
}
.crc-slide.is-active {
    display: block;
}
@keyframes crc-fade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.crc-quote {
    font-size: clamp(26px, 5vw, 42px);
    line-height: 1.4;
    font-weight: 500;
    color: #111111;
    margin: 0 auto;
    max-width: 950px;
    letter-spacing: -0.2px;
}
.crc-meta {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

/* Progress / counter row */
.crc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
}
.crc-count {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.5px;
    min-width: 20px;
}
.crc-progress-line {
    position: relative;
    width: 180px;
    height: 1px;
    background: #d1d5db;
    display: inline-block;
}
.crc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background: #111111;
    width: 0%;
    transition: width 0.35s ease;
}

/* Prev / Next round buttons */
.crc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}
.crc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111111;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    padding: 0;
}
.crc-nav-btn:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    transform: translateY(-1px);
}
.crc-nav-btn:active {
    transform: translateY(0);
}
.crc-nav-btn svg {
    display: block;
}

@media (max-width: 600px) {
    .crc-carousel {
        padding: 40px 16px 30px;
    }
    .crc-progress-line {
        width: 120px;
    }
}
