/* Style pour la page de l'article seul */
.post-detail {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

#post-content img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    /* Important pour ne pas déformer l'image de l'API */
    border-radius: 12px;
    margin: 20px 0;
}

#post-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

#post-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* Le bouton Share (Requis par le brief) */
#share-btn {
    margin-top: 40px;
    padding: 10px 25px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

#share-btn:hover {
    background: #000;
    color: #fff;
}