/* FORCE OVERRIDE */
.about-section .image-layer {
    position: absolute;
    top: 5%;
    right: 0;
    width: 50%;
    height: 80%;
    background-size: cover;
    background-position: center;
}

/* ---------------- */
/* RESPONSIVE FIX */
/* ---------------- */

@media (max-width: 991px) {

    /* 🔥 FORCE IMAGE TO TOP */
    .about-section .image-layer {
        position: relative !important;
        width: 100% !important;
        height: 280px !important;
        right: auto !important;
        top: auto !important;
        margin-bottom: 30px;
    }

    /* 🔥 FORCE CONTENT FULL WIDTH */
    .about-section .content-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center;
    }

    /* Fix Bootstrap row */
    .about-section .row {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-section .image-layer {
        height: 220px !important;
    }
}
.about-section {
    min-height: 650px;      /* ensures image height is respected */
    padding-bottom: 120px;
}

