/* Black overlay for FSE Group with background image */
.cover-over-gms {
    position: relative;
    overflow: hidden;
}

.cover-over-gms::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.44); /* 15% black */
    pointer-events: none; /* So the overlay doesn't block clicks */
    z-index: 1;
}

/* Ensure inner content stays above overlay */
.cover-over-gms > * {
    position: relative;
    z-index: 2;
}
