/* Estilos para el Author Box en el frontend */
.global-author-box {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.global-author-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.global-author-photo {
    flex-shrink: 0;
}

.global-author-photo img {
    border-radius: 50%;
    object-fit: cover;
    width: 100px;
    height: 100px;
}

.global-author-info {
    flex: 1;
    min-width: 0;
}

.global-author-name {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    line-height: 1.3;
}

.global-author-bio {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #555;
}

.global-author-website a {
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
}

.global-author-website a:hover {
    text-decoration: underline;
}

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

    .global-author-photo img {
        width: 80px;
        height: 80px;
    }
}
