.backVeille {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url("/img/imgVeille/bgVeillePc.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.veille-container {
    width: 60%;
    margin: 50px 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.24);
    background: rgb(240, 240, 240);
}

.veille-container h1 {
    text-align: center;
    margin: 10px auto;
}

.veille-container h2,
.veille-container h3 {
    text-align: center;
    margin: 0 auto;
}

.veilleP-box {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.detailsBoxVeille {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
    align-items: center;
    padding: 20px;
    gap: 10px;
    text-align: center;
}

.veilleP-box p {
    padding: 0 15px;
}

.bandeauVeille {
    margin: 10px auto;
    width: 100%;
}

/* FLUX RSS */
.actus-section {
    margin-top: 60px;
    padding: 30px;
}

.actus-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #222;
}

.actus-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.actus-bloc {
    width: 45%;
    background: rgb(250, 250, 250);
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
}

.actus-bloc h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    color: #1c1c1c;
}

.article {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
}

.article:last-child {
    border-bottom: none;
}

.article h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #222;
}

.article p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.article a {
    font-size: 14px;
    color: #1c4e80;
    text-decoration: none;
}

.article a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 576px) {
    .txt-veille {
        font-size: 12px;
    }

    .veille-container {
        width: 80%;
    }

    .veilleP-box {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .veilleP-box p {
        padding: 0;
    }

    .detailsBoxVeille {
        display: flex;
        flex-direction: column;
    }

    /* FLUX RSS */
    .actus-container {
        flex-direction: column;
    }

    .actus-bloc {
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .veilleP-box {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .veilleP-box p {
        padding: 0;
    }
}