.alif-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alif-hero .alif-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.alif-hero .alif-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* fallback, will be overridden by dynamic classes */
    align-items: center;     /* fallback, will be overridden by dynamic classes */
    z-index: 10;            /* ensure heading is above image */
}
.alif-hero .alif-hero-heading-wrapper {
    width: 100%;
    max-width: 100%;
    /* width will be set via inline style or custom property */
}
.alif-hero .alif-hero-heading {
    margin: 0;
}
.alif-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}