section{
    height: fit-content;
}
.editForm{
    margin-top: 50px;
}
.newsSection{
    width: 100%;
    overflow: scroll;
    display: inline-flex;
}
.newsList{
    text-align: center;
}
.news{
    width: fit-content;
    margin: 10px;
    display: inline-flex;
    vertical-align: top;
    box-shadow: 10px 5px 5px rgb(230, 230, 230);
}
.card{
    position: relative;
    min-height: 100px;
    display: inline-flex;
    vertical-align: middle;
    margin: 10px;
    text-align: center;
}
.card .edit{
    position: absolute;
    top: 0;
    right: 0;
}
.card .edit svg{
    height: 20px;
    color: gray;
}
.card .newsOptions{
    display: block;
}
.card .title{
    text-align: left;
    font-weight: bold;
    color: black;
}
.card .categorie{
    text-align: left;
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 5px;
    color: gray;
}
.card .text{
    width: 300px;
    min-height: 100px;
    text-align: justify;
    color: black;
}
.card .date{
    text-align: left;
    margin-top: 10px;
    color: grey;
    font-size: 12px;
}
.card .link{
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 18px;
}
.card .link a{
    color: black;
    padding: 0px;
}
.card .link a:hover{
    opacity: 60%;
}
.icon svg{
    height: 100px;
    color: lightgray;
    margin: 50px;
}
@media screen and (max-width: 590px) {
    .news{
    width: 330px;
}
.card{
    display: inline-block;
}
}