/* ITS 2 Column Image Text */
.ITS-2-col-img-text {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.ITS-2-col-img-text__image,
.ITS-2-col-img-text__content {
    flex-shrink: 1;
    min-width: 0;
}

.ITS-2-col-img-text__image img {
    width: 100%;
    height: auto;
    display: block;
}

.ITS-2-col-img-text__title {
    margin-top: 0;
}

.ITS-2-col-img-text__description {
    margin-bottom: 1.5rem;
}

.ITS-2-col-img-text__content {
    padding: 0 2rem;  /* spacing lives here instead */
}

.ITS-2-col-img-text__button {
    display: inline-block;
    text-decoration: none;
}

/* Image right layout */
.ITS-2-col-img-text--image-right {
    flex-direction: row-reverse;
}

/* Responsive — stack on tablet and below */
@media (max-width: 991px) {
    .ITS-2-col-img-text,
    .ITS-2-col-img-text--image-right {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .ITS-2-col-img-text__image,
    .ITS-2-col-img-text__content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}