/* =========================================================
   ABOUT AMBIENT BACKGROUND — WATER CONTOUR
   ---------------------------------------------------------
   Decorative only:
   - Absolute positioned
   - Never affects layout height/width
   - Never captures pointer events
   - Sits behind About content
   - Hidden on mobile to preserve the existing mobile design
   ========================================================= */

.about-main-stage {
    position: relative;
    isolation: isolate;
}

.about-main-stage > .about-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-main-stage > .about-ambient img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.about-main-stage > .row {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .about-main-stage > .about-ambient {
        display: none;
    }
}
