.mtw-slider {
    padding: 20px 0;
}

.mtw-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
    transition: 0.2s;
}

.mtw-slide:hover {
    border-color: #ff6600;
}

.mtw-slide img {
    width: 45px;
    margin-bottom: 10px;
}

.mtw-slide span {
    color: #333;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}
.mtw-slider {
    width: 100%;
}
/* Hace que cada slide use flex y se estire */
.mtw-slider .swiper-slide {
    display: flex;
    height: auto !important;
}

/* Caja interna: flex column + height 100% para igualar la más alta */
.mtw-slider .mtw-slide-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}
