.text-with-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.text-with-gallery__mini-header {
    font-size: var(--font-size-h6);
    text-align: center;
}

h2.text-with-gallery__header {
    font-size: var(--font-size-h2);
    text-align: center;
    font-weight: 600;
    color: black;
    margin: 0;
}

.text-with-gallery__content {
    display: grid;
    grid-template-columns: 33% 66%;
    gap: var(--spacing-lg);
    align-items: center;
}

.text-with-gallery__col--text {
    width: 100%;
}

.text-with-gallery__col--gallery {
    width: 100%;
    min-width: 0;
}

.text-with-gallery__text {
    width: 100%;
}

.text-with-gallery__swiper {
    width: 100%;
    overflow: hidden;
}

.text-with-gallery__swiper .swiper-wrapper {
    align-items: stretch;
}

.text-with-gallery__swiper .swiper-slide {
    height: auto;
}

.text-with-gallery__image {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 992px) {
    .text-with-gallery__content {
        grid-template-columns: 100%;
    }
}