/* Authors and Editors Listings Custom Styles */

.author-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.author-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.author-image-wrapper {
    position: relative;
    padding-top: 25px;
    display: flex;
    justify-content: center;
}

.author-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.author-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.author-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.author-meta i {
    color: #05518d;
    width: 20px;
}

.stats-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.author-profile-preview {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-view-profile {
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.pagination {
    margin-top: 40px;
    justify-content: center;
}

.page-item .page-link {
    border-radius: 8px;
    margin: 0 4px;
    color: #05518d;
    border: 1px solid #e2e8f0;
}

.page-item.active .page-link,
.page-item.active span.page-link {
    background-color: #05518d !important;
    border-color: #05518d !important;
    color: #ffffff !important;
}

.page-item .page-link:hover {
    background-color: #f8fafc;
    color: #033d6b;
}

.page-item.active .page-link:hover {
    background-color: #033d6b !important;
    color: #ffffff !important;
}

.banner-overlay {
    background: linear-gradient(135deg, rgba(5, 81, 141, 0.8), rgba(0, 0, 0, 0.4));
}

.cta-section {
    background: linear-gradient(135deg, #05518d 0%, #033d6b 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
}

.cta-section .btn-light {
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 12px;
}

/* Filter Bar Styles */
.filter-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.search-input-group {
    position: relative;
    max-width: 400px;
}

.search-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input-group .form-control {
    padding-left: 45px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.search-input-group .form-control:focus {
    border-color: #05518d;
    box-shadow: 0 0 0 3px rgba(5, 81, 141, 0.1);
}

.limit-select-group .form-select {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding-left: 15px;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
}
