/**
 * Homepage Banner 1 + PDP shoes promo — same dimensions everywhere.
 */
.hb1-banner {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hb1-banner__inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    height: clamp(180px, 50vw, 240px);
    overflow: hidden;
    background: #f4f4f4;
}

@media (min-width: 768px) {
    .hb1-banner__inner {
        height: clamp(260px, 38vw, 340px);
    }
}

@media (min-width: 992px) {
    .hb1-banner__inner {
        height: clamp(360px, 30vw, 460px);
    }
}

.hb1-banner__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.hb1-banner__cta {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: inline-block;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 11px 26px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hb1-banner__cta:hover,
.hb1-banner__cta:focus {
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

@media (min-width: 992px) {
    .hb1-banner__cta {
        bottom: 36px;
        font-size: 14px;
        padding: 13px 32px;
    }
}

/* PDP: after related products strip */
.hb1-banner--pdp {
    background-color: #f7f6f4;
}
