/* ============================================
   Yaoki Academy — Bio Autore [yaoki_bio_autore]
   ============================================ */

.yba-card {
    border-top: 2px solid #e0e0e0;
    padding-top: 28px;
    margin-top: 40px;
}

.yba-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.yba-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.yba-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yba-nome {
    font-size: 1em;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.yba-ruolo {
    font-size: 0.78em;
    color: #888;
    letter-spacing: 0.02em;
}

.yba-bio {
    font-size: 0.88em;
    line-height: 1.7;
    color: #555;
    margin: 0 0 18px;
}

/* Social links */
.yba-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.yba-social li {
    display: flex;
    align-items: center;
}

/* Divisore tra le voci */
.yba-social li + li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #ddd;
    margin: 0 14px;
    flex-shrink: 0;
}

.yba-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8em;
    font-weight: 700;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}

.yba-social-link:hover {
    color: #111;
}

.yba-social-link svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .yba-header {
        gap: 14px;
    }
    .yba-avatar {
        width: 56px;
        height: 56px;
    }
    .yba-social {
        gap: 0;
    }
}
