/* Prefixed styles for News & Updates page */
.news-intro {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.news-card-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 28px 30px;
    margin-bottom: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-card-item__date {
    font-size: 0.875rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.news-card-item h2,h3 {
    margin: 0 0 14px 0;
    color: #031f4b;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-card-item p {
    margin: 0 0 20px 0;
    line-height: 1.7;
    color: #444;
}

.news-card-item .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

a.news-card-item {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}