.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
  
.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
    gap: unset !important;
}
  
.carousel > * {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    text-align: center;
    padding-left: unset !important;
    padding-right: unset !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 100%;
    background: rgba(255,255,255,0);
    color: rgb(45, 45, 45);
    border: none;
    cursor: pointer;
    z-index: 2;
    font-size: 1.5rem;
    text-align: center;
    user-select: none;
    transition: background 0.3s ease-in-out;
}
.carousel-btn:hover {
    background: rgba(0,0,0,0.5);
}
.carousel-btn.prev { left:  0px; }
.carousel-btn.next { right: 0px; }