/* === Disable Canvas Course Card Color Overlay, keep color bar === */

/* Remove tinted overlay from course card images */
.ic-DashboardCard__header_hero {
    background-blend-mode: normal !important;
}
.ic-DashboardCard__header_hero::before {
    display: none !important;
}

/* Keep the colored bar at the bottom of the course card */
.ic-DashboardCard__header_hero .ic-DashboardCard__header_hero--course-color {
    background-color: var(--ic-brand-primary) !important;
    opacity: 1 !important;
}

/* Optional: Add a 4px color bar across the bottom */
.ic-DashboardCard__header_hero {
    border-bottom: 4px solid currentColor !important;
}
