/* Latest News Section */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

.news-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.news-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.news-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-bottom: 2.5rem;
}

/* Featured News Links */
.news-featured-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.news-featured-link {
    display: block;
    padding-left: 1rem;
    border-left: 4px solid #8B0000;
    text-decoration: none;
    transition: var(--transition);
}

.news-featured-link h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #8B0000;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.news-featured-link:hover h4 {
    color: var(--primary-color);
}

.news-featured-link:hover {
    border-left-color: var(--primary-color);
}

/* News Cards Grid */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.news-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.2rem;
}

.news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}

.news-card-tags span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B0000;
}

.news-card-tags span:not(:last-child)::after {
    content: " / ";
    color: #8B0000;
}

.news-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-content h3 {
    color: var(--primary-color);
}

.news-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-featured-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-cards-grid {
        gap: 2rem;
    }

    .news-card-image {
        width: 180px;
        height: 180px;
    }
}

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

    .news-section .section-title {
        font-size: 2.2rem;
    }

    .news-featured-links {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .news-card {
        flex-direction: row;
    }

    .news-card-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .news-card {
        flex-direction: column;
    }

    .news-card-image {
        width: 100%;
        height: 200px;
    }

    .news-section .section-title {
        font-size: 1.8rem;
    }
}
