[data-name="VideoHeroModuleMobile"].section.als-section-container {
    position: relative;
    overflow: hidden;
    background-color: #27e2cc;
    padding-top: 0; /* remove top gap */
    padding-bottom: 100px; /* requested space below the grey area */
    width: 100%;
    box-sizing: border-box;
    min-height: calc(661.969px + 100px); /* match video height + bottom space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* center text vertically within available height */
    align-items: flex-start;
}

[data-name="VideoHeroModuleMobile"] .videowrapper.als-mobile-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 661.969px;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: #d6d6d6;
    z-index: 1;
}

@media (min-width: 321px) and (max-width: 425px) {
    [data-name="VideoHeroModuleMobile"] .videowrapper.als-mobile-video-wrapper {
        height: 581.312px;
    }
    [data-name="VideoHeroModuleMobile"].section.als-section-container {
        min-height: calc(581.312px + 100px);
    }
}

@media (min-width: 426px) and (max-width: 1023px) {
    [data-name="VideoHeroModuleMobile"] .videowrapper.als-mobile-video-wrapper {
        height: 680px;
    }
    [data-name="VideoHeroModuleMobile"].section.als-section-container {
        min-height: calc(680px + 100px);
    }
}

[data-name="VideoHeroModuleMobile"] .video.als-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
}

[data-name="VideoHeroModuleMobile"] .video.als-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1);
    border: none;
}

[data-name="VideoHeroModuleMobile"] .als-wrapper-container {
    position: relative;
    width: 100%;
    max-width: 1224px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    z-index: 100;
}

[data-name="VideoHeroModuleMobile"] .als-title-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hide mobile widget on desktop */
@media (min-width: 1024px) {
    [data-name="VideoHeroModuleMobile"].section.als-section-container {
        display: none;
    }
}

[data-name="VideoHeroModuleMobile"] .als-heading {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

[data-name="VideoHeroModuleMobile"] .als-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #ffffff;
}

[data-name="VideoHeroModuleMobile"] .als-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

