.nxt-post-author-info-wrapper {
    --wrapper-gap: 32px;

    display: flex;
    flex-direction: column;
    gap: var(--wrapper-gap);
    margin: var(--wrapper-gap) 0;
}

.nxt-post-author-info-wrapper__title {
    margin: 0;
}

.nxt-post-author-info {
    display: flex;
    align-items: start;
    gap: 20px;
}

.nxt-post-author-info__image {
    flex-shrink: 0;
    height: 80px;
    aspect-ratio: 1;
}

.nxt-post-author-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.nxt-post-author-info__content {
    display: flex;
    flex-direction: column;
}

.nxt-post-author-info__name {
    font-size: var(--h3-font-size) !important;
    line-height: var(--h3-font-line-height) !important;
    margin: 0;
    font-weight: 700 !important;
}

.nxt-post-author-info__position {
    margin: 8px 0 0 0;
}

.nxt-post-author-info__biography {
    margin: var(--p-margin-gap) 0 0 0;
    font-size: var(--text-small) !important;
	line-height: var(--text-small-line-height) !important;
}


@media (max-width: 1280px) {
    .nxt-post-author-info-wrapper {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 1024px) {
    .nxt-post-author-info-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}