.news-section {
    padding: 20px 0;
}

.news-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff 0%, #c1d1e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: rgba(31, 165, 253, 0.1);
    border-radius: 12px;
    color: #8b9bb4;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    color: #fff;
    transform: translateY(-2px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.news-card {
    background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(31, 165, 253, 0.1);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 165, 253, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.news-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 16, 26, 0) 0%, rgba(9, 16, 26, 0.9) 100%);
}

.news-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(31, 165, 253, 0.9);
    border-radius: 8px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

.news-card-card-content {
    padding: 24px;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-excerpt {
    color: #8b9bb4;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card-excerpt .rich-text {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.news-card-excerpt .rich-text p {
    margin: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-tabs {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 30px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .news-grid {
        gap: 20px;
    }
}
