
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top : 10px;
    margin-bottom: 50px;
}


.div-header {
    margin-top: 20px;
}


/* PHRASE VERTICAL EN BAS A GAUCHE */
.vertical-phrase {
    position: fixed;
    bottom: 20px;
    left: 30px;

    transform: rotate(-90deg);
    transform-origin: bottom left;
    font-family: "Playfair Display", serif;
    font-size: 13px;

}


@media screen and (min-width: 1000px) {
    .vertical-phrase {
        left: calc(50% - 500px + -10px);
    }
}


        /* CONTENEUR MAGAZINE => 2 colonnes en grand écran */
.mag-container {
    max-width: 1000px;

    text-align: justify;

    margin: 0 auto;
    /* 2 colonnes + espace entre elles */
    column-count: 2;
    column-gap: 40px;
    /* Justification façon "magazine" */
    text-align: justify;
    padding-left: 15px;
}

@media screen and (max-width: 800px) {
    .mag-container {
        margin: 30px;
    }
}

/* BLOC FLOTTANT (image + texte sous l'image) */
/* .callout {
    float: left;
    width: 100%;
    margin-right: 20px;
    margin-bottom: 20px;


    shape-outside: inset(0 round 10px);
    shape-margin: 20px;

    border: 1px solid #bla;
    border-radius: 5px;
    padding: 10px;
} */

.callout {
    display: flex;
    justify-content: center;
}


/* L'image à l'intérieur du bloc callout */
.callout img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin-bottom: 40px;
}

/* Pour s'assurer que la suite du texte ait des espacements */
.mag-container p {
    margin-bottom: 1rem;
}

/*    MEDIA QUERY    => En dessous de 768px, on passe en 1 colonne et on désactive le float */
@media screen and (max-width: 768px) {
    .mag-container {
        /* On repasse en 1 seule colonne */
        column-count: 1;
        column-gap: 0;
    }

    .callout {
        /* On enlève le float pour avoir un affichage normal */
        float: none;
        width: auto;
        shape-outside: none; /* on retire la forme de contournement */
        shape-margin: 0;
        margin-right: 0;
        margin-bottom: 20px;
        /* On peut centrer, ou laisser en bloc normal */
    }

    .callout img {
        margin-bottom: 0px;
    }
}

/* bouton magazine enbas */

.btn-site-div {
    display: flex;
    justify-content: center;
}

.btn-magazine {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;

    background-color: #fff;

    border: 2px solid #333;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;

    box-shadow: 0 4px 0 #ccc;
    transition: all 0.2s ease;
}
