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