.news-list {
    display: block;
    padding: 2rem;
    margin: -2rem;
    overflow: hidden;
}

.news-item-wrap {
    padding: 15px;
    width: 33%;
    /*calc(33%-30px);*/
    float: left;
}

@media (max-width: 1100px) {
    .news-item-wrap {
        width: 50%;
    }
}

@media (max-width: 700px) {
    .news-item-wrap {
        width: 100%;
    }
}

.news-first-big .news-item-wrap:first-child {
    width: 100%;
}

.news-item {
    display: block;
    padding: 60% 0 0;
    font-size: medium;

    overflow: hidden;
    position: relative;
    borger-radius: 5px;
    height: 320px;

    box-shadow: 0 0.15rem 0.75rem 0 rgba(26, 126, 172, 0.15);
    transition: all 0.3s;
    borger: 1px solid white;
}

.news-item:hover {
    margin: -5px 0 5px;
}

/* .news-item-wrap:first-child .news-item{
    height: 320px;
} */

.news-item-wrap .news-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 40%;
    right: 0;
    background-size: cover;
    background-position: center center;
}


.news-first-big .news-item-wrap:first-child .news-item {
    display: block;
    padding: 0 0 0 40%;
    overflow: hidden;
    position: relative;
    borger-radius: 5px;
    height: 320px;
    font-size: larger;

}

.news-first-big .news-item-wrap:first-child .news-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 60%;
    background-size: cover;
    background-position: center center;
}

.news-descr {
    position: absolute;
    top: 60%;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
    /* var(--bs-gray-600);     */
    text-align: left;
    padding: 15px;
}

.news-first-big .news-item-wrap:first-child .news-descr {
    position: static;
}


.news-descr h3 {
    color: white;
    /* color: var(--bs-gray-900);     */
    font-size: x-large;
}

.news-descr p {
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}