.hero-banner {
    position: relative;
    width: 100%;
    height: clamp(200px, 30vw, 480px);
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-banner-text h1 {
    font-size: clamp(18px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
