/* Fix for images turning white on hover in Eduma theme */

/* General fix for images inside links or containers that might have an opacity change */
a:hover img,
.course-item:hover img,
.thim-course-grid .course-item:hover img {
    opacity: 1 !important;
    filter: none !important;
}

/* Specific Eduma overlay classes */
.thim-course-grid .course-item .course-thumbnail::before,
.thim-course-grid .course-item .course-thumbnail::after {
    display: none !important;
    opacity: 0 !important;
}

/* Try to override any background color overlay on hover */
.course-item:hover .course-thumbnail {
    background-color: transparent !important;
}
