section.destination-experience{
    padding: 75px 0;
}

section.destination-experience .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section.destination-experience figure{
    position: relative;
}

section.destination-experience figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 572/538;
    display: flex;
}

section.destination-experience figure .titre-destination{
    position: absolute;
    left: 53px;
    bottom: 40px;
    display: flex;
    color: #fff;
    font-family: Prata, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
}

section.destination-experience .content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

section.destination-experience .content h2{
    color: var(--rouge);
    font-family: Prata, sans-serif;
    font-weight: 400;
    line-height: 140%;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
}

section.destination-experience .content h2 .prata{
    font-family: Prata, sans-serif;
    font-style: normal;
}

section.destination-experience .content p{
    color: #000;
    font-family: Work Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    max-width: 450px;
    text-align: center;
}


section.destination-experience .content .savoir-plus{
    color: #000;
    font-family: Work Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    padding-bottom: 8px;
    width: fit-content;
}

section.destination-experience .content .savoir-plus::after{
    content: '';
    bottom:0;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--beigefonce);
    left: 0;
}

section.destination-experience .content .savoir-plus:hover::after{
    background-color:var(--rouge);
}

@media screen and (min-width: 992px){
    section.destination-experience{
        padding: 94px 0 130px;
    }

    section.destination-experience .container{
        flex-direction: row;
        gap: 95px;
        align-items: center;
    }

    section.destination-experience .container .destination{
        width:47%;
    }

    section.destination-experience .content{
        width: 53%;
        gap:23px;
        align-items: unset;
    }

    section.destination-experience .content h2{
        font-size:40px;
        text-align: left;
    }

    section.destination-experience .content p{
        font-size: 16px;
        line-height: 24px;
        text-align: unset;
    }

    /*section.destination-experience .content .savoir-plus{
        font-size: 16px;
    }*/
}