/*
Theme Name: Mon Theme Bootstrap
Author: Votre Nom
Description: Thème Bootstrap 5.3 avec badges de catégories colorés et sans hashtag.
Version: 1.15
Text Domain: mon-theme-bootstrap
*/

/* --- STRUCTURE & HEADER --- */
body.admin-bar .fixed-top { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .fixed-top { top: 46px; } }
body { padding-top: 85px; background-color: #f8f9fa; }

/* --- CARTES D'ARTICLES (GRILLE) --- */
.card-article {
    border: none !important;
    border-radius: 1rem !important;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.card-article:hover { transform: translateY(-5px); }

/* Style des badges de catégorie */
.category-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4em 0.9em;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #fff !important; /* Texte blanc forcé */
    text-transform: uppercase;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

.category-badge:hover { opacity: 0.85; }

/* Typographie */
.card-article .card-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #212529;
    text-transform: uppercase;
}

.card-article .card-text {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
}