.about-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    background: #040D1A;
}

.about-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 59, 0.62);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 160px 24px;
}

.about-hero-kicker {
    margin: 0px 0 18px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18px;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0px 0 18px;
    font-family: var(--font-decorative);
    font-size: 64px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1.28px;
    color: #ffffff;
}

.about-hero-text {
	max-width: 620px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.18px;
    font-weight: 300;
}


/* Хто ми */

.about-quote {
    background: #f6f4f0;
}

.about-quote-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.about-quote-text {
    font-family: var(--font-decorative);
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.88px;
    line-height: 1.2;
    color: #000000;
}

.about-quote-text p {
    margin: 0;
    margin-bottom: 35px;
}

.about-quote-author {
    display: inline;
    font-style: italic;
    font-weight: 600;
}


/* Секції 1 та 2 */

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
    background: #f6f4f0;
}

.about-split-media {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background: #e9e5df;
}

.about-split-media img,
.about-split-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 72px;
    background: #040D1A;
}

.about-split-inner {
    max-width: 560px;
    text-align: center;
}

.about-split-inner h2 {
	margin: 0 0 28px;
    font-family: var(--font-decorative);
    font-size: 36px;
    letter-spacing: -0.88px;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    color: #ffffff;
}

.about-split-inner p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.18px;
    line-height: 1.5;
    color: rgba(255,255,255,.9);
}


@media (min-width: 768px) and (max-width: 1199px) {
    .about-hero {
        height: 570px;
        min-height: 570px;
    }

    .about-hero-content {
        max-width: 720px;
        padding: 70px 24px;
    }
}


@media (max-width: 767px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-content {
        max-width: none;
        padding: 100px 20px;
    }

    .about-hero h1 {
        font-size: 54px;
        line-height: 0.95;
    }

    .about-hero-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-split,
    .about-split-reverse {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-split-reverse .about-split-content {
        order: 2;
    }

    .about-split-reverse .about-split-media {
        order: 1;
    }

    .about-split-media {
        min-height: 520px;
    }

    .about-split-content {
        padding: 40px 20px;
    }

    .about-quote-wrapper {
        padding: 40px 0px;
    }

    .about-quote-text {
        font-size: 28px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.68px;
    }

    .about-split-inner h2 {
        font-size: 34px;
    }

    .about-split-inner p {
        font-size: 18px;
        line-height: 1.3;
    }
}

