.edu-model-258a587f {
    position: relative;
    width: 100%;
    /* min-height controlled by settings, default fallback below */
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    --gradient-color-1: #0c224a;
    --gradient-color-2: rgba(12, 34, 74, 0.2);
}

.edu-bg-image {
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%; /* Extended to prevent edge artifacts when scaled/blurred */
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Blur controlled by settings */
}

.edu-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-1) 40%, var(--gradient-color-2) 100%);
    z-index: 2;
}

.edu-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    align-items: center;
    gap: 20px; /* Added gap for better spacing */
}

.edu-text-column {
    flex: 1;
    min-width: 250px; /* Reduced min-width for mobile */
    color: #fff;
}

.edu-top-heading {
    display: flex;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.edu-heading-line {
    height: 1px;
    background: #fff;
    width: 50px;
    margin-left: 10px;
    position: relative;
}
.edu-heading-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.edu-main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    font-family: 'Times New Roman', serif;
    color: #fff;
}

.edu-main-desc {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.edu-image-column {
    flex: 1;
    min-width: 250px; /* Reduced min-width for mobile */
    position: relative;
    height: 240px;
    border-radius: 15px;
}

.edu-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 2px solid #fff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .edu-content-wrapper {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    
    .edu-text-column {
        padding-right: 0;
        text-align: center; /* Center align text on mobile */
    }
    
    .edu-top-heading {
        justify-content: center; /* Center the top heading and line */
    }
    
    .edu-heading-line {
        display: none !important; /* Force hide the white line on mobile */
    }
    
    .edu-main-title {
        font-size: 28px; /* Slightly smaller title on mobile */
    }

    .edu-image-column {
        width: 100%;
        height: 200px; /* Slightly shorter image on mobile */
    }
    
    /* Ensure no borders or lines appear on mobile elements unintentionally */
    .edu-model-258a587f * {
        border-bottom: none !important;
    }
}