/* Latest News Section Styles */
.latest-news-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.latest-news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.latest-news-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #005480;
    line-height: 1.2;
}

.latest-news-section .section-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* News Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News Card */
.news-card {
    background: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Featured Image */
.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

/* Post Meta */
.news-meta {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

.news-date {
    display: inline-block;
    margin-right: 15px;
}

.news-category {
    display: inline-block;
    font-weight: 500;
}

.news-category a {
    color: #005480;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-category a:hover {
    color: #C4122F;
}

/* News Content */
.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #005480;
}

.news-excerpt {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.news-read-more {
    margin-top: auto;
    text-align: left;
}

.read-more-btn {
    display: inline-block;
    background-color: #005480;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #003d5e;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-news-section .section-title {
        font-size: 36px;
    }
    
    .latest-news-section .section-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-news-section {
        padding: 60px 0;
    }
    
    .latest-news-section .section-title {
        font-size: 30px;
    }
    
    .latest-news-section .section-subtitle {
        font-size: 18px;
    }
} 