.news-section {
    padding: 40px 0;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a73e8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-excerpt {
    flex: 1;
    color: #555;
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.btn-readmore {
    text-decoration: none;
    background-color: #1a73e8;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.btn-readmore:hover {
    background-color: #155ab6;
}

.news-detail img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #1a73e8;
}



