/* Author Styles - Consistent across all pages */

/* Author Avatar Styles */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
}

/* Author Info Styles */
.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-weight: 600;
    color: #2C3E50;
    font-size: 0.9375rem;
    line-height: 1.2;
}

.author-title,
.author-role {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.2;
}

/* Author Info Horizontal (for blog cards) */
.author-info-horizontal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info-horizontal .author-name {
    display: block;
    font-weight: 600;
    color: #2C3E50;
    font-size: 0.875rem;
}

.author-info-horizontal .author-role,
.author-info-horizontal .author-title {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
}

/* Meta Item with Author */
.meta-item.author-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.875rem;
    }
    
    .author-title,
    .author-role {
        font-size: 0.75rem;
    }
}
