.post-author-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.post-author-box .author-img {
    min-width: 170px;
    min-height: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.post-author-box .author_info .author_info-name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.post-author-box .author_info .author_info-description {
    font-size: 15px;
    padding: 8px 0;
}

@media only screen and (max-width: 768px) {
    .post-author-box {
        margin-top: 16px;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .post-author-box .author_info {
        padding: 8px;
    }

    .post-author-box .author_info .author_info-description { 
        text-align: center;
    }
}

/* css post-content */
.post_content {
    text-align: justify;
}

.post_content h2{
    margin: 18px 0;
}

.post_content h2 img {
    margin: 0;
}

.post_content img {
    width: 100%;
    margin: 20px 0;
}

.post_content span{
    display: block;
    line-height: 30px;
}

.post_content li {
    margin-left: 20px;
}

@media only screen and (max-width: 768px) { 
    .post_content ul { 
        padding: 0;
    }
}