.staff-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
}

.staff-author-box .staff-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.staff-author-box .staff-details {
    display: flex;
    flex-direction: column;
}

.staff-author-box .staff-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.staff-author-box .staff-role {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666666;
}

.staff-author-box .staff-bio {
    font-size: 14px;
    color: #444444;
    line-height: 1.5;
}

.staff-author-box .staff-bio p {
    margin: 0 0 10px;
}

.staff-author-box .staff-bio p:last-child {
    margin-bottom: 0;
	padding-bottom: 0;
}