/* Make News and Event images lift up on hover */
.view-news .views-row img, 
.view-events .views-row img,
.view-blog .views-row img {
    transition: all 0.3s ease; /* Smooth animation */
    border-radius: 8px; /* Soft rounded corners */
}

.view-news .views-row:hover img, 
.view-events .views-row:hover img,
.view-blog .views-row:hover img {
    transform: translateY(-5px); /* Move up slightly */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Drop shadow */
}
