/* ================================================================
   AUTHOR PROFILE PAGE — /author/<slug>   (SEO Phase 2 / WP-17)
   Layered on blog-listing.css (hero, eyebrow, headline, grid cards).
   ================================================================ */

.fv-author-breadcrumbs {
    margin-bottom: 18px;
}

.fv-author-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.fv-author-hero-grid--no-photo {
    justify-items: start;
    text-align: left;
}

@media (min-width: 768px) {
    .fv-author-hero-grid {
        grid-template-columns: 240px 1fr;
        gap: 40px;
        justify-items: start;
        text-align: left;
    }

    .fv-author-hero-grid--no-photo {
        grid-template-columns: 1fr;
    }
}

.fv-author-photo {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
    background: var(--ink-50, #f6f8fb);
    border: 1px solid var(--ink-200, #dbe1e9);
}

.fv-author-hero-body {
    min-width: 0;
}

.fv-author-role {
    font-size: 17px;
    font-weight: 500;
    color: var(--teal-700, #0d7a74);
    margin: 8px 0 12px;
}

.fv-author-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

@media (max-width: 767px) {
    .fv-author-chips {
        justify-content: center;
    }
}

.fv-author-chips span {
    background: var(--teal-100, #d0f4f2);
    color: var(--teal-700, #0d7a74);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}

.fv-author-bio {
    max-width: 720px;
}

.fv-author-bio + .fv-author-bio {
    margin-top: 10px;
}

.fv-author-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.fv-author-links a {
    color: var(--teal-700, #0d7a74);
    font-weight: 600;
    text-decoration: underline;
}

/* Byline link on blog posts */
.fv-blog-author-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fv-blog-author-link:hover {
    color: var(--teal-700, #0d7a74);
}
