#hero .wrapper.item {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.left-wrapper,
.right-wrapper {
    width: 100%;
    max-width: 400px;

}

.left-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--sage-green-mid);
    border-radius: 0;
    max-height: 400px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.left-wrapper img {
    display: block;
    border-radius: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
}

.right-wrapper h2 {
    font-family: var(--font-body);
    font-weight: 500;
}

.item-full-desc {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--clay-taupe-dark)
}

.right-wrapper button {
    margin-top: 1rem;
}

.item-details {
    font-style: italic;
    font-size: medium;
}


@media screen and (min-width: 769px) {
    #hero .wrapper.item {
        max-width: 1000px;
        gap: 3rem;
    }

    .large-price {
        font-size: 1.25rem
    }


    #hero .site-link {
        background-color: transparent;
        position: absolute;
        top: -2.5rem;
        left: 0;
    }

}

@media screen and (max-width: 768px) {

        /* #hero.item {
        padding-top: 4rem;
    } */

    #hero .wrapper.item {
        flex-direction: column;
        margin-top: 1.5rem;
    }

    .right-wrapper {
        margin-top: 1rem;
    }

    .left-wrapper img {
        max-width: 400px;
    }


    #hero .site-link {
        background-color: transparent;
        position: absolute;
        top: -2rem;
        left: 0;
    }

}