.news-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 30px;
    gap: 25px;
}

.news-block .header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.news-block .header > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-block .preview-text{
    font-size: 16px;
    line-height: 17px;
}

.news-block .header img {
    width: 100%;
    object-fit: contain;
}

.news-block h1 {
    font-size: 36px;
    margin-bottom: 25px;
}


.news-block .news-detail{
    color: var(--gray4-text-color);
}


@media (max-width: 780px) {
    .news-block .header {
        grid-template-columns: repeat(1, 1fr);
    }
    .news-block {
        padding: 10px;
    }
    .news-block h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .news-block .preview-text{
        font-size: 14px;
        line-height: 16px;
    }
    .news-block .news-detail{
        font-size: 14px;
        line-height: 16px;
    }
}