/* Styles pour le bandeau d'en-tête "NEWS 24/7" */
.latest-posts-ladepeche-header-banner {
    background: #1838BD;
    color: white;
    padding: 15px;
    font-size: 20px;
    width: 120px; /* Coins arrondis optionnels */
}

.latest-posts-ladepeche-widget-container {
    /* Styles pour le conteneur principal du widget */
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
}

.latest-posts-ladepeche-article {
    /* Styles pour chaque article */
    margin-bottom: 10px;
    padding-bottom: 00px;
    border-bottom: 1px dotted #ccc;
}

.latest-posts-ladepeche-article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.latest-posts-ladepeche-article-image {
    /* Styles pour l'image à la une */
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    max-width: 150px; /* Ajustez selon vos besoins */
    height: auto;
}

.latest-posts-ladepeche-article-image img {
    display: block;
    height: auto;
    border-radius: 10px;
    max-width: 115px;
}

.latest-posts-ladepeche-article-image.latest-posts-ladepeche-no-image {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    text-align: center;
    line-height: 100px;
    color: #888;
    font-size: 12px;
}

/* Styles pour la date de l'article */
.latest-posts-ladepeche-article-date {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 5px; /* Espace entre la date et le titre */
    text-align: left; /* Ou center, right selon vos préférences */
}

.latest-posts-ladepeche-article-title {
    /* Styles pour le titre de l'article */
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700; /* Ajout d'un peu d'espace sous le titre */
}

.latest-posts-ladepeche-article-title a {
    text-decoration: none;
    color: #333;
}

.latest-posts-ladepeche-article-title a:hover {
    color: #1838BD;
}

/* Nouveau conteneur pour l'image et la description */
.latest-posts-ladepeche-content-wrapper {
    display: flex; /* Utilisation de flexbox pour aligner les éléments */
    align-items: flex-start; /* Aligner les éléments en haut */
}

.latest-posts-ladepeche-article-image {
    /* Styles pour l'image à la une */
    flex-shrink: 0; /* Empêche l'image de rétrécir */
    margin-right: 15px;
    margin-bottom: 0; /* Supprimé car géré par le wrapper ou l'article */
    max-width: 150px; /* Ajustez selon vos besoins */
    height: auto;
    /* float: left; /* Supprimé car flexbox est utilisé */
}

.latest-posts-ladepeche-article-image.latest-posts-ladepeche-no-image {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    text-align: center;
    line-height: 100px;
    color: #888;
    font-size: 12px;
}

.latest-posts-ladepeche-article-description {
    /* Styles pour la description de l'article */
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    /* clear: both; /* Supprimé car flexbox est utilisé */
    flex-grow: 1; /* Permet à la description de prendre l'espace restant */
}

/* Clearfix pour le conteneur d'article si l'image flotte - Peut être ajusté ou supprimé si flexbox gère tout */
.latest-posts-ladepeche-article::after {
    content: "";
    clear: both;
    display: table;
}


.latest-posts-ladepeche-group {
    display: none; /* Caché par défaut */
    opacity: 0; /* Initialement transparent pour l'effet de fondu */
    transition: opacity 0.4s ease-in-out; /* Transition pour l'opacité */
}

.latest-posts-ladepeche-group.active {
    display: block;
    opacity: 1; /* Complètement visible */
}

.latest-posts-ladepeche-navigation {
    text-align: center;
    margin-top: 15px;
}

.latest-posts-ladepeche-navigation .nav-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc; /* Gris clair pour non active */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.latest-posts-ladepeche-navigation .nav-bullet.active {
    background-color: #1838BD; /* Rouge pour active */
}

.latest-posts-ladepeche-navigation .nav-bullet:hover {
    background-color: #1838BD; /* Optionnel: hover différent si besoin */
}

/* Optionnel: si vous voulez des flèches au lieu de points pour prev/next */
/*
.latest-posts-ladepeche-navigation .prev::before {
    content: "<";
    display: block;
    color: white; 
    font-weight: bold;
}
.latest-posts-ladepeche-navigation .next::before {
    content: ">";
    display: block;
    color: white;
    font-weight: bold;
}
*/