.stitching-callout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.stitching-image {
    min-height: 600px;
    overflow: hidden;
}

.stitching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stitching-callout > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 10%;
}

.stitching-callout .button {
    align-self: flex-start;
}

@media (max-width: 800px) {
    .stitching-callout {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .stitching-image {
        min-height: 440px;
        max-height: 560px;
    }

    .stitching-callout > div:last-child {
        padding: 55px 38px;
    }
}

@media (max-width: 600px) {
    .stitching-image { min-height: 380px; }
    .stitching-callout > div:last-child { padding: 42px 24px; }
}
