.bloc-actualites {
    background-color: #fff;
    color: #000;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.bloc-actualites h2 {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.25rem;
    padding-left: 25px;
    margin-bottom: 0;
}
.bloc-actualites h2:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #000;
    left: 0;
    top: 2px;
}
@media screen and (min-width: 991px) {
    .bloc-actualites {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}
.post-card {
    display: flex;
    flex-direction: column;
    background-color: #F0F1F2;
    height: 100%;
    border-radius: 20px 0 20px 20px;
    color: #000;
}
.post-card:hover  {
    color: #000;
}
.post-card .image {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.post-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card .content {
    padding: 20px;
}
.post-card .content .categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.post-card .content .categories span {
    border: 1px solid #000;
    border-radius: 25px;
    padding: 3px 15px;
    width: fit-content;
}
.post-card .content .title {
    font-size: 1.125rem;
}