/* Banner wrapper */
.image-video-banner {
    position: relative;
    width: 100%;
    height: 600px;
    /* adjust as needed */
    overflow: hidden;
}

.image-video-banner .banner-media.video-background,
.image-video-banner .embed-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media */
.banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-media video,
.banner-media .embed-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Text content */
.acf-banner-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    color: #fff;
}

/* Horizontal alignment */
.acf-banner-content.align-left {
    text-align: left;
}

.acf-banner-content.align-center {
    text-align: center;
}

.acf-banner-content.align-right {
    text-align: right;
}

/* Vertical alignment */
.acf-banner-content.vertical-top {
    top: 10%;
    transform: translateY(0);
}

.acf-banner-content.vertical-middle {
    top: 50%;
    transform: translateY(-50%);
}

.acf-banner-content.vertical-bottom {
    bottom: 10%;
    transform: translateY(0);
}

.banner-small-title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.banner-title {
    font-size: 3rem;
    margin: 0 0 1rem;
}

.banner-text-content {
    font-size: 1.2rem;
}