main .about {
    max-width: 820px;
    padding: 8.5rem 0 0;
    margin: 0 auto 4.5rem;
}

.about .eyebrow {
    margin-bottom: 1.25rem;
}

.about h1 {
    margin-bottom: 1.5rem;
}

.about .muted {
    font-style: italic;
    color: var(--muted);
    border-left: 2px solid var(--border);
    padding-left: 1rem;
}

.author-section {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 2rem;
    text-align: center;
    padding: 4.5rem 0 4.5rem;
    border-top: 1px solid var(--border);
}

.author-image img {
    max-width: 300px;
    border-radius: 50%;
}

.author-info h2 {
    margin-bottom: 2rem;
}

.author-info .content {
    max-width: 750px;
    margin-bottom: 2rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.author-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f0f0f0;
    color: var(--surface);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.author-social .social-link:hover {
    transform: translateY(-2px);
}

.author-social .social-link i {
    font-size: 1.1rem;
}