.intro-centered-simple__content-area {
    max-width: 48rem;
}

.intro-centered-simple__text-block {
    max-width: 42rem;
}

/* process storybook — gallery height, image crop, active nav, BS row overflow fix (no colors) */
.process-cdpr__root {
    max-width: 100%;
}
.process-cdpr__gallery-wrap {
    max-width: 100%;
    overflow: hidden;
}
.process-cdpr__gallery {
    height: 16rem;
    max-width: 100%;
}
.process-cdpr__gallery.row {
    margin-left: 0;
    margin-right: 0;
}
.process-cdpr__gallery > * {
    min-width: 0;
}
.process-cdpr__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.process-cdpr__nav-btn {
    transition: border-color 200ms ease, color 200ms ease;
}
.process-cdpr__nav-btn.is-active {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

/* Bootstrap: 2 колонки + gap как у Tailwind (row + row-cols без колонок — слипание) */
.whyus-split-photo__bs-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

@media (min-width: 768px) {
    .whyus-split-photo__bs-split {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .whyus-split-photo__bs-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Как mb-8 у Tailwind */
.whyus-split-photo__intro-mb {
    margin-bottom: 2rem;
}

.whyus-split-photo__thumb {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

