.articles-semaine-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 16px;
}

.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.4em 0;
    padding-bottom: 0.6em;
    border-bottom: 2px solid #e5e5e5;
    line-height: 1.25;
}

/* Liste verticale */
.articles-list {
    display: flex;
    flex-direction: column;
}

.article-item {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
}

.article-title {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.38;
    flex: 1 1 auto;
    font-size: 1.08rem;
}

.article-title:hover,
.article-title:focus {
    text-decoration: underline;
    color: #0066cc;
}

.article-date {
    font-size: 0.94rem;
    color: #606060;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Trait de séparation gris fin */
.article-separator {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 0;
    height: 1px;
}

/* Message quand aucun article */
.no-articles {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #666;
    font-style: italic;
    font-size: 1.05rem;
}

/* ────────────────────────────────────────────────
   Responsive
──────────────────────────────────────────────── */
@media (max-width: 680px) {
    .article-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .article-date {
        font-size: 0.92rem;
        color: #707070;
    }

    .section-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 480px) {
    .articles-semaine-container {
        padding: 16px 12px;
    }

    .article-title {
        font-size: 1.04rem;
    }
}