.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.short-news-container {
    background: white;
    border-radius: 10px;
    margin-bottom: 50px;
    width: 30%;
    box-shadow: 0 0 20px 4px #0000002e;
    border: 4px solid var(--c-yellow);
    transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.short-news-container:hover {
    box-shadow: 0 0 20px 0px #0000008b;
}
.short-news-container:nth-child(2n):hover {
    transform: rotate3d(1, 1, 1, -6deg);
}
.short-news-container:nth-child(2n - 1):hover {
    transform: rotate3d(1, 1, 1, 6deg);
}

.short-news-image-container {
    width: 100%;
    height: 200px;
}
.short-news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0px 0px;
}
.short-news-text-container {
    padding: 20px;
}
.short-news-text-header {
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.short-news-text-description {
    margin-bottom: 10px;
    font-size: 1.2rem;
    height: 240px;
    overflow: hidden;
}
.short-news-text-description::after {
    content: "...";
    position: absolute;
    z-index: 5;
}

.empty-page {
    font-size: 1.5rem;
}


/* MOBILE */
@media screen and (max-width: 1200px) {
    .short-news-container{
        width: 45%;
    }
}

@media screen and (max-width: 800px) {
    .short-news-container{
        width: 100%;
    }
}