.carte-article {
    background: var(--couleur-blanc);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    overflow: hidden;
    text-decoration: none;
    color: var(--couleur-texte);
    display: flex;
    flex-direction: column;
}

.carte-article img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.carte-article-image-defaut {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--degrade-principal);
    color: var(--couleur-blanc);
}

.article-detail-image-defaut {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--degrade-principal);
    color: var(--couleur-blanc);
    border-radius: var(--radius);
    margin: 16px 0;
}

.carte-article-corps {
    padding: 18px;
}

.carte-article-corps h3 {
    margin: 10px 0 8px;
}

.article-detail {
    max-width: 760px;
}

.article-detail-date {
    color: #8a7a63;
    font-size: 14px;
}

.article-detail-image {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 16px 0;
}

.article-detail-contenu {
    line-height: 1.7;
    white-space: pre-line;
}
