/* Conteneur principal */
.ln-feed-section {
    font-family: 'Arial Narrow', sans-serif;
    padding: 20px 0;
}

.ln-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 colonnes par défaut */
    gap: 20px;
}

.ln-card {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* En-tête de la carte (Date + Titre) */
.ln-header {
    margin-bottom: 15px;
    flex-grow: 1;
}

.ln-date {
    display: block;
    font-size: 20px;
    color: #888;
    margin-bottom: 5px;
}

.ln-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    text-transform: none;
}

/* Image */
.ln-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

.ln-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ln-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ln-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablette : 2 colonnes */
}

@media (max-width: 600px) {
    .ln-feed-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile : 1 colonne */
    .ln-title, .ln-date {
        font-size: 22px;
    }
}