.dcrv {
    position: relative;
    padding: clamp(80px, 9vw, 130px) clamp(20px, 4vw, 60px);
    background: #fff;
    font-family: var(--dc-font-body);
    overflow: hidden;
}

.dcrv__inner { max-width: 1280px; margin: 0 auto; position: relative; }

.dcrv__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 30px;
    margin: 0 -4px;
    scrollbar-width: none;
}
.dcrv__track::-webkit-scrollbar { display: none; }

.dcrv__card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    gap: 18px;
    padding: 30px;
    border-radius: var(--dc-radius-lg);
    background: linear-gradient(160deg, #fff 0%, var(--dc-bg) 100%);
    border: 1px solid var(--dc-line);
    box-shadow: var(--dc-shadow-sm);
    min-height: 320px;
    opacity: 0; transform: translateY(20px);
    animation: dcrv-rise 0.8s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: calc(var(--dcrv-i, 0) * 80ms);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dcrv__card:hover { transform: translateY(-6px); box-shadow: var(--dc-shadow-md); }

.dcrv__quote {
    width: 40px; height: 40px;
    color: var(--dc-primary-2);
    opacity: 0.4;
}
.dcrv__quote svg { width: 100%; height: 100%; }

.dcrv__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dc-ink);
    margin: 0;
    flex: 1;
}

.dcrv__rating { display: flex; gap: 4px; color: var(--dc-accent-2); }
.dcrv__star { width: 16px; height: 16px; }
.dcrv__star svg { width: 100%; height: 100%; }

.dcrv__person { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--dc-line); }
.dcrv__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dc-primary), var(--dc-primary-2)) center/cover no-repeat;
    flex-shrink: 0;
}
.dcrv__person-meta { display: flex; flex-direction: column; min-width: 0; }
.dcrv__person-meta strong { font-size: 14.5px; color: var(--dc-ink); }
.dcrv__person-meta span { font-size: 12.5px; color: var(--dc-ink-soft); }

.dcrv__controls {
    display: flex; justify-content: flex-end; gap: 10px;
    margin-top: 8px;
}
.dcrv__nav {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dc-bg-2);
    color: var(--dc-ink);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}
.dcrv__nav:hover { background: var(--dc-ink); color: #fff; transform: translateY(-2px); }
.dcrv__nav svg { width: 16px; height: 16px; }
.dcrv__nav--prev svg { transform: rotate(180deg); }

@keyframes dcrv-rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) { .dcrv__card { flex-basis: calc(50% - 12px); } }
@media (max-width: 640px)  { .dcrv__card { flex-basis: 85%; } }
