/* 
 * Bluworks Author Archive Styles 
 */

/* Reuse basic archive styles */
.blu-blog-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* --- Author Hero Section --- */
.blu-author-hero {
    background-color: #f2f9fe;
    padding-top: 64px;
    padding-bottom: 48px;
    text-align: center;
}

.blu-author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 768px;
    margin: 0 auto;
}

/* Avatar Circle */
.blu-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blu-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.blu-profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.blu-profile-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1570EF;
    background: rgba(21, 112, 239, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.blu-profile-name {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.blu-profile-bio {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin: 8px 0 0 0;
    max-width: 600px;
}

/* --- Filter Bar Tweaks --- */
.blu-section-title {
    font-size: 24px;
}

/* --- RTL Support --- */
:lang(ar) .blu-profile-name,
:lang(ar) .blu-profile-bio {
    font-family: 'Noto Sans Arabic', sans-serif !important;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .blu-author-hero {
        padding-top: 80px;
        padding-bottom: 64px;
    }
    .blu-profile-name {
        font-size: 48px;
    }
}