.page-banner{
    aspect-ratio: 72/25;
    position: relative;
    z-index: 1;
}
.page-banner__bg{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.page-banner__title-container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-banner__title{
    color: white;
}

@media screen and (width < 1024px) {
    .page-banner{
        aspect-ratio: 16 / 9;
    }
}

@media screen and (width < 768px) {
    .page-banner{
        aspect-ratio: 4 / 3;
    }
}

@media screen and (width < 576px) {
    .page-banner{
        aspect-ratio: 3 / 4;
    }
}