/* ==========================================================================
   AUTHOR ARCHIVE STYLES (author.php)
   ========================================================================== */

.author-hero .hero-ghost {
    font-size: clamp(15vw, 25vw, 35vw);
    opacity: 0.15;
}

.author-portrait-frame {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.author-portrait-frame:hover {
    transform: translateY(-5px);
}

.author-portrait-frame::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--accent);
    opacity: 0.3;
    pointer-events: none;
}

.author-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(20%) contrast(105%);
}

.author-name-sidebar {
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.author-name-sidebar::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

/* Specific adjustments for author hero subtitle */
.author-hero .cat-subtitle {
    max-width: 500px;
    text-transform: none;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: normal;
}