/* ITS 2 Column Image Text - Structure Only */

.ITS-2-col-img-text {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.ITS-2-col-img-text__image {
    flex: 1 1 45%;
    min-width: 300px;
}

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

.ITS-2-col-img-text__content {
    flex: 1 1 45%;
    min-width: 300px;
}

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

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

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

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

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

    .ITS-2-col-img-text__image,
    .ITS-2-col-img-text__content {
        flex: 1 1 100%;
    }

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