#news-block {
    padding: 80px 0px;
}
#news-block .news{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
#news-block .news-item{
    width: calc((100% - 60px) / 3);
    border-radius: 20px;
    background: var(--bg);
    padding: 30px 40px;
    display: flex;
    min-height: 300px;
    justify-content: space-between;
    border: 1px solid var(--bg);
    transition: 0.3s;
}
#news-block .news-item:hover {
    border-color: var(--mainnew);
}
#news-block .news-item.hidden{
    display: none;
}
#news-block .news-item .img{
    display: none;
}
#news-block .news-item .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
#news-block .news-item:first-child {
    width: calc((134% - 30px) / 2);
    padding: 0px;
    overflow: hidden;
}
#news-block .news-item:first-child .left-side {
    width: 48%;
    padding: 30px 30px 30px 40px;
}
#news-block .news-item:first-child .img{
    display: block;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    max-height: 300px;
}
#news-block .news-item .left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
#news-block .name{
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}
#news-block .news-top{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
#news-block .data{
    display: flex;
    gap: 15px;
    align-items: center;
}
#news-block .day{
    font-family: Lato;;
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    transition: 0.3s;
}
#news-block .news-item:hover .day {
    color: var(--mainnew);
}
#news-block .right-side{
    display: flex;
    gap: 5px;
    flex-direction: column;
}
#news-block .month,
#news-block .year{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
#news-block .icon{
    width: 60px;
    height: 60px;
    background-image: url(images/originSvg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s;
}
#news-block .news-item:hover .icon{
    background-image: url(images/hoverSVG.svg);
}
#news-block .btn{
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 996px)  {
    #news-block .news-item {
        width: calc((100% - 30px) / 2);
    }
    #news-block .news-item:first-child {
        width: 100%;
    }
}
@media (max-width: 767px) {
    #news-block .news-item,
    #news-block .news-item:first-child .left-side {
        padding: 15px;
    }
}
@media (max-width: 600px) {
    #news-block  {
        padding: 40px 0px;
    }
    #news-block .news {
        display: flex;
        flex-direction: column;
    }
    #news-block .news-item {
        width: 100%;
        min-height: 170px;
    }
    #news-block .news-item:first-child {
        flex-direction: column;
    }
    #news-block .news-item:first-child .left-side {
        width: 100%;
    }
    #news-block .news-item:first-child .img {
        width: 100%;
    }
}