.abp-author-bio {
    margin: 3rem 0 2rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.abp-author-bio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.abp-author-bio:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.abp-author-bio-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
    position: relative;
    display: inline-block;
}

.abp-author-bio-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.abp-author-bio-content {
    position: relative;
    z-index: 1;
}

.abp-author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    transition: color 0.3s ease;
}

.abp-author-bio:hover .abp-author-name {
    color: #6366f1;
}

.abp-author-bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    text-align: justify;
}

@media (prefers-color-scheme: dark) {
    .abp-author-bio {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .abp-author-bio::before {
        background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    }
    
    .abp-author-bio-title {
        color: #a78bfa;
    }
    
    .abp-author-bio-title::after {
        background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
    }
    
    .abp-author-name {
        color: #f3f4f6;
    }
    
    .abp-author-bio:hover .abp-author-name {
        color: #a78bfa;
    }
    
    .abp-author-bio-text {
        color: #d1d5db;
    }
}

@media (max-width: 768px) {
    .abp-author-bio {
        margin: 2rem 0 1.5rem 0;
        padding: 2rem 1.5rem;
    }
    
    .abp-author-bio-title {
        font-size: 1rem;
    }
    
    .abp-author-name {
        font-size: 1.3rem;
    }
    
    .abp-author-bio-text {
        font-size: 1rem;
        text-align: left;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.abp-author-bio {
    animation: fadeInUp 0.6s ease-out;
}

.abp-author-bio.modern-style {
    background: #ffffff;
    border: none;
    border-left: 4px solid #6366f1;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    padding-left: 3rem;
}

.abp-author-bio.modern-style::before {
    display: none;
}

.abp-author-bio.modern-style .abp-author-bio-title {
    color: #374151;
}

.abp-author-bio.modern-style .abp-author-bio-title::after {
    display: none;
}

.abp-author-bio.glass-style {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.abp-author-bio.glass-style::before {
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}