.author-bio {
    padding: 20px;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.author-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.author-info {
    display: flex;
    align-items: center;
    margin: 10px;
    flex-direction: column;
    flex: 1;
    min-width: 70%;
}
.author-info h3 {
    font-size: 1.5em;
}
.author-info .bio {
    line-height: 1.5em;
}
.author-avatar {
    margin: 15px;
}

.author-avatar img {
    border-radius: 50%;
    min-width: 125px;
    max-width: 125px;
    min-height: 125px;
    max-height: 125px;
    object-fit: cover;
    border: 4px solid #bdbcb8;
}

.author-details {
    flex: 1;
}

.author-details h4 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.author-role {
    font-size: 1.2em;
    color: #666;
}

.author-description {
    margin: 10px 0;
    font-size: 1em;
    color: #555;
}

.author-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #8B7D58;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.author-link:hover {
    background-color: #6C5A40;
}
