.author-wrapper {
    --avatar: 200px;
    display: grid;
    grid-template-columns: calc(100% - var(--avatar) - 64px) var(--avatar);
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    color: #595959;
    font-size: 18px;
}

.author-title {
    font-size: 32px;
    text-transform: capitalize;
    color: var(--pr-color-primary);
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.author-box-right {
    width: 100%;
}

.author-description {
    margin-top: 16px;
    margin-bottom: 10px;
    max-height: 80px;
    overflow: hidden;
    position: relative;
}

.author-description::after {
    content: '';
    width: 100%;
    height: 26px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 75.52%);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 222ms ease-in-out;
}

.author-description.has-extra-content::after {
    opacity: 1;
}

.author-description.showall-content::after {
    opacity: 0;
}

.author-description-content>*:first-child {
    margin-top: 0;
}

.author-description-content>*:last-child {
    margin-bottom: 0;
}

.author-showmore {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 222ms ease-in-out;
}

.author-showmore span {
    display: block;
    background-color: #fff;
    padding: 2px 12px;
    font-family: var(--pr-font-family);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.author-showmore span:hover {
    text-decoration: underline;
}

.author-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    grid-gap: 10px;
}

#posts-wrapper .list-posts-category {
    grid-template-areas: 'listTitle listTitle' 'bMain bSidebar';
}

.lastest-frorm {
    grid-area: listTitle;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: var(--pr-color-primary);
}

.autho-social-item {
    display: block;
}

.author-description.has-extra-content .author-showmore {
    pointer-events: all;
    opacity: 1;
}


.author-image {
    width: 100%;
    display: block;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.author-image::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.author-image img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

#posts-wrapper .see-more-box {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#posts-wrapper .btn-see-more:hover {
    background: var(--pr-color-primary);
}

#posts-wrapper .btn-see-more.disabled {
    background-color: #f7b386;
    border: var(--pr-size-border-width-small) solid #f7b386;
}

#posts-wrapper .btn-see-more {
    border-radius: 6px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    background-color: var(--pr-color-secondary);
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--pr-font-family);
    transition: all 300ms ease-out;
    margin-top: 16px;
}


.editor-box {
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: var(--pr-trans-standard);
}

.editor-box:after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    height: 70%;
    width: 100%;
    z-index: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), to(#ffffff));
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #ffffff);
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
}

.editor-box.active {
    height: auto;
}

.editor-box.active:after {
    display: none;
}


span.btn-see-more-content,
span.btn-see-less-content {
    height: 46px;
    line-height: 44px;
    border: 2px solid var(--pr-color-information-600);
    padding: 0 30px;
    border-radius: 46px;
    color: var(--pr-color-information-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--pr-trans-standard);
}

span.btn-see-more-content:hover,
span.btn-see-less-content:hover {
    background-color: var(--pr-color-information-600);
    color: #fff;
}

.action-more-content,
.action-more-toc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px;
}

span.btn-see-less-content,
span.btn-see-less-toc {
    display: none;
}

.action-more-toc.more span.btn-see-more-toc,
.action-more-content.more span.btn-see-more-content {
    display: none;
}

.action-more-content.more span.btn-see-less-content,
.action-more-toc.more span.btn-see-less-toc {
    display: block;
}