.author-search-container-a87a87d6 {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.author-search-form-a87a87d6 {
    display: flex;
    width: 100%;
    max-width: 400px;
    border: 1px solid #e1e8ed;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}
.author-search-form-a87a87d6 input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
}
.author-search-form-a87a87d6 button {
    border: none;
    background: transparent;
    padding: 0 16px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
}
.author-grid-a87a87d6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}
.author-card-a87a87d6 {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.author-card-a87a87d6:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.author-avatar-a87a87d6 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 16px;
    overflow: hidden;
    background: #eef2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.author-avatar-a87a87d6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.author-initial-a87a87d6 {
    font-size: 32px;
    font-weight: bold;
    color: #0073aa;
    text-transform: uppercase;
}
.author-name-a87a87d6 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    word-break: break-word;
}
.author-count-a87a87d6 {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}
.author-tags-a87a87d6 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
    width: 100%;
}
.author-tag-item-a87a87d6 {
    background: #f0f2f5;
    color: #4b5563;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.author-pagination-a87a87d6 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    width: 100%;
}
.author-pagination-a87a87d6 .page-numbers {
    padding: 8px 14px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
}
.author-pagination-a87a87d6 .page-numbers.current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.no-authors-a87a87d6 {
    text-align: center;
    color: #666;
    font-size: 16px;
    width: 100%;
}
@media (max-width: 767px) {
    .author-grid-a87a87d6 {
        grid-template-columns: 1fr !important;
    }
}
