.image-copy {
    padding: 2rem 0;
}

.basic-copy + .image-copy,
.image-copy + .image-copy {
    padding: 0 0 2rem 0;
}

.image-copy-region {
    display: grid;
    grid-gap: 2rem;
}

.image-left {
    grid-template-areas: "image copy";
    grid-template-columns: 2fr 3fr;
}

.image-right {
    grid-template-areas: "copy image";
    grid-template-columns: 3fr 2fr;
}

.image-copy-image {
    grid-area: image;
}

.image-copy-body {
    grid-area: copy;
    font-size: 1rem;
}

.image-copy-image img,
.image-copy-image img {
    height: auto;
    width: 100%;
}

/* Smartphones - General */
@media (max-width: 767px) {
    .image-copy-region {
        grid-template-areas: "copy" "image";
        grid-template-columns: 1fr;
    }
}