.author-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 80%;
}

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

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.author-name {
    font-size: 26px;
    font-weight: bold;
}

.author-bio {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

.author-posts {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.author-posts  .author-post-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.author-posts .author-post-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

.author-posts .author-post-content {
    padding: 15px;
}

.author-posts .author-post-title {
    font-size: 18px;
    font-weight: 500;
}

.author-posts .author-post-title a {
    text-decoration: none;
    color: inherit;
}

.author-posts .author-post-title a:hover {
    color: #9b2825;
}

.author-pagination {
    text-align: center;
    margin: 30px 0;
}