/* Conteneur Image fixe pour la grille */
.mag-img-container {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-date {
    position:absolute;
    bottom:10px;
    right:10px;
    background:rgba(0,0,0,0.7);
    color:white;
    padding:2px 8px;
    font-size:0.7rem;
    border-radius:4px;
}


/* Badge date sur l'image */
.badge-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Style Sidebar */
.italic { font-style: italic; }

.btn-read-more {
    font-size: 0.85rem;
    font-weight: bold;
    color: #dc3545; /* Votre rouge */
    text-decoration: none;
}

.btn-read-more:hover { text-decoration: underline; }

/* Arrondis pour la barre de recherche */
.rounded-pill-start { border-top-left-radius: 50px; border-bottom-left-radius: 50px; }
.rounded-pill-end { border-top-right-radius: 50px; border-bottom-right-radius: 50px; }

/*-------------------------
Style Pagination
--------------------------*/
.pagination-container-force a, 
.pagination-container-force strong,
.pagination-container-force span {
    display: inline-block !important;
    padding: 10px 20px !important;
    margin: 0 5px !important;
    border: 1px solid #dee2e6 !important;
    color: #dc3545 !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    background: #fff !important;
    transition: all 0.2s ease;
}
.pagination-container-force a:hover {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}