/**
 * Author Bio Box Styles
 *
 * @package MobLand_Pro
 * @since 1.0.0
 */

/* ============================================
   AUTHOR BIO (Full Card)
   ============================================ */
.author-bio {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-top: 50px;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 3px solid var(--harrigan-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--harrigan-gold);
    flex-shrink: 0;
}

.author-bio-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--harrigan-gold);
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-family: var(--font-headline);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.author-bio-content h4 span {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.author-bio-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.author-bio-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio-avatar,
    .author-bio-avatar-img {
        margin: 0 auto;
    }
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
[data-theme="light"] .author-bio {
    background: var(--bg-secondary);
}
