/* Latest News Section Styles */
.latest-news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.latest-news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.latest-news-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-news-header h2 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.latest-news-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e9ecef;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: #DAA520;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #DAA520;
}

.news-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-read-more:hover::after {
    transform: translateX(3px);
}

.view-all-news {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-all-btn:hover {
    background: white;
    color: #8B0000;
    border-color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .latest-news-section {
        padding: 60px 0;
    }
    
    .latest-news-header h2 {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .latest-news-content {
        padding: 0 15px;
    }
    
    .latest-news-header h2 {
        font-size: 1.8rem;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
