.intro-news {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.intro-news h2 {
    color: #002B5B;
    font-size: 32px;
    margin-bottom: 20px;
}
.intro-news p {
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.news-list {
    background: #f5f7fa;
    padding: 60px 20px;
}
.news-list h2 {
    text-align: center;
    font-size: 32px;
    color: #002B5B;
    margin-bottom: 50px;
}

.grid-news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-info {
    padding: 20px;
}
.news-info h3 {
    color: #002B5B;
    margin-bottom: 10px;
    font-size: 20px;
}
.news-info p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}
.btn-readmore {
    display: inline-block;
    background: #FF6F00;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-readmore:hover {
    background: #e65c00;
}
