/* Author Detail */
.author-sidebar-wrapper {
    position: sticky;
    top: 120px;
}
.author-sidebar {
    padding: 30px;
    border: 1px solid #772BCB;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.author-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: #f2e6ff;
    z-index: -1;
}
.author-profile-block {
    width: 151px;
    height: 151px;
    margin: 0 auto 16px;
    border: 1px solid #772BCB;
    border-radius: 100%;
}
.author-profile-block > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
   
}
.author-profile-content h2 {
    color: #232323;
    padding-bottom: 16px;
    margin-bottom: 16px;
    position: relative;
    text-align: center;
}
.author-profile-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 58px;
    height: 2px;
    background-color: #D9D9D9;
    margin: 0 auto;
}
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
}
.author-content h2 {
    color: #171717;
}
.author-para p:not(:last-child) {
    margin-bottom: 20px;
}
.feature-list-box {
    margin-top: 40px;
}
.read-time {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
/*.author-posted {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}*/
.author-posted > img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 100%;
    flex-shrink: 0;
}
.author-name a {
    white-space: nowrap; 
    width: 140px; 
    overflow: hidden;
    text-overflow: ellipsis; 
}
/* Author Detail End */

/* MEDIA :: 1199px */
@media only screen and (max-width: 1199px) {
    /* Author Detail */
    .author-sidebar {
        padding: 20px;
    }
    .author-profile-block {
        width: 140px;
        height: 140px;
    }
    .social-media {
        gap: 14px;
    }
    /* Author Detail End */
}
/* MEDIA :: 992px */
@media only screen and (max-width: 991px) { 
    .author-sidebar-wrapper {
        position: static;
    }
    .author-sidebar {
        margin-bottom: 20px;
    }
    .author-profile-block {
        width: 120px;
        height: 120px;
    }
}
/* MEDIA :: 991px */
@media only screen and (max-width: 991px) { 
    .author-sidebar-wrapper {
        position: static;
    }
    .author-sidebar {
        margin-bottom: 20px;
    }
    .author-profile-block {
        width: 120px;
        height: 120px;
    }
     .author-sidebar::before {
        height: 90px;
    }
}
/* MEDIA :: 767px */
@media only screen and (max-width: 767px) { 
    .author-profile-block {
        width: 100px;
        height: 100px;
    }
    .author-sidebar::before {
        height: 80px;
    }
}
/* MEDIA :: 575px */
@media only screen and (max-width: 575px) { 
    .author-profile-block {
        width: 80px;
        height: 80px;
    }
    .author-sidebar::before {
        height: 70px;
    }
}