.authors-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}


@media (min-width: 768px) {
    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .authors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.author-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.author-card:hover {
    transform: translateY(-5px);
}

.author-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    padding: 15px;
}

.author-info h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.author-info h2 a {
    color: #333;
    text-decoration: none;
}

.author-info h2 a:hover {
    color: #007bff;
}

.author-stats {
    font-size: 14px;
    color: #666;
}