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

.hh-story__image {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #eee8de;
}

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

.hh-story:hover .hh-story__image img {
    transform: scale(1.015);
}

.hh-story__content-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    background: #fffcf7;
}

.hh-story__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

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

.hh-story__heading {
    margin: 0 0 20px;
    color: #262626;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3.3vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.hh-story__body {
    max-width: 590px;
    color: #555;
    font-size: 17px;
    line-height: 1.65;
}

.hh-story__body p {
    margin: 0 0 14px;
}

.hh-story__body p:last-child {
    margin-bottom: 0;
}

.hh-story__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 24px;
    padding: 0 22px;
    border-radius: 5px;
    background: #6f7f55;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.hh-story__button:hover {
    color: #fff;
    transform: translateY(-1px);
    opacity: .94;
    box-shadow: 0 10px 24px rgba(78, 91, 60, .18);
}

.hh-story__decorative {
    position: absolute;
    right: -22px;
    bottom: -28px;
    z-index: 1;
    color: #6f7f55;
    font-size: 170px;
    line-height: 1;
    opacity: .10;
    transform: rotate(-18deg);
    pointer-events: none;
}

.hh-story__decorative svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.hh-story-image-right .hh-story__image {
    order: 2;
}

.hh-story-image-right .hh-story__content-wrap {
    order: 1;
}

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

    .hh-story__image,
    .hh-story__content-wrap {
        min-height: 400px !important;
    }

    .hh-story-image-right .hh-story__image,
    .hh-story-image-right .hh-story__content-wrap {
        order: initial;
    }

    .hh-story__image {
        order: 1 !important;
    }

    .hh-story__content-wrap {
        order: 2 !important;
    }
}

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

    .hh-story__image {
        min-height: 320px !important;
    }

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

    .hh-story__heading {
        font-size: clamp(34px, 10vw, 46px);
    }

    .hh-story__body {
        font-size: 16px;
    }

    .hh-story__button {
        width: 100%;
    }

    .hh-story__decorative {
        right: -26px;
        bottom: -20px;
        font-size: 125px;
    }
}
