.news {
    margin-bottom: 100px;
}
.news_card {
    display: block;
    margin-bottom: var(--spacing-2xl);
}

.news_card .news_thumb {
    overflow: hidden;
    border-radius: 20px;
}
.news_card .news_thumb img {
    transition: 0.5s;
}
.news_card:hover .news_thumb img {
    transform: scale(1.2);
}
.news_card h3 {
    font-weight: 700;
    margin: var(--spacing-sm) 0;
    transition: 0.5s;
    text-transform: uppercase;
}
.news_card p {
    color: var(--color-text-body-1);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news_card .news_date {
    color: #888888;
}
.news_card:hover h3 {
    color: var(--color-primary);
}

.news-button {
    text-align: center;
    margin-top: var(--spacing-2xl);
}
.news-button button {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-stroke-blue);
    background: var(--color-surface-button-secondary-ghost);
    color: var(--color-primary);
    font-weight: 700;
    padding: 10px 20px;
}
.news-button button i {
    margin-left: 8px;
}
@media (min-width: 992px) {
    .news-list {
        margin-top: var(--spacing-3xl);
    }
    .news_card.small_card {
        display: flex;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    .news_card.small_card .news_thumb {
        width: 35%;
    }
    .news_card.small_card .news_content {
        width: 65%;
    }
}
@media (max-width: 991px) {
    .news {
        margin-bottom: 40px;
    }
    .news-button {
        margin-top: var(--spacing-lg);
    }
}
