/* Force la hauteur uniforme pour toutes les single-visa-box */
.single-visa-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image holder avec hauteur fixe */
.single-visa-box .img-holder {
    flex: 0 0 auto;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-visa-box .img-holder .inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-visa-box .img-holder .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text holder flexible pour alignement uniforme */
.single-visa-box .text-holder {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 42px 29px 30px;
    border: 1px solid #d7d7d7;
    border-top: none;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

.single-visa-box .text-holder h3 {
    margin: 0 0 13px 0;
    flex-shrink: 0;
}

.single-visa-box .text-holder p {
    margin: 0;
    flex-grow: 1;
}

/* Alignement du carousel */
.theme-carousel.event-carousel {
    display: flex;
    align-items: stretch;
}

.single-visa-box {
    display: flex;
}

.owl-item .single-visa-box {
    height: 100%;
}

.owl-stage {
    align-items: stretch;
}