/* [B] Elementor Rich Author Bio - Base Styles */

.bdw-rab-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
    transition: all 0.3s ease;
}

.bdw-rab-avatar {
    flex-shrink: 0;
}

.bdw-rab-avatar img {
    width: 80px; /* Fallback size */
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.bdw-rab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdw-rab-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.bdw-rab-bio {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.bdw-rab-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bdw-rab-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: transparent;
}

.bdw-rab-link:hover {
    text-decoration: none;
    border-color: #003366;
    color: #ffffff;
    background-color: #003366;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bdw-rab-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    
    .bdw-rab-actions {
        justify-content: center;
    }
}
