/* Style pour la zone Hero */
.hero-container {
    display: flex;
    align-items: start; 
    padding: 100px 0; /* Espace haut/bas */
    color: #ffffff; 

 /*   background-size: cover;
   background-position: center;
    background-repeat: no-repeat;*/
    min-height: 400px;
}

.hero-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Ombre pour lire sur l'image */
}

.hero-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px; /* Évite que le texte soit trop large */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Style du bouton s'il n'est pas géré par le template */
.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff; /* Couleur du bouton (bleu à adapter) */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-hero:hover {
    background-color: #0056b3; /* Couleur au survol */
}

/* --- LE CORRECTIF PRIORITAIRE AVEC LE STYLE DE MODULE ENCLENCHÉ --- */

/* 1. Ciblage ultra-précis de l'élément de liste (la future carte) */
.sp-module.pbtv-home-hub ul.mod-articles-grid li .mod-articles-item {
    background: #ffffff !important;
    border: 1px solid #eef2f5 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 25px !important;
    overflow: hidden !important;
}

/* 2. Effet au survol de la carte */
.sp-module.pbtv-home-hub ul.mod-articles-grid li .mod-articles-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

/* 3. Espacement interne pour le contenu textuel */
.sp-module.pbtv-home-hub .mod-articles-item-content {
    padding: 25px !important;
}

/* 4. Style du titre */
.sp-module.pbtv-home-hub .mod-articles-title {
    margin: 0 0 12px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}
.sp-module.pbtv-home-hub  h2 {
    font-size: 1rem !important;
    font-weight:400;
}
.sp-module.pbtv-home-hub .mod-articles-link {
    color: #111111 !important;
    text-decoration: none !important;
}

.sp-module.pbtv-home-hub .mod-articles-link:hover {
    color: #A90002 !important;
}