/* Page Header */
.page-header {
    background: var(--gradient-hero);
    padding: 3rem 0;
    text-align: center;
    color: var(--bg-white);
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.page-header h1 i {
    color: var(--accent-light);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-white);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* Authors Grid */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 576px) {
    .authors-grid {
        grid-template-columns: 1fr;
    }
}

/* Author Card */
.author-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.author-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.author-card-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.author-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.author-card-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.author-card:hover .author-card-avatar {
    transform: scale(1.05);
}

.author-card-body {
    padding: 1.5rem;
}

.author-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: center;
    color: var(--secondary);
}

.author-card-name a {
    color: inherit;
    text-decoration: none;
}

.author-card-name a:hover {
    color: var(--primary);
}

.author-card-title {
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.author-card-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.author-card-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.author-stat {
    text-align: center;
}

.author-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.author-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-card-footer {
    text-align: center;
}

.author-card-footer .btn {
    padding: 0.75rem 2rem;
    background: var(--gradient-accent);
    border: none;
    color: var(--bg-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.author-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 165, 152, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 767.98px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}
