.carrusel {
    position: relative;
    width: 90%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat, sans-serif !important;
}

.carrusel-viewport {
    width: 100%;
    touch-action: pan-y;
    position: relative;
}

.carrusel-track {
    display: flex;
    transition: transform 0.4s ease;
    
}

.slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 15px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.slide h3 {
    margin-top: 18px;
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

.slide p {
    margin-top: 8px;
    font-size: 19px;
    color: #555;
    line-height: 1.4;
    max-width: 407px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
    font-family: Montserrat, sans-serif !important;
}

.btn {
    display: none;
    position: absolute;
    background: transparent;
    color: #565656;
    border: none;
    font-size: 26px;
    padding: 0px;
    cursor: pointer;
    z-index: 4;
}

.prev { left: -7px; }
.next { right: -5px; }

