.about-us-text:not(.about-us-beating-heart) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: calc(var(--margin-block-util) * 2.1);
}

.bout-us-beating-heart {
    margin-top: 0;
}

.about-us-text h1 {
    margin-bottom: 2rem;
    text-align: center;
}


.about-us-text p {
    text-align: center;
}

.about-us h1 {
    margin-bottom: 2rem;
}

.about-us h1 b {
    color: var(--color-accent-green);
}

.about-us-text-title b {
    color: var(--color-accent-primary);
}

.about-us p {
    margin-bottom: 2rem;
}

.about-us-beating-heart {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 0;
}

.about-us-beating-heart .about-us-text-title {
    margin-bottom: 1.25rem;
}

.about-us-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
    box-sizing: border-box;
}

.about-us-gallery__grid {
    --about-us-gallery-gap: clamp(14px, 2vw, 26px);
    display: flex;
    flex-direction: column;
    gap: var(--about-us-gallery-gap);
    width: 100%;
    max-width: calc(1627px + 2 * var(--about-us-gallery-gap));
    margin-inline: auto;
}

.about-us-gallery__row {
    display: grid;
    gap: var(--about-us-gallery-gap);
    width: 100%;
    min-width: 0;
    align-items: stretch;
}

.about-us-gallery__row--top {
    grid-template-columns: minmax(0, 544fr) minmax(0, 703fr) minmax(0, 380fr);
}

.about-us-gallery__row--bottom {
    grid-template-columns: minmax(0, 380fr) minmax(0, 544fr) minmax(0, 703fr);
}

.about-us-gallery__cell {
    margin: 0;
    border-radius: clamp(28px, 4vw, 48px);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-us-gallery__cell img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-us-gallery__cell--1 {
    aspect-ratio: 544 / 390;
}

.about-us-gallery__cell--2 {
    aspect-ratio: 703 / 390;
}

.about-us-gallery__cell--3 {
    aspect-ratio: 380 / 390;
}

.about-us-gallery__cell--4 {
    aspect-ratio: 380 / 390;
}

.about-us-gallery__cell--5 {
    aspect-ratio: 544 / 390;
}

.about-us-gallery__cell--6 {
    aspect-ratio: 703 / 390;
}

@media (max-width: 900px) {
    .about-us-gallery__grid {
        max-width: none;
        --about-us-gallery-gap: clamp(8px, 1.8vw, 20px);
    }

    .about-us-gallery__cell {
        border-radius: clamp(10px, 2.4vw, 16px);
    }
}

.about-us-text-single-title {
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--margin-block-util);
    padding: 0 var(--section-padding-x);
}