.our-studio {
    background-color: var(--arthurMurrayBlue);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: center;
    text-align: center;
    z-index: -2;
    overflow: hidden;
}

.our-studio > div:first-of-type {
    grid-column: 1 / 2;
    padding: 0 1em 1.5em;
    max-width: 600px;
    justify-self: center;
}

.our-studio > div:last-of-type {
    grid-column: 1 / 2;
    background-color: var(--offwhite);
    color: var(--arthurMurrayBlue);
}

.our-studio aside {
    display: grid;
}

.our-studio h2,
.our-studio p {
    max-width: 600px;
    justify-self: center;
}

.our-studio img {
    width: 95%;
    max-width: 500px;
    margin: -4em auto -2.5em;
}

.image-wrap {
    grid-column: 1 / 2;
    padding-top: 5em;
    margin-bottom: 2em;
}

.our-studio-tag {
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.8em;
    color: var(--mediumYellow);
    width: 250px;
    margin: 0 auto 0.5em;
}

.our-studio > div:first-of-type h2 {
    font-size: var(--h2);
    line-height: 1.3em;
    max-width: 400px;
    margin: 1em auto 0.5em;
}

.our-studio > div:last-of-type h2 {
    font-size: var(--h3);
    padding: 1.5em 1rem 0;
    margin-bottom: 0.25em;
    line-height: 1.3em;
}

.our-studio > div:last-of-type h2 span {
    display: inline-block;
}

.our-studio > div:last-of-type h2 span:last-of-type {
    font-weight: 700;
}

.our-studio > div:last-of-type p {
    padding: 0 1rem;
}

@media screen and (min-width: 1000px) {
    .our-studio {
        text-align: left;
        grid-template-columns: minmax(1em, 1fr) repeat(2, calc(50% - 1em)) minmax(1em, 1fr);
    }
    .our-studio img {
        margin: -25vw 0 -2.5em;
    }
    .image-wrap {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        background-color: var(--offwhite);
        justify-self: right;
    }
    .our-studio-tag {
        text-transform: uppercase;
        font-size: 0.8em;
        font-weight: 500;
        letter-spacing: 1.2px;
        color: var(--mediumYellow);
        margin: 0 0 0.25em;
        margin-bottom: 0.5em;
    }
    .our-studio > div:first-of-type {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin-bottom: 2em;
        padding: 0;
        justify-self: left;
    }
    .our-studio > div:last-of-type {
        display: grid;
        grid-column: 1 / 5;
        grid-row: 2 / 3;
        grid-template-columns: 1rem calc(100% - 2rem) 1rem;
    }
    .our-studio > div:last-of-type aside {
        grid-column: 2 / 4;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: .3fr 1fr;
        justify-content: left;
        padding: 2em 2em 0 0;
    }
    .our-studio > div:first-of-type h2 {
        width: 600px;
        margin-left: 0;
    }
    .our-studio > div:last-of-type h2 {
        padding: 0;
        font-size: var(--h4);
    }
    .our-studio > div:first-of-type p {
        width: 470px;
    }
    .our-studio > div:last-of-type p {
        padding: 0;
    }
    .our-studio > div:last-of-type h2,
    .our-studio > div:last-of-type p {
        justify-self: left;
        max-width: 390px;
    }
    .our-studio > div:last-of-type h2,
    .our-studio > div:first-of-type p,
    .our-studio > div:last-of-type p {
        width: 600px;
        max-width: 600px;
    }
}

@media screen and (min-width: 1236px) {
    .our-studio {
        color: var(--white);
        grid-template-columns: 1fr repeat(2, minmax(auto, 600px)) 1fr;
    }
    .our-studio img {
        margin: -21em 0 -2.5em;
    }
    .our-studio > div:first-of-type {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .our-studio > div:last-of-type {
        grid-template-columns: 1fr repeat(2, minmax(auto, 600px)) 1fr;
    }
    .our-studio > div:last-of-type h2 {
        font-size: var(--h4);
    }
    .our-studio > div:last-of-type aside {
        grid-template-columns: .8fr 1fr;
    }
}