/* Banner/Hero section - reusable across pages */

.banner-hero {
    overflow: hidden;
    margin-bottom: 40px;
    background-color: var(--bg-color);
}

.banner-hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.banner-hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.2rem;
    line-height: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
}

.banner-hero__media {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.banner-hero__media picture,
.banner-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}

@media (max-width: 768px) {
    .banner-hero__title {
        font-size: 1.8rem;
        line-height: 2.8rem;
    }
}
