.news_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.news {
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    margin-bottom: 3%;
    width: 100%;
    gap: 20px;
}

.left {
    width: 25%;

}

.preview {
    max-width: 290px;
    max-height: 290px;
    overflow: hidden;
    height: 290px;
}

.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right {
    width: 75%;
    position: relative;
}

.date {
    position: absolute;
    right: 20px;
    bottom: 5px;
    color: #868686;
}

.title {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.25;
    padding-top: 20px;
}

.description {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.25;


}

.more {
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #00A928;
    opacity: 0.8;
    margin-top: 20px;
    cursor: pointer;
    z-index: 32;
    position: relative;
}

.more a {
    color: #FFFFFF;
    display: block;
    text-decoration: none;
}

.more:hover a {
    color: #FFFFFF;
}

@media screen and (max-width: 1400px) {
    .right {
        width: 73%;
        padding-bottom: 5px;
    }
}

@media screen and (max-width: 1200px) {
    .preview {
        height: 245px;
    }
}

@media screen and (max-width: 992px) {
    .preview {
        height: 23vw;
    }
}

@media screen and (max-width: 640px) {
    .news {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .left {
        width: 100%;
    }

    .preview {
        max-width: 100%;
        width: 100%;
        height: 90vw;
        max-height: unset;
    }

    .news .left {
        width: 100%;
        margin-bottom: 15px;
    }

    .news .date {
        position: static;
    }

    .news .more {
        margin: 0 auto 25px;
    }

    .news .right {
        width: 100%;
        padding: 0 20px;
    }
}


