/* ─── Bewed Article Suggestions ─────────────────────────────────────────────── */

.bewed-as {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
}

.bewed-as__title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
}

/* ─── Contrôles (pagination + boutons) ──────────────────────────────────────── */

.bewed-as__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.bewed-as__nav {
    display: flex;
    gap: 0.5rem;
}

.bewed-as__nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: #2751C5;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    padding: 0;
}

.bewed-as__nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ─── Pagination (pill style, identique homepage) ────────────────────────────── */

.bewed-as-swiper-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    --swiper-pagination-color: #2751C5;
}

.bewed-as-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #d1d5db;
    opacity: 1;
    transition: background 0.2s, width 0.2s;
    margin: 0;
}

.bewed-as-swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: #2751C5;
}