.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-line-pack: start;
        align-content: flex-start;
}

#enlargedImage {
    margin-top: 1.3rem;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    margin-right: 1rem;
}

#enlargedImage img {
    max-height: calc(100vh - 2rem);
    max-width: calc(100vw - 2rem);
    border: 1px solid var(--thinInnerEnlargeBorder);
}

#blurbSectionBottom {
    padding: 1rem 0 0 0;
}

#blurbSectionSide {
    display: none;
}

#blurbSectionSide h2, #blurbSectionBottom h2 {
    text-transform: capitalize;
}

@media only screen and (min-width: 1200px) {
    .wrapper {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    #blurbSectionSide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    #blurbSectionBottom {
        display: none;
    }

    #enlargedImage {
        background-color: var(--bigGalleryBorder);
        border: 1px solid var(--thinGalleryBorder);
        margin: 1rem 0 0 0;
        padding: 7rem;
        max-width: calc(85vw - 2rem);
        max-height: calc(100vh - 2rem);
    }

    #enlargedImage img {
        max-height: calc(100vh - 18rem);
        max-width: calc(85vw - 18rem);
    }

    @media only screen and (orientation: landscape) {
        #enlargedImage {
            max-width: calc(82vw - 2rem); /* 82 not 85! */
        }

        #enlargedImage img {
            max-width: calc(82vw - 18rem); /* 82 not 85! */
        }
    }
}