.author-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    /*border-radius: 8px;*/
    border-left: 4px solid #000049;
}

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

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3338;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 16px;
    font-family: var(--h2-font-family, inherit);
    font-weight: var(--h2-font-weight, inherit);
    font-size: var(--h2-font-size, inherit);
    font-style: var(--h2-font-style, inherit);
    line-height: var(--h2-line-height, 1.4);
    letter-spacing: var(--h2-letter-spacing, inherit);
    text-transform: var(--h2-text-transform, inherit);
    }
}