/**
 * Estilos para la caja de autor personalizada
 */

.author-box {
    margin-top: 40px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.author-box-header {
    margin-bottom: 15px;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
    background: transparent!important;
}

.author-info p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
    background: transparent!important;
}

.author-bio {
    margin: 8px 0 12px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Los párrafos dentro de la biografía deberían tener un margen inferior menor */
.author-bio p {
    margin-bottom: 0.5em;
    font-size: 18px!important;
    background: transparent!important;
}

.author-social {
    margin-top: 8px;
}

.author-social a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.author-social a:hover {
    opacity: 0.8;
}

.author-social a:last-child {
    margin-right: 0;
}

.author-social .twitter-link {
    color: #1DA1F2;
}

.author-social .linkedin-link {
    color: #0077B5;
}