.avatar {
    border-radius: 20%;
    width: 115px;
}

.author-details {
    display: grid;
    grid-template-areas:
        'author-graphics author-text author-text';
    grid-template-columns: 15% 85%;
    gap: 20px;
    background-color: #F2F2F2;
    padding: 15px 10px 15px 20px;
    align-items: center;
    border-radius: 20px;
    margin-top: 20px;
}

.author-text h4 {
    color: #262626;
    font-weight: bold;
}

.author-text p {
    margin-bottom: 0;
    font-size: 15px;
    color: #3E3E3E;
}

.author-text .author-designation {
    color: #7E7E7E;
    margin-bottom: 10px;
}

.social-media-links a {
    padding-right: 10px;
}

/* author profile page  */

.author-profile-card {
    display: grid;
    grid-template-areas:
        'author-graphics author-text';
    grid-template-columns: 15% 85%;
    gap: 20px;
    padding: 10px 10px 10px 20px;
    align-items: center;
    margin-bottom: 20px;
}

.author-full-bio {
    background-color: #F2F2F2;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.author-full-bio p {
    margin-bottom: 0;
    font-size: 15px;
    color: #3E3E3E;
}