
.actc-wrapper{
    --actc-gap:8px;
    width:100%;
    margin-inline:auto;
    padding:32px 8px;
    box-sizing:border-box;
    background:#ead7b6;
}
.actc-slider{
    --actc-per-view:3;
    position:relative;
    width:100%;
    min-width:0;
}
.actc-viewport{
    width:100%;
    overflow:hidden;
    touch-action:pan-y;
}
.actc-track{
    display:flex;
    align-items:stretch;
    gap:var(--actc-gap);
    transition:transform .45s ease;
    will-change:transform;
}
.actc-card{
    position:relative;
    flex:0 0 calc((100% - (var(--actc-gap) * (var(--actc-per-view) - 1))) / var(--actc-per-view));
    min-width:0;
    min-height:300px;
    padding:22px 24px;
    box-sizing:border-box;
    background:#fff;
    display:flex;
    flex-direction:column;
    overflow:visible;
}
.actc-photo{
    position:absolute;
    top:-18px;
    right:20px;
    width:64px;
    height:64px;
    overflow:hidden;
    border-radius:50%;
    z-index:2;
}
.actc-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.actc-stars{
    display:flex;
    align-items:center;
    gap:2px;
    font-size:24px;
    line-height:1;
}
.actc-star.is-filled{color:#f5a000}
.actc-star.is-empty{color:#d8d8d8}
.actc-testimonial{
    margin-top:10px;
    color:#111;
    font-size:14px;
    line-height:1.25;
}
.actc-author{
    margin-top:auto;
    padding-top:24px;
    color:#333;
    font-size:13px;
    text-align:right;
}
.actc-arrow{
    position:absolute;
    z-index:5;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#8c8c8c;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
    cursor:pointer;
}
.actc-prev{left:6px}
.actc-next{right:6px}
.actc-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:14px;
}
.actc-dot{
    width:8px;
    height:8px;
    border:0;
    border-radius:50%;
    background:#ccbaba;
}
.actc-dot.is-active{background:#9d6f6f}
@media(max-width:1024px){
    .actc-slider{--actc-per-view:2}
}
@media(max-width:767px){
    .actc-slider{--actc-per-view:1}
    .actc-wrapper{padding:28px 12px}
    .actc-card{min-height:320px}
}
