
.acsp-wrap{
    --acsp-gap:8px;
    width:100%;
    margin-inline:auto;
    box-sizing:border-box;
}
.acsp-heading{
    margin:0 0 20px;
    text-align:center;
    color:#1f1717;
}
.acsp-slider{
    --acsp-per-view:7;
    position:relative;
    width:100%;
    min-width:0;
}
.acsp-viewport{
    width:100%;
    overflow:hidden;
    touch-action:pan-y;
}
.acsp-track{
    display:flex;
    align-items:stretch;
    gap:var(--acsp-gap);
    transition:transform .45s ease;
    will-change:transform;
}
.acsp-card{
    flex:0 0 calc((100% - (var(--acsp-gap) * (var(--acsp-per-view) - 1))) / var(--acsp-per-view));
    min-width:0;
    min-height:140px;
    padding:12px 10px;
    box-sizing:border-box;
    border:1px solid #9d6e6e;
    border-radius:28px;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    overflow:hidden;
}
.acsp-image-wrap{
    width:100%;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:6px;
}
.acsp-image{
    display:block;
    width:auto;
    height:100%;
    max-width:90%;
    object-fit:contain;
}
.acsp-title{
    color:#2b1f1f;
    font-size:12px;
    line-height:1.2;
    margin-bottom:3px;
}
.acsp-description{
    color:#2b1f1f;
    font-size:11px;
    line-height:1.15;
}
.acsp-button{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 12px;
    border-radius:18px;
    background:#9d6e6e;
    color:#fff;
    text-decoration:none;
}
.acsp-arrow{
    position:absolute;
    z-index:5;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#a3a3a3;
    box-shadow:0 4px 12px rgba(0,0,0,.22);
    cursor:pointer;
}
.acsp-prev{left:-4px}
.acsp-next{right:-4px}
.acsp-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:12px;
}
.acsp-dot{
    width:8px;
    height:8px;
    border:0;
    border-radius:50%;
    background:#d2c1c1;
}
.acsp-dot.is-active{background:#9d6e6e}
@media(max-width:1024px){
    .acsp-slider{--acsp-per-view:4}
}
@media(max-width:767px){
    .acsp-slider{--acsp-per-view:2}
}
