.slide-card {
    min-height: 320px;
    /* ensures uniform height */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .slide-card {
        min-height: 280px;
        padding: 1.25rem;
    }
}