/* static/css/activites.css */

/* --- Layout Général et Grille d'Activités --- */
.blog-section {
    background-color: #f8f9fa; /* Fond légèrement différent pour la section */
}

/* On utilise CSS Grid pour une grille responsive parfaite */
.articles-list {
    display: grid;
    /* Crée des colonnes de 350px minimum, qui s'ajustent pour remplir l'espace. */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem; /* Espace entre les cartes */
}

/* --- Le Style de la Carte d'Activité --- */
.activity-card {
    background: #fff;
    border-radius: 12px; /* Coins plus arrondis pour un look plus doux */
    overflow: hidden; /* Crucial pour que les coins arrondis s'appliquent à l'image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* --- Image de l'Activité --- */
.article-image {
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image remplit l'espace sans se déformer */
    transition: transform 0.4s ease;
}

.activity-card:hover .article-image img {
    transform: scale(1.05); /* Effet de zoom subtil au survol */
}

/* --- Contenu de la Carte --- */
.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Permet au contenu de s'étendre et de pousser le bouton vers le bas */
}

/* --- Métadonnées (Date et Catégorie) --- */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.article-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Le "Tag" de catégorie */
.news-category {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px; /* Forme de pilule */
    color: var(--primary-color, #0056b3);
    background-color: rgba(0, 86, 179, 0.1); /* Couleur primaire avec transparence */
}

/* --- Titre, Lieu et Extrait --- */
.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-title a {
    text-decoration: none;
    color: #212529;
    background-image: linear-gradient(var(--primary-color, #0056b3), var(--primary-color, #0056b3));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.article-title a:hover {
    background-size: 100% 2px;
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-size: 1rem;
    color: #495057;
    flex-grow: 1; /* Pousse le bouton vers le bas */
    margin-bottom: 1.5rem;
}

/* --- Bouton "Lire la suite" --- */
.btn-read-more {
    display: inline-block;
    align-self: flex-start; /* Aligner le bouton à gauche */
    background-color: var(--primary-color, #0056b3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-read-more:hover {
    background-color: #004494; /* Une teinte plus foncée */
    transform: translateY(-2px);
}


/* --- Styles pour les filtres --- */
.blog-categories {
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-categories h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    padding: 8px 18px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-btn:hover {
    border-color: var(--primary-color, #0056b3);
    color: var(--primary-color, #0056b3);
}

.category-btn.active {
    background-color: var(--primary-color, #0056b3);
    color: #fff;
    border-color: var(--primary-color, #0056b3);
}