/* style.css v2.5 */
.synexta-newsletter-archive {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: sans-serif;
}

/* Le lien qui englobe toute la carte */
.nl-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.nl-card-link:hover {
    transform: translateY(-3px);
}

.nl-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    background-color: #fff;
    align-items: stretch;
    width: 100%;
    border-radius: 5px; /* Appliqué ici pour être visible sous le lien */
}

.nl-featured-image {
    flex: 0 0 180px;
    position: relative;
    min-height: 150px; /* Hauteur minimale pour les cartes sans beaucoup de texte */
}

.nl-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.nl-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mailpoet-title { 
    margin: 0 0 5px 0; 
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}

/* Le titre n'a plus besoin de style de lien au survol */
.synexta-newsletter-archive a,
.synexta-newsletter-archive a:hover,
.synexta-newsletter-archive a:active {
  text-decoration: none !important;
}



.mailpoet-date { margin: 0 0 15px 0; font-size: 0.9em; color: #777; font-style: italic; }
.mailpoet-preheader { margin: 0 0 15px 0; color: #555; }

/* Le bouton est maintenant un span, mais garde son apparence */
.nl-read-more { 
    margin-top: auto; /* Pousse le bouton vers le bas */
    display: inline-block; 
    padding: 8px 15px; 
    background-color: #00A3AD; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 4px; 
    font-weight: bold; 
    transition: background-color 0.3s ease; 
    align-self: flex-start; 
}

@media (max-width: 600px) {
    .nl-item {
        flex-direction: column;
    }
    .nl-featured-image {
        width: 100%;
        height: 100px;
        flex-basis: auto;
        margin-bottom: 15px;
        position: relative;
    }
}