/* Latest News Block */
.latest-news-block {
    padding: 60px 0;
    background: #f8f9fa;
}

.latest-news-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 200px;
}

.latest-news-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e428b;
    text-align: left;
}

.latest-news-content {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    height: 240px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date,
.news-category {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i,
.news-category i {
    color: #0195c8;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: #1e428b;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #0195c8;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1e428b;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: #163370;
    gap: 12px;
}

.btn-read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1400px) {
    .latest-news-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px) {
    .latest-news-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .latest-news-title {
        font-size: 28px;
    }
    
    .latest-news-content {
        font-size: 16px;
    }
    
    .news-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .latest-news-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .latest-news-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-news-block {
        padding: 40px 0;
    }
    
    .latest-news-title {
        font-size: 24px;
    }
    
    .news-image {
        height: 220px;
    }
}
