.has-background-image {
    position: relative;
}

.has-background-image .content :is(h1, h2, h3, h4, h5, p) {
    color: var(--theme-color-light);
}

.has-background-image .background-image {
    background-color: var(--theme-color-blue);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.has-background-image .background-image img {
    opacity: 0.2;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}


.has-background-image .content {
    position: relative;
    z-index: 2;
}