.author-profile-box {
    display: flex;
    align-items: center;
    background-color: #F7f8f9;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.author-avatar {
    margin-right: 15px;
}

.author-avatar img {
    border: 2px solid #ddd;
    width: 100px; /* Image size */
    height: 100px;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.5rem;
    margin: 0;
}

.author-name a {
    text-decoration: none;
    color: #333;
}

.author-designation,
.author-bio,
.author-location,
.author-posts-count {
    font-size: 12px;
    margin: 5px 0;
}

.author-designation {
    font-weight: bold;
}





/*css for author page information layout*/

.author-info-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Adjust alignment as per design */
    padding: 20px;
}

.author-info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 20px; /* Adjust margin between profile image and text */
}

.author-details {
    margin-top: 10px; /* Adjust spacing between name and designation */
    margin-left: 20px; /* Adjust margin between profile image and text */
}


.author-post-count {
    margin-top: 10px; /* Adjust spacing between designation and post count */
}

.author-post-count span {
    font-weight: bold;
    font-size: 1.5em; /* Adjust font size of post count */
}
