.ts-author-box {
    background: #f9f9f9;
    /* Grigio molto chiaro */
    border-left: 5px solid #0073aa;
    /* Colore brand (modificare con il tuo colore) */
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 4px;
    font-family: inherit;
    /* Usa il font del sito */
}

.ts-author-avatar img {
    border-radius: 50%;
    width: 100px;
    /* Dimensioni fisse per evitare shift */
    height: 100px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ts-author-info {
    flex: 1;
}

.ts-author-name {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.ts-author-name a {
    text-decoration: none;
    color: #333;
}

.ts-author-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.ts-author-social {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ts-author-social a {
    text-decoration: none;
    color: #0073aa;
}

.ts-author-social a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .ts-author-box {
        flex-direction: column;
        text-align: center;
    }

    .ts-author-avatar {
        margin: 0 auto;
    }

    .ts-author-social {
        justify-content: center;
    }
}