/* ==========================================================================
   DESIGN GLOBAL : STRUCTURATION DOUBLE COLONNE (MAIN + SIDEBAR)
========================================================================== */

.la-global-grid {
    max-width: 1650px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 340px; /* Zone principale fluide, sidebar calée à 340px */
    gap: 40px;
    align-items: start;
}

.la-container {
    max-width: 100%;
    padding: 0;
}

.la-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.la-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

/* --- HERO GRID --- */
.la-hero-section {
    padding-bottom: 40px;
}
.la-grid-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}
.la-featured {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 440px;
}
.la-featured-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15,17,23,0.95), transparent);
}
.la-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
}
.bg-rose { background: #FF006B; }
.la-featured-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
}
.la-meta { font-size: 0.85rem; opacity: 0.6; }

.la-latest-list { display: flex; flex-direction: column; gap: 15px; }
.la-latest-item { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: 14px; }
.la-latest-img { width: 80px; height: 65px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.la-latest-content h4 { font-size: 0.95rem; font-weight: 700; color: #fff; }

/* --- FLUX DE LA LISTE STANDARD --- */
.la-list-section { padding: 50px 0; }
.la-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.la-view-toggles { display: flex; gap: 10px; }
.la-toggle {
    background: transparent; border: none; color: rgba(255,255,255,0.4);
    font-weight: 800; font-size: 0.8rem; display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.la-toggle.active, .la-toggle:hover { color: #FF006B; }

.la-articles-feed { display: flex; flex-direction: column; gap: 20px; }
.la-article-row {
    display: grid;
    grid-template-columns: 80px 240px 1fr;
    gap: 30px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.la-row-date { display: flex; flex-direction: column; align-items: center; border-top: 2px solid rgba(255,255,255,0.1); padding-top: 10px; }
.la-month { font-size: 0.75rem; font-weight: 800; opacity: 0.6; }
.la-day { font-size: 2.2rem; font-weight: 900; color: #fff; }
.la-row-img-wrap { height: 160px; border-radius: 10px; overflow: hidden; }
.la-row-content h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.la-row-meta { font-size: 0.85rem; opacity: 0.5; margin-bottom: 10px; }
.la-row-excerpt { font-size: 0.95rem; opacity: 0.7; line-height: 1.5; margin-bottom: 15px; }
.la-row-link { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: #FF006B; text-decoration: none; }

/* ==========================================================================
   MODE GRILLE STRICT (4 COLONNES) SANS S'ÉCRASER
========================================================================== */
.la-articles-feed.grid-mode {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Colonnes imposées */
    gap: 20px;
}
.la-articles-feed.grid-mode .la-article-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    background: rgba(20, 20, 24, 0.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    height: 100%;
}
.la-articles-feed.grid-mode .la-row-date {
    flex-direction: row; gap: 8px; border: none; padding: 0; margin-bottom: 10px; align-self: flex-start;
}
.la-articles-feed.grid-mode .la-day { font-size: 1.4rem; }
.la-articles-feed.grid-mode .la-row-img-wrap { width: 100%; height: 130px; margin-bottom: 12px; }
.la-articles-feed.grid-mode .la-row-content h3 { font-size: 1.05rem; line-height: 1.3; }
.la-articles-feed.grid-mode .la-row-excerpt {
    font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ==========================================================================
   STYLISATION DES WIDGETS DE LA SIDEBAR
========================================================================== */
.la-sidebar-global {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 90px; /* Reste collée lors du défilement */
}
.la-widget { padding: 25px; border-radius: 20px; }
.la-widget-title {
    font-size: 1.1rem; font-weight: 800; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; margin-bottom: 18px;
}
.la-filter-field { margin-bottom: 15px; display: flex; flex-direction: column; gap: 6px; }
.la-filter-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.la-filter-field label { font-size: 0.8rem; font-weight: 800; opacity: 0.7; text-transform: uppercase; }

.la-sidebar-select {
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 10px; color: #fff; outline: none; font-family: inherit;
}
.la-sidebar-select option { background: #0f1117; color: #fff; }

.la-engagement-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.la-sort-btn {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 10px; border-radius: 8px; cursor: pointer;
    font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6
}

/* ==========================================================================
   PALETTE DE COULEURS STRICTE & DÉGRADÉS (list_article.css)
========================================================================== */
:root {
    --la-orange: #FAA940;
    --la-orange-d: #f89310;
    --la-rose: #FF006B;
    --la-rose-d: #dc0b63;
    --la-rouge: #da0a0e;
    --la-rouge-d: #971012;
    --la-mauve: #d00bf4;
    --la-mauve-d: #9f07bb;
    --la-jaune: #fef00e;
    --la-jaune-d: #d6cc25;

    /* Dégradés d'ambiance */
    --grad-rose-orange: linear-gradient(135deg, var(--la-rose), var(--la-orange-d));
    --grad-mauve-rose: linear-gradient(135deg, var(--la-mauve), var(--la-rose-d));
    --grad-rouge-orange: linear-gradient(135deg, var(--la-rouge), var(--la-orange));
    --grad-jaune-orange: linear-gradient(135deg, var(--la-jaune), var(--la-orange-d));
}

/* --- RECHERCHE TEXTUELLE DANS LA SIDEBAR --- */
.la-sidebar-search {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.la-sidebar-search:focus-within {
    border-color: var(--la-orange);
    box-shadow: 0 0 15px rgba(248, 147, 16, 0.3);
}

.la-sidebar-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    font-size: 0.9rem;
}

.la-sidebar-search button {
    background: var(--grad-rose-orange);
    border: none;
    width: 45px;
    height: 100%;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: filter 0.3s ease;
}

.la-sidebar-search button:hover {
    filter: brightness(1.2);
}

/* --- BOUTONS DE TRI (ENGAGEMENT) AVEC DÉGRADÉS --- */
.la-engagement-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.la-sort-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.la-sort-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.la-sort-btn[data-active="true"] {
    background: var(--grad-mauve-rose);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(208, 11, 244, 0.3);
}

/* --- WIDGET ARTICLES POPULAIRES --- */
.la-top-posts {
    list-style: none;
    padding: 0;
}

.la-top-posts li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.la-top-posts li:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0;}

.top-num {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 25px;
    text-align: center;
}

/* Dégradés spécifiques pour le top 4 */
.num-gradient-1 { background-image: var(--grad-jaune-orange); }
.num-gradient-2 { background-image: var(--grad-rose-orange); }
.num-gradient-3 { background-image: var(--grad-mauve-rose); }
.num-gradient-4 { background-image: var(--grad-rouge-orange); }

.la-top-posts a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.la-top-posts a:hover { 
    color: var(--la-orange); 
    transform: translateX(5px);
    display: inline-block;
}

/* --- NUAGE DE MOTS-CLÉS (Survol dynamique) --- */
.la-cloud-tag:hover { 
    border-color: var(--la-mauve); 
    color: #fff; 
    background: var(--grad-mauve-rose); 
    box-shadow: 0 5px 15px rgba(208, 11, 244, 0.3);
}

/* --- PAGINATION STYLISÉE --- */
.la-pagination-modern { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 8px; 
    margin-top: 40px; 
}

.la-page-btn {
    width: 42px; 
    height: 42px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px; 
    color: #fff; 
    font-size: 1rem;
    font-weight: 800; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.la-page-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.la-page-btn.active { 
    background: var(--grad-rose-orange); 
    color: #000; 
    border: none; 
    box-shadow: 0 8px 25px rgba(255, 0, 107, 0.4);
    transform: scale(1.1);
}

.la-page-dots { 
    color: rgba(255, 255, 255, 0.5); 
    font-weight: 800; 
    padding: 0 5px; 
    letter-spacing: 2px;
}

/* ==========================================================================
   AJOUTS : ANNÉE DANS LA DATE & GRILLE
========================================================================== */

.la-row-date { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-top: 2px solid rgba(255,255,255,0.1); 
    padding-top: 10px; 
}
.la-month { font-size: 0.75rem; font-weight: 800; opacity: 0.6; }
.la-day { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; margin: 2px 0; }
.la-year { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.4); }

/* Ajustement Date pour le Mode Grille */
.la-articles-feed.grid-mode .la-row-date {
    flex-direction: row; 
    gap: 6px; 
    border: none; 
    padding: 0; 
    margin-bottom: 10px; 
    align-items: baseline;
}
.la-articles-feed.grid-mode .la-day { font-size: 1.4rem; }
.la-articles-feed.grid-mode .la-month,
.la-articles-feed.grid-mode .la-year { font-size: 0.75rem; }


/* ==========================================================================
   BARRE DE RECHERCHE "PILULE" (Inspiré de l'Explore Section)
========================================================================== */

.la-sidebar-search-pill {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Forme Pilule */
    padding: 6px 6px 6px 20px;
    transition: all 0.3s ease;
}

.la-sidebar-search-pill:focus-within {
    border-color: var(--la-orange);
    box-shadow: 0 0 20px rgba(250, 169, 64, 0.2);
    transform: translateY(-2px);
}

.la-sidebar-input-pill {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.la-sidebar-input-pill::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.la-sidebar-btn-circle {
    background: var(--grad-rose-orange);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%; /* Forme Cercle */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
}

.la-sidebar-btn-circle:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}


/* ==========================================================================
   LABELS EN DÉGRADÉ ORANGE (Dans Filtrer & Trier)
========================================================================== */

.la-filter-field label {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    
    /* Le fameux dégradé Orange demandé */
    background: linear-gradient(135deg, var(--la-orange), var(--la-orange-d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    display: inline-block; /* Requis pour que le clip text fonctionne bien */
}

/* ==========================================================================
   DESIGN NUAGE DE MOTS-CLÉS (Stylisé organique)
========================================================================== */

.la-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    /* Augmentation de l'espace pour accueillir les "poufs" des nuages */
    gap: 15px 12px;
    padding: 10px 5px;
}

/* BASE DU NUAGE - Forme de pilule irrégulière */
.la-cloud-tag {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    /* Padding généreux pour le texte */
    padding: 8px 22px;
    
    /* Création de coins irréguliers pour le look organique/nuage */
    border-radius: 60% 40% 60% 40% / 60% 60% 40% 40%;
    
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1.2;
    z-index: 1; /* Pour que le texte reste au-dessus des poufs */
}

/* "POUFS" DU NUAGE (Pseudo-éléments) */
.la-cloud-tag::after,
.la-cloud-tag::before {
    content: '';
    position: absolute;
    /* Héritage des couleurs de fond et bordures définies ci-dessous */
    background: inherit;
    border: inherit;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1; /* Placé derrière le texte */
}

/* Positionnement et taille des poufs */
.la-cloud-tag::after {
    width: 1em; height: 1em; /* Proportionnel à la taille du texte */
    top: -0.5em; left: 15%;
}

.la-cloud-tag::before {
    width: 0.8em; height: 0.8em;
    top: -0.3em; right: 20%;
}

/* INTÉGRATION DES COULEURS EXISTANTES & FINES BORDURES */

.tag-weight-1 {
    background: rgba(255, 255, 255, 0.04);
    /* Fine bordure de séparation demandée */
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    opacity: 0.6;
}

.tag-weight-2 {
    background: rgba(255, 255, 255, 0.12);
    /* Fine bordure de séparation demandée */
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.tag-weight-3 {
    background: rgba(255, 255, 255, 0.25);
    /* Fine bordure de séparation demandée */
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

/* INTERACTION AU SURVOL - L'ambiance Mauve/Rose existante */
.la-cloud-tag:hover {
    /* Grad mauve rose déjà défini dans ton :root */
    background: var(--grad-mauve-rose) !important;
    color: #fff !important;
    
    transform: translateY(-3px) scale(1.02);
    opacity: 1 !important;
    
    /* On cache la fine bordure au survol au profit de l'ombre glow */
    border-color: transparent !important;
    box-shadow: 0 10px 25px rgba(208, 11, 244, 0.4);
}

/* ==========================================================================
   GRILLE 2 COLONNES POUR LES CATÉGORIES (Section Explore)
========================================================================== */

.category-cards-row.compact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force exactement 2 colonnes de largeur égale */
    gap: 20px; /* Espace harmonieux entre les cartes */
    width: 100%;
}

/* Ajustement de la carte pour qu'elle remplisse bien sa colonne */
.cat-vertical-card {
    width: 100%; /* S'adapte à la largeur de la colonne (50% de l'espace moins le gap) */
    height: 260px; /* Hauteur légèrement réduite pour un rendu optimal en 2x2 */
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESPONSIVE (Mobiles)
========================================================================== */
@media (max-width: 768px) {
    .category-cards-row.compact-row {
        grid-template-columns: 1fr; /* Passe à 1 seule colonne sur téléphone */
    }
    
    .cat-vertical-card {
        height: 220px; /* Hauteur ajustée pour mobile */
    }
}

/* ==========================================================================
   8. SECTION EXPLORE & ARTICLES
   ========================================================================== */
.explore-section.with-hero-bg {
    position: relative;
    padding: 100px 50px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: 
        linear-gradient(to right, rgba(15, 17, 23, 0.95) 0%, rgba(15, 17, 23, 0.7) 45%, rgba(15, 17, 23, 0) 100%),
        url('../img/background_japon.png'); 
    background-size: cover;
    
    /* C'est ici que la magie opère : on part de la droite (100%) et on pousse de 10vw vers la droite */
    background-position: calc(100% + 20vw) center; 
    
    background-repeat: no-repeat;
    z-index: 2;
}

/* ==========================================================================
   NOUVEAU DESIGN : BADGES (Catégorie + Meta)
========================================================================== */
.la-badges-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.la-meta-badge {
    background: rgba(255, 255, 255, 0.15); /* Fond subtil semi-transparent */
    color: #e2e2e2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* On supprime l'ancien style de .la-meta s'il trainait */
.la-meta { display: none; }

/* Ajustement du titre pour qu'il ait un espacement propre avec les badges */
.la-latest-content h4 {
    margin-top: 5px;
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #fff; 
    line-height: 1.3;
}


/* ==========================================================================
   SYSTÈME DE CARROUSEL VERTICAL (Derniers Articles)
========================================================================== */
.la-latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.la-carousel-controls {
    display: flex;
    gap: 8px;
}

.la-carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.la-carousel-btn:hover:not(:disabled) {
    background: var(--la-orange);
    border-color: var(--la-orange);
    transform: translateY(-2px);
}

.la-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.la-latest-carousel {
    overflow: hidden;
    position: relative;
    /* Masque progressif en bas pour indiquer qu'il y a d'autres articles */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.la-latest-list {
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.la-featured {
    display: flex;
    flex-direction: column;
    padding: 20px; /* Espace intérieur pour la carte */
    gap: 20px;     /* Espace entre l'image et le texte */
    min-height: auto; /* Supprime l'ancienne hauteur fixe de 440px */
}

.la-featured-img-wrap {
    width: 100%;
    height: 320px; /* Hauteur fixe pour l'image vedette */
    border-radius: 12px;
    overflow: hidden;
}

.la-featured-content {
    display: flex;
    flex-direction: column;
    text-align: left; /* Aligne tout le contenu à gauche */
}

.la-featured-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
    line-height: 1.3;
}

.la-featured-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7); /* Texte légèrement grisé pour la lecture */
    line-height: 1.6;
    margin: 0;
}

/* Retire l'ancienne classe overlay si elle traine dans ton code */
.la-featured-overlay { display: none; }

/* ==========================================================================
   NOUVEAU DESIGN : MOTS-CLÉS (Grille colorée alternée)
========================================================================== */

.la-tag-list {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;
}

.la-keyword-btn {
    /* Style de base épuré */
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 18px;
    border-radius: 8px; /* Coins légèrement arrondis au lieu de la pilule */
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Marge à droite et en bas demandée */
    margin-right: 12px;
    margin-bottom: 12px;
}

/* --- Alternance des couleurs (1 sur 2) --- */

/* Mots-clés Impairs : Thème Rose */
.la-keyword-btn:nth-child(odd) {
    background: rgba(255, 0, 107, 0.1); /* Fond rose très léger */
    border: 1px solid rgba(255, 0, 107, 0.4);
}

/* Mots-clés Pairs : Thème Orange */
.la-keyword-btn:nth-child(even) {
    background: rgba(250, 169, 64, 0.1); /* Fond orange très léger */
    border: 1px solid rgba(250, 169, 64, 0.4);
}

/* --- Effets au survol et statut "Actif" (sélectionné) --- */

.la-keyword-btn:hover,
.la-keyword-btn.active {
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
}

.la-keyword-btn:nth-child(odd):hover,
.la-keyword-btn:nth-child(odd).active {
    background: var(--grad-mauve-rose); /* Dégradé issu de ta racine CSS */
    box-shadow: 0 5px 15px rgba(208, 11, 244, 0.3);
}

.la-keyword-btn:nth-child(even):hover,
.la-keyword-btn:nth-child(even).active {
    background: var(--grad-jaune-orange); /* Dégradé issu de ta racine CSS */
    box-shadow: 0 5px 15px rgba(250, 169, 64, 0.3);
}

/* Garde le point de focus sur le haut de l'image à la une pour éviter qu'elle soit coupée */
.la-featured-img-wrap .la-img-cover {
    object-position: top center;
}

.la-featured-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0 0 0; /* 10px en haut, 0 ailleurs */
    line-height: 1.3;
}

.la-featured-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 5px 0 0 0; /* 5px en haut, 0 ailleurs */
}

/* Bouton d'appel à l'action pleine largeur */
.la-featured-btn-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    background: var(--grad-rose-orange); /* Utilise ton dégradé global */
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.la-featured-btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 107, 0.3);
    color: #fff;
}