.exhibition-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    padding: 4% 3.5%;
    background-color: var(--wp--preset--color--gray-dark);
    color: var(--wp--preset--color--white);
    font-size: var(--wp--preset--font-size--p-2-manrope);
    @media only screen and (min-width: 768px) {
        flex-direction: row;
    }

    .is-style-hne-category {
        font-weight: 400;
        letter-spacing: 0.91px;
        opacity: 0.7;
        margin-bottom: 2rem;
        @media only screen and (min-width: 768px) {
            margin-bottom: 5rem;
        }
    }

    h2 {
        &:after {
            content: none;
        }
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .left-column {
        flex: 1 1 38%;
    }
    .right-column {
        flex: 0 1 62%;
    }

    a.exhibition-btn-link {
        display: inline-block;
        color: var(--wp--preset--color--white);
        text-decoration: none;
        background-color: transparent;
        border-radius: 60px;
        border: 2px solid var(--wp--preset--color--haverhill-orange);
        padding: 7px 60px;
        margin-top: 2.5rem;
        font-size: var(--wp--preset--font-size--nav-button-text);
        font-weight: 700;
        line-height: 130.769%;
        letter-spacing: 0.78px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 1;
        &:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--wp--preset--color--haverhill-orange);
            transition: height 0.3s ease-in-out;
            z-index: -1;
        }
        &:hover {
            color: var(--wp--preset--color--white);

            &:before {
                height: 100%;
            }
        }
    }
}