/* ===================================== */
/* ==   (1) ستايل الهيرو (Hero)   == */
/* ===================================== */
.program-hero-section {
    background-color: #003366; /* لون أزرق غامق مناسب للمدارس */
    /* ممكن تضيف أي تنسيقات تانية للهيرو هنا */
}

/* ===================================== */
/* ==   (2) تنسيقات محتوى CKEditor   == */
/* ===================================== */

/* لضمان عرض الصور والفيديوهات بشكل متجاوب */
.ck-content .image,
.ck-content .embed-container,
.ck-content iframe {
    max-width: 100%;
    height: auto;
    margin: 1.5em auto; /* توسيط المحتوى */
    display: block;
}

/* لضمان أن الصور لا تتجاوز عرض الحاوية */
.ck-content img {
    max-width: 100%;
    height: auto;
}

/* لضمان تنسيق الفيديوهات المدمجة (Embedded) */
.ck-content .embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.ck-content .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}