/* Styles pour la page de l'article de blog */
article {
    background-color: #FAF8F2; /* Blanc Lin */
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

article h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #B0754A; /* Marron Noisette */
    margin-bottom: 10px;
    text-align: center;
}

article p,
article .post-content p {
    font-family: 'Montserrat', serif;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

article .post-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #B0754A; /* Marron Noisette */
    margin-top: 20px;
    margin-bottom: 10px;
}

article .post-content img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

article em {
    font-family: 'Montserrat', serif;
    font-style: italic;
    color: #9A9A9A; /* Gris Souris */
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    article {
        padding: 15px;
    }

    article h1 {
        font-size: 1.5em;
    }

    article .post-content h2 {
        font-size: 1.2em;
    }

    article p,
    article .post-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    article {
        padding: 10px;
    }

    article h1 {
        font-size: 1.3em;
    }

    article .post-content h2 {
        font-size: 1.1em;
    }

    article p,
    article .post-content p {
        font-size: 0.9em;
    }

    article .post-content img {
        max-width: 100%;
    }
}
