.article-body p {
    margin-bottom: 1.5rem;
    color: #333;
}
.italic { font-style: italic; }
.extra-small { font-size: 0.75rem; }
.rounded-start-pill { border-top-left-radius: 50px; border-bottom-left-radius: 50px; }
.rounded-end-pill { border-top-right-radius: 50px; border-bottom-right-radius: 50px; }

.article-hero-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px; /* Un léger arrondi */
}

.img-fit-article {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* C'est cette ligne qui fait que l'image remplit tout l'espace */
    object-position: center; /* L'image reste centrée si elle est rognée */
}

/* Optionnel : Responsive pour mobile */
@media (max-width: 768px) {
    .article-hero-container {
        height: 250px;
    }
}

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dee2e6;
    border-radius: 50px; /* Effet pilule comme sur votre modèle */
    transition: all 0.3s ease;
}

.badge-tag:hover {
    background-color: #212529; /* Devient noir au survol */
    color: #ffffff !important;
    border-color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    letter-spacing: 1px;
    color: #212529;
}
/*-------------------------
Effet de zoom sur le logo
-------------------------*/
/* Conteneur pour l'effet */
.article-hero-container {
    position: relative;
    cursor: pointer;
}

/* On cible l'image à l'intérieur du conteneur lors du survol */
.article-hero-container:hover .img-fit-article {
    transform: scale(1.05); /* Zoom de 5% */
}

/* On ajoute la transition sur l'image elle-même pour que ce soit fluide */
.img-fit-article {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/*----------------------
Styling pour Social Tags
------------------------*/
    .social-share-article {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    /* Si le plugin génère des liens <a>, on les rend plus propres */
    .social-share-article a {
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .social-share-article a:hover {
        opacity: 0.7;
    }
    /* On peaufine l'en-tête de l'article */
    .border-bottom {
        border-bottom: 1px solid #dee2e6 !important;
    }
    .social-share-article {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}