
.section--escapades {
    padding: 60px 0;
}

.section--escapades  .section__header {
    text-align: center;
    max-width: 950px;
    margin: 0px auto 64px auto;
}
.section--escapades  .section__header .section__subtitle{
    margin: 0 auto 12px;
    color: var(--color-nav);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section--escapades  .section__header .section__title{
    margin:0 auto;
    margin-bottom: 12px;
}
.section--escapades  .section__header .section__text{
    margin:0 auto;
}

.section--escapades .section__footer {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LIGNE 1 = intro + 2 cartes */
.section--escapades .section__row--top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 16px 0;
}


/* INTRO GAUCHE (50%) */
.section--escapades .section__intro {
    width: calc(50% - 8px);
    padding: 16px 0;
}

.section--escapades .section__title {
    margin-bottom: 16px;
}

.section--escapades .section__introduction {
    margin-bottom: 20px;
}

.section--escapades .section__controls {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* CTA */
.section--escapades .section__cta {
    font-weight: 400;
    text-decoration: none;
    background: var(--color-nav);
    color: var(--color-white);
    padding: 0 24px;
    font-size: 18px;
    border-radius: 4px;
    line-height: 48px;
}

.section--escapades .section__cta:hover {
    text-decoration: none;
    background: var(--color-bold);
    color: var(--color-white);
}

/* CARTES A DROITE (2 cartes) */
.section--escapades .section__right-cards {
    width: calc(50% - 8px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.section--escapades .section__card {
    display: block;
    text-decoration: none;
    width: 100%;

    transform: rotate(var(--rotation));
}
.section--escapades .section__card svg {
    position:absolute;
    top:-8px;
    right:-5px;
    width:40px;
}
.section--escapades .section__card svg * {
    fill:var(--color-bold);
}
.section--escapades .section__card-figure {
    position: relative;
    /*overflow: hidden;*/
    width: 100%;
    /*box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);*/
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding:10px 10px 16px 10px;
}
 

.section--escapades .section__card-image {
    width: 100%;
    aspect-ratio:1 / 1;
       height:100%;
    object-fit: cover;
    display: block;

}
.section--escapades .section__card-image img {
        width: 100%;
   height:100%;
    object-fit: cover;
    display: block;
}
/* CAPTION NOIR → BORDEAUX AU HOVER */
.section--escapades .section__card-caption {
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    /*color: #fff;*/
    /*background: rgba(0,0,0,0.55);*/
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    transition: background 0.25s;

    font-size: 24px;
    text-align: center;
    color:var(--color-text);
    
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}

.section--escapades .section__card:hover .section__card-caption {
    /*background: var(--color-bold);
    font-weight: 400;*/
    text-decoration: underline;
}

.section--escapades .section__row--bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


@media all and (max-width: 1150px){
    .section--escapades .section__row--top {
        flex-direction: column;
    }
    .section--escapades .section__intro {
        width: 100%;
        margin: 0 0 32Px 0;
    }
    .section--escapades .section__right-cards {
        width: 100%;
    }
}

@media all and (max-width: 980px){
    .section--escapades .section__row--bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    .section--escapades .section__card-caption {
        font-size: 18px;
    }
}

@media all and (max-width: 600px){
    /* Cartes plus petites (≈1/3) au lieu de 50% pour éviter que ça soit trop gros */
    .section--escapades .section__row--bottom {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .section--escapades .section__right-cards {
        justify-content: flex-start;
        gap: 10px;
    }
    .section--escapades .section__right-cards .section__card {
        width: calc(33.333% - 7px);
    }
    .section--escapades .section__card-caption {
        font-size: 14px;
        padding: 6px 6px;
    }
    .section--escapades .section__card svg {
        width: 26px;
    }
}


