
.hh-shop-hero {
    width: calc(100% - 32px);
    margin: 18px auto 28px;
    display: grid;
    overflow: hidden;
    border: 1px solid #eee8de;
    background: #fffcf7;
    box-sizing: border-box;
}

.hh-shop-hero__content,
.hh-shop-hero__image {
    min-width: 0;
}

.hh-shop-hero__content {
    display: flex;
    align-items: center;
    background: #fffcf7;
}

.hh-shop-hero__content-inner {
    width: 100%;
    max-width: 580px;
}

.hh-shop-hero__breadcrumb {
    margin-bottom: 22px;
    color: #6f7f55;
    font-size: 13px;
    line-height: 1.3;
}

.hh-shop-hero__eyebrow {
    margin-bottom: 14px;
    color: #6f7f55;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hh-shop-hero__heading {
    margin: 0 0 18px;
    color: #262626;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.045em;
}

.hh-shop-hero__description {
    max-width: 500px;
    color: #5d5d5d;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.5;
}

.hh-shop-hero__image {
    position: relative;
    overflow: hidden;
    background: #f0ebe2;
}

.hh-shop-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .55s ease;
}

.hh-shop-hero:hover .hh-shop-hero__image img {
    transform: scale(1.015);
}

@media (max-width: 1024px) {
    .hh-shop-hero {
        grid-template-columns: 1fr !important;
    }

    .hh-shop-hero__content {
        order: 2;
    }

    .hh-shop-hero__image {
        order: 1;
        min-height: 360px !important;
    }
}

@media (max-width: 767px) {
    .hh-shop-hero {
        width: calc(100% - 20px);
        margin: 10px auto 20px;
    }

    .hh-shop-hero__content {
        min-height: auto !important;
        padding: 38px 26px 42px !important;
    }

    .hh-shop-hero__image {
        min-height: 280px !important;
    }

    .hh-shop-hero__heading {
        font-size: clamp(52px, 16vw, 70px);
    }

    .hh-shop-hero__description {
        font-size: 18px;
    }
}
