.post-item {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.post-item_header {
    display: flex;
}
.post-item_header-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
}
.post-item_header-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-item_header-text_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    padding: 16px;
    width: 100%;
}

.post-item_header-text_content > p {
        color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.post-item_header-text_content > h2 {
    font-size: 24px;
    font-weight: 600;
}

.post-item_header-text_content > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-item_header-tags, .post-item_header-repost, .like {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-item_header-tags > span {
    background-color: rgba(94, 1, 212, 0.28);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
}

.like > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.like {
    align-items: center;
}

.line {
    height: 100px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-right: 44px;
    margin-left: 44px;
}

.post-item_content {
    width: 100%;
    display: flex;
    align-items: stretch;
    margin: 16px;
}

.chapter-links {
    margin-left: -40px;
}

p {
    margin: 0;
}

.delay {
    display: flex;
    flex-direction: column;
}

.delay > p {
    font-size: 16px;
}

.delay > ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.delay > ul > li {
    color: rgba(255, 255, 255, 0.8) ;
    font-size: 14px;
}

.post-item_text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    width: 95%;
}

.post-item_text > p {
    width: 95%;
}

.mob_post_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-tags {
    display: flex;
    gap: 10px;
}

.single-tags > span {
    background-color: rgba(94, 1, 212, 0.28);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
}

.mob-post_img {
    width: 100%;
    border-radius: 12px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.post-author_mob {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.post-author_mob > img {
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.mob-top_posts {
    display: flex;
    margin-top: 16px;
    margin-bottom: 16px;
    align-items: center;
    gap: 32px;
}


.mob-top_posts > img {
    transform: rotate(180deg);
}
