@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ===== CARROUSEL ===== */
.carrousel-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}
.carrousel-titre {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #F23054;
    margin: 0 auto 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F23054;
    max-width: 300px;
}
.carrousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.carrousel-track {
    display: flex;
    transition: transform 0.4s ease;
}
.carrousel-card {
    min-width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.carrousel-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.carrousel-card-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #F23054 0%, #118e88 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
.carrousel-card-body {
    padding: 20px;
}
.carrousel-card-date {
    font-size: 12px;
    color: #118e88;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}
.carrousel-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #595959;
    margin: 0 0 10px;
    line-height: 1.3;
}
.carrousel-card-title a {
    color: #595959;
    text-decoration: none;
    transition: color 0.3s;
}
.carrousel-card-title a:hover {
    color: #F23054;
}
.carrousel-card-chapo {
    font-size: 14px;
    color: #595959;
    line-height: 1.6;
    margin: 0 0 15px;
}
.carrousel-card-link {
    color: #F23054;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.carrousel-card-link:hover {
    border-bottom-color: #F23054;
}

/* ===== NAVIGATION ===== */
.carrousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.carrousel-btn {
    background: white;
    border: 2px solid #F23054;
    color: #F23054;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrousel-btn:hover {
    background: #F23054;
    color: white;
}
.carrousel-dots {
    display: flex;
    gap: 8px;
}
.carrousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s;
}
.carrousel-dot.active {
    background: #F23054;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .carrousel-card-image,
    .carrousel-card-placeholder {
        height: 160px;
    }
    .carrousel-card-title {
        font-size: 16px;
    }
    .carrousel-card-body {
        padding: 15px;
    }
}