.news-section {
    background: #f4f4f4;
    padding: 100px 0;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #f04e30;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 24px;
}

.news-card h3 {
    font-size: 22px;
    color: #f04e30;
    margin-bottom: 14px;
    line-height: 1.4;
}

.news-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #2c3e50;
}

.news-cta {
    text-align: center;
    margin-top: 70px;
}

.news-cta .btn-primary {
    display: inline-block;
    background: #ED5437;
    color: #fff;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.news-cta .btn-primary:hover {
    background: #616161;
    transform: translateY(-2px);
}

.news-cta .btn-primary {
    padding: 18px 40px;
    font-size: 16px;
}

.news-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* ================= NEWS ANIMATION ================= */

.news-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.news-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.news-card:nth-child(1) { transition-delay: 0.1s; }
.news-card:nth-child(2) { transition-delay: 0.2s; }
.news-card:nth-child(3) { transition-delay: 0.3s; }

.news-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    transition-delay: 0.4s;
}

.news.loaded .news-title,
.news.loaded .news-card,
.news.loaded .news-cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 36px;
    }

    .news-card img {
        height: 200px;
    }
}