.container
{
    position: relative;
    min-height: calc(100vh - 415px);
    /* width: 100%; */
    margin-bottom: 50px;
    padding: 3rem 5rem;
}

.container h1 
{
    margin-top: 100px;
    box-shadow: 0 55px 0 0 var(--vert-bleu);
    height: 8px;
    margin-bottom: 80px;
    width: 220px;
    border-radius: 25px;
}

.container .container-actu
{
    position: relative;
    border: 2px solid black;
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
}

.none
{
    border: none;
}

.none h2
{
    font-size: 2rem;
}

.container .container-actu .actu
{
    border-radius: 25px;
    padding-left: 20px;
    width: 100%;
    cursor: pointer;
}

.container .container-actu .actu:not(:last-child)
{
    margin-bottom: 30px;
}

.container .container-actu .actu:not(:first-child)
{
    margin-top: 30px;
}

.actu:hover
{
    background-color: #3cb2c788;
}

.actu .titre
{
    color: #597967;
}

.actu .description
{
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.trait
{
    height: 5px;
    width: 30%;
    background-color: var(--vert-bleu);
    border-radius: 25px;
}

#filtre
{
    margin-bottom: 20px;
}

#filtre #date
{
    border-radius: 15px;
    height: 25px;
    margin-right: 15px;
    color: black;
}

#filtre .btn-filtre
{
    border: none;
    border-radius: 15px;
    height: 30px;
    padding: 0 15px;
    background-color: rgb(219, 219, 219);
    cursor: pointer;
    color: black;
}

#filtre .btn-filtre:hover
{
    background-color: rgb(201, 201, 201);
}

.select-page
{
    margin-top: 20px;
}

.selector
{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.selector .page
{
    border: 2px solid black;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
}

.selector .page:hover
{
    border: 2px solid var(--vert-bleu);
    background-color: rgb(236, 236, 236);
}

.selector .selected
{
    border: 2px solid var(--vert-bleu);
}

@media only screen and (max-width: 600px){
    .container
    {
        padding: 2rem 2rem;
    }
}