/* ==========================================================
   Section: About the Author
   ========================================================== */

.about-author {
    background: var(--bg-cream);
    padding: var(--section-pad) 24px;
}

.about-author__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.about-author__photo-frame {
    padding: 14px;
    background: var(--bg-surface);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transform: rotate(-1.5deg);
    max-width: 420px;
    margin: 0 auto;
}

.about-author__photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-author__headline {
    margin-top: 16px;
}

.about-author__bio {
    margin-top: 20px;
}

.about-author__bio p {
    margin-bottom: 1.15em;
    line-height: 1.85;
}

.about-author__bio p:last-child {
    margin-bottom: 0;
}

/* --- Store links --- */
.about-author__stores {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--border-subtle);
}

.about-author__stores-label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.about-author__stores-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.about-author__store-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--bg-surface);
    box-shadow: inset 0 0 0 1px var(--border-medium);
    color: var(--text-primary);
    font-family: var(--font-label);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.about-author__store-link:hover {
    color: var(--brand);
    background: var(--bg-blush);
    box-shadow: inset 0 0 0 1px var(--border-brand);
}

@media (max-width: 860px) {
    .about-author__container {
        grid-template-columns: 1fr;
    }
    .about-author__photo-col {
        max-width: 320px;
        margin: 0 auto;
    }
}
