
.about-page-hero {
    padding: 4rem 0;
}

.about-page-hero .section-badge {
    margin-left: 0;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.05em;
    text-wrap: balance;
    line-height: 1.625;

    @media (max-width: 768px) {
        font-size: 1.875rem;
    }
}

.about-heading-highlight {
    color: var(--color-accent);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}

.about-heading-avatar-container {
    display: inline-flex;
    margin-right: 1rem;
    padding: 0.5rem 0;
}

.about-heading-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #d2deea;
    flex-shrink: 0;
    margin-right: -1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 1024px) {
        width: 32px;
        height: 32px;
    }
}

.about-heading-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 4rem 0;
}

.story-section .container {
    display: flex;
    gap: 2rem;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 0;
    }
}

.story-section .container > div:nth-child(1) {
    flex: 2;
}

.story-section .container > div:nth-child(2) {
    flex: 1;
    overflow: hidden;
    border-radius: 1rem;
}

.story-section p {
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 672px;
    font-weight: 300;
    letter-spacing: -0.025em;
    opacity: 0.9;
    margin-top: 1rem;

}

.story-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}