﻿/* ================= NEWS ================= */
.news-section {
    padding: 130px 0;
    background: var(--light);
}

    .news-section .section-title .highlight {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.newsSwiper {
    padding: 10px 5px 60px;
}

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10,14,39,.04);
}

    .news-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
    }

.news-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .8s var(--ease);
    }

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
}

.news-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-weight: 800;
    font-size: 20px;
    min-height: 56px;
    line-height: 1.6;
}

.news-summary {
    color: var(--gray);
    line-height: 1.9;
    margin: 14px 0 22px;
    flex-grow: 1;
    font-size: 14.5px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .news-link:hover {
        color: var(--accent);
        gap: 12px;
    }

.news-empty {
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.news-empty-icon {
    font-size: 48px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.newsSwiper .news-next,
.newsSwiper .news-prev {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--primary);
}

    .newsSwiper .news-next::after,
    .newsSwiper .news-prev::after {
        font-size: 18px;
        font-weight: 900;
    }
