.triptych-go-further {
    margin-top: 50px;
    padding: 0 50px;
}

.triptych-go-further__title {
    font-family: 'ABC Prophet', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    color: var(--bs-ink);
    text-align: left;
    margin-bottom: 25px;
}

.triptych-go-further__grid {
    display: block;
}

.triptych-go-further__card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #E8E4DF;
    text-decoration: none;
    color: #FFF;
    display: flex;
    align-items: center;
    width: calc((100% - 50px) / 3);
    min-width: 300px;
    min-height: 400px;
    margin-right: 25px;
}

/* Flickity : pas de flèche, pas de dots */
.triptych-go-further__grid .flickity-prev-next-button,
.triptych-go-further__grid .flickity-page-dots {
    display: none;
}

.triptych-go-further__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.triptych-go-further__card:hover {
    text-decoration: none;
}

.triptych-go-further__card:hover::before {
    transform: scale(1.05);
}

.triptych-go-further__card--1::before {
    background-image: url('../images/footer/footer_go_further_1.jpeg');
}

.triptych-go-further__card--2::before {
    background-image: url('../images/footer/footer_go_further_2.jpeg');
}

.triptych-go-further__card--3::before {
    background-image: url('../images/footer/footer_go_further_3.jpeg');
}

.triptych-go-further__content {
    padding: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.triptych-go-further__content h3 {
    font-family: 'ABC Prophet', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    color: #FFF;
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    .triptych-go-further {
        padding-left: 10px;
        padding-right: 10px;
    }

    .triptych-go-further__card {
        aspect-ratio: 16 / 9;
    }

    .triptych-go-further__content h3 {
        font-size: 22px;
        line-height: 20px;
    }
}
