.news-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}

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

.news-card .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 20px;
}

.news-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.news-card .btn-read-more {
    background-color: #ef6b3a;
    color: #fff;
    border-radius: 6px;
}

.text-orange {
    color: #ef6b3a !important;
}