#news {
    overflow-x: hidden;
    overflow-y: auto;
    width: 307px; /* doit être de 307px pour que les images des news fassent 300px */
}

#news::-webkit-scrollbar {
    width: 5px;
}
#news:hover::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px #B71C1C;
}
#news:hover::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px #B71C1C;
}

.news_block {
    /* background-color: black !important; */
    border: 1px solid #ccc;
    border-top: 0;
    display: flex;
}

.news_block a {
    margin-bottom: 30px;
    text-decoration: none;
}

.news_block:nth-child(-n + 1) {
    border-top: 1px solid #ccc;
}

.news_image {
    width: 300px;
    height: 168.75px; /* 16/9 */
    object-fit: cover;
}

.news_date_container {
    height: 40px;
    display: flex;
    align-items: center;
}

.news_date {
    color: #a2a2a2;
    font-size: .9375rem;
    line-height: .875rem;
    margin-left: 5px;
}

.news_title {
    /* color: #fee131; */
    font-size: 1.5rem;
    line-height: 108%;
    margin-left: 5px;
}

@media (min-width: 1300px) {
    #news {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 5px;
        width: 614px; /* doit être de 614px pour que les images des news fassent 300px */
    }
    
    .news_block:nth-child(-n + 2) {
        border-top: 1px solid #ccc;
    }
}