/* HABARI MPYA – CREATIVE & PDF READY */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 30px 30px 80px #d9d9d9, -30px -30px 80px #ffffff;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.pdf-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #333;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

.news-content {
    padding: 1.5rem;
    text-align: center;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--text);
}

.btn-primary.btn-sm {
    background: var(--primary);
    color: white;
    border-radius: 30px;
}