
.news_grid {
    padding: 40px 0;
}

.news_grid--head_title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #181D27;
    margin-bottom: 24px;
}

.news_grid--body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
}

.news_grid--body_main-title, .news_grid--list_item-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #181D27;
    margin-bottom: 12px;
}

.news_grid--body_main-text, .news_grid--list_item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #181D27;
}

.news_grid--list_item-text {
    max-width: 428px;
}

.news_grid--body_main-img {
    max-width: 690px;
    margin-bottom: 19px;
}

.news_grid--body_main-img img, .news_grid--list_item-img img {
    width: 100%;
    border-radius: 20px;
}

.news_grid--list_item {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}

.news_grid--list_item-img {
    max-width: 242px;
    height: 164px;
    width: 100%;
}

.news_grid--list_item-img img {
    height: 100%;
    object-fit: cover;
}

.news_grid--list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
}

.news_grid--list_item-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid #FF8800;
    border-radius: 10px;
    color: #FF8800;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.news_grid--list_item-btn:hover {
    color: #FF8800;
}

@media screen and (max-width: 1024px) {
    .news_grid--list_item {
        column-gap: 20px;
    }
    .news_grid--list_item-img {
        max-width: 128px;
        height: 87px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .news_grid--body {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 20px;
    }
    .news_grid--list_item-img {
        max-width: 207px;
        height: 142px;
        width: 100%;
    }

    .news_grid--body_main-text, .news_grid--list_item-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        color: #181D27;
    }
    .news_grid--body_main-title, .news_grid--list_item-title {
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 560px) {
    .news_grid {
        padding: 20px 0;
    }

    .news_grid--list_item {
        display: none;
    }
}