.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* IMAGE */
.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* BODY */
.news-body {
    padding: 20px;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 10px;
}

.news-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
.news-footer {
    padding: 14px 20px;
    font-size: 0.8rem;
    color: #777;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.news-footer i {
    margin-right: 6px;
    color: #1e88e5;
}

.news-card:hover .news-title {
    text-decoration: underline;
}
