/**
 * ★ CARD IMAGES - FULL WIDTH ★
 * Images should fill entire card width
 */

/* ============================================
   COURSE CARD IMAGES - FULL WIDTH
   ============================================ */
.course-box img,
.single-course-box img,
.course-card img,
.course-image img,
.marhala-card img,
img[alt*="الصف"] {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Image Container */
.course-image,
.course-card-img-wrapper,
.marhala-card-img {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 1rem 1rem 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Card Container */
.course-box,
.course-card,
.marhala-card {
    overflow: hidden !important;
    border-radius: 1rem !important;
}

/* Remove any width/height attributes from images */
.course-box img[width],
.course-card img[width],
img[width="400"],
img[height="280"] {
    width: 100% !important;
    height: 200px !important;
}

/* ============================================
   CATEGORY CARDS (الصف الأول etc)
   ============================================ */
.marhala-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #ffffff;
}

.marhala-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(12, 43, 155, 0.12);
}

.marhala-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block !important;
}

.marhala-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 43, 155, 0.9);
    color: #ffffff;
    padding: 1.25rem;
    text-align: center;
}

.marhala-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

    .course-box img,
    .course-card img,
    .marhala-card img {
        height: 180px !important;
    }

    .course-image,
    .course-card-img-wrapper {
        height: 180px !important;
    }
}

@media (max-width: 576px) {

    .course-box img,
    .course-card img,
    .marhala-card img {
        height: 200px !important;
    }

    .course-image,
    .course-card-img-wrapper {
        height: 200px !important;
    }
}