.about-page {
    --about-content-width: 760px;
    --about-wide-width: 860px;
}

.about-page .section {
    padding: clamp(2.75rem, 5vw, 4.75rem) clamp(1.25rem, 4vw, 2rem);
}

.about-page .section-content {
    margin-bottom: 0;
}

.about-hero {
    min-height: auto;
}

.about-founders {
    padding-bottom: clamp(6.5rem, 11vw, 10rem);
}

.about-hero-grid {
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    max-width: var(--about-wide-width);
    margin-right: auto;
    margin-left: auto;
}

.about-text-section {
    width: 100%;
    max-width: var(--about-wide-width);
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.about-text-section > .section-title,
.about-text-section > .about-story-text,
.about-text-section > .about-founders-copy {
    max-width: var(--about-content-width);
}

.about-title {
    max-width: 12ch;
    margin-bottom: 1.5rem;
}

.about-eyebrow {
    margin: 0 0 .85rem;
    color: var(--webpage-main-color);
    font-size: var(--fs-400);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.about-lead,
.about-founders-copy,
.about-story-text,
.about-guiding-item p {
    color: #555;
    font-size: var(--font-base);
    line-height: 1.75;
}

.about-lead {
    max-width: 720px;
}

.about-lead p,
.about-founders-copy p,
.about-guiding-item p {
    margin: 0 0 1.25rem;
}

.about-lead p:last-child,
.about-founders-copy p:last-child,
.about-guiding-item p:last-child {
    margin-bottom: 0;
}

.about-founder-orbits {
    position: relative;
    width: min(72vw, 360px);
    aspect-ratio: 1;
    justify-self: center;
}

.about-founder-orbit {
    overflow: hidden;
    border-radius: 50%;
    background: #f3f4f6;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.about-founder-orbit {
    position: absolute;
    margin: 0;
    border: 8px solid #fff;
}

.about-founder-orbit img,
.about-founder-orbit img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder-orbit-primary {
    top: 0;
    left: 0;
    width: 62%;
}

.about-founder-orbit-secondary {
    right: 0;
    bottom: 0;
    width: 56%;
}

.about-story-text {
    display: grid;
    gap: 2rem;
}

.about-guiding-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
    padding: 0;
}

.about-guiding-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--btn-circle-size);
    height: var(--btn-circle-size);
    border-radius: 50%;
    background: #000;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    flex: 0 0 var(--btn-circle-size);
}

.about-guiding-icon {
    color: #fff;
    font-size: var(--btn-icon-size);
    line-height: 1;
}

.about-guiding-copy .about-eyebrow {
    margin-bottom: .4rem;
    color: var(--webpage-main-color);
}

.about-guiding-item h3 {
    margin: 0 0 .85rem;
    color: #000;
    font-size: var(--fs-700);
    font-weight: 900;
    line-height: 1.15;
}

.about-founders-copy .section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    }
}

@media (max-width: 767px) {
    .about-page .section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .about-title {
        max-width: 12ch;
    }

    .about-founder-orbits {
        order: -1;
        width: min(78vw, 300px);
    }

    .about-founders-copy .section-title,
    .about-text-section .section-title {
        margin-bottom: 1.25rem;
    }

    .about-guiding-item {
        gap: 1rem;
    }
}
