.rl-carousel {
    /* width:clamp(320px,90vw,1200px); */
    overflow: hidden;
    position: relative;
    margin: 10px 20px;
}

.rl-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    padding: 20px 0;
}

.rl-item {
    /* min-width:300px; */
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    /* background:#222;
      box-shadow:0 5px 20px rgba(0,0,0,.5); */
}

.rl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rl-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
}

.rl-control svg {
    width: 20px;
    height: 20px
}

.rl-prev {
    left: 10px
}

.rl-next {
    right: 10px
}

@media (max-width:560px) {
    .rl-item {
        height: 100px;
    }

    .rl-carousel>button {
        font-size: 10px !important;
    }
}