/* CSS for Course Details */

/* Course Hero Image - Square with Large Rounded Corners */
.course-image-container {
    width: 100%;
}

.course-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Related Course Images */
.related-course-img {
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Sticky Sidebar */
.sticky-sidebar {
    top: 100px;
}