/* All Authors Page Styling - Simplified Card */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.author-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px S15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* بخش تصویر اصلی کارت */
.author-card-image {
    height: 220px;
    /* ارتفاع ثابت برای تصویر اصلی */
    overflow: hidden;
}

.author-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* بخش جزئیات کارت */
.author-card-details {
    padding: 6px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
article.author-card {
    margin-bottom: 16px;
}
.author-card-name {
    margin-bottom: 1px !important;
}

.author-card-name a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.author-card-bio {
    color: #666;
    margin: 10px 0;
    font-size: 0.9em;
    flex-grow: 1;
    /* باعث می‌شود بخش بیوگرافی فضای خالی را پر کند */
}

.author-card-meta {
    margin-top: 15px;
    font-size: 0.8em;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.author-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}

nav.pagination-wrapper {
    text-align: center;
}

nav.pagination-wrapper a.page-numbers {
    background-color: #c2c2c2;
    padding: 6px 10px;
    color: #000;
}

nav.pagination-wrapper span.page-numbers.current {
    background-color: #064897;
    padding: 6px 10px;
    color: #ffffff;
}