#news-list-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 30px;
    margin-bottom: 20vh;
}

#news-page-box p {
    word-wrap: break-word;
}

#news-category-title {
    margin-left: 30px;
}

/* .grid-item { */
/* background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8); */
/* padding: 20px;
    font-size: 30px;
    text-align: center;
    padding: 30px; */
/* } */

#news-list-container .news-image-box {
    width: 100%;
    aspect-ratio: 16 / 9;
}

#news-list-container img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* For tablets */
@media (max-width: 990px) {
    #news-list-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    #news-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
}