.comic_post__item {
    position: relative;
    margin-bottom: 1rem;
    transition: all ease .3s;
}

.comic_post__item:hover img {
    transform: scale(1.08);
}

.comic_post__image {
    display: block;
    height: calc(((var(--container-width) - 20px) / 6) * 4/3);
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.comic_post__content {
    position: absolute;
    z-index: 1;
    bottom: 0;
    padding: 10px;
    width: 100%;
    left: 0;
}

.comic_post__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease .3s;
    border-radius: 9px;
}

.post_title a,
.post_title {
    font-size: 1rem;
    display: inherit;
    color: #fff;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin: 0;
}

.post_title a:hover {
    color: #fab20d;
}

.comic_post__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mg.comic_post__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.manga .comic_post__summary {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@keyframes pulseUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.manga .comic_post__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.manga .post_title {
    flex: 1;
    display: flex;
    margin-bottom: 5px;
}

.chapter-item {
    display: flex;
    padding: 4px 10px;
    border: 1px solid #f5930c;
    margin-bottom: 5px;
    border-radius: 20px;
    color: #fff;
    background-color: #2b2828d1;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease all;
    font-size: 15px;
    position: relative;
}

.chapter-item:hover {
    background-color: #fab20d;
}

.chapter-item .post-on {
    font-size: 11px;
    color: #aaa;
}

.post-on.font-meta {
    position: absolute;
    top: 50%;
    right: 27px;
    z-index: 1;
    font-size: 9px;
    transform: translateY(-50%);
}

.chapter-item .chapter {
    display: block;
    width: 100%;
}

.chapter-item::after {
    position: absolute;
    content: '🔥';
    top: 4px;
    right: 11px;
    z-index: 1;
    font-size: 14px;
}

.chapter-item .hidTitle {
    display: none;
}

.manga-title-badges {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 8px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    margin-right: 7px;
    color: #fff;
    background-color: #000;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
}

.manga-title-badges.new {
    background-color: #37b7da;
}

.comic_post__title {
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 1rem;
    flex: 1;
}

.text-ui-dark .comic_post__title a {
    color: #fff;
}

.post-total-rating {
    display: inline-flex;
    gap: 0px;
    line-height: 1;
    align-items: center;
    margin-bottom: 10px;
}

.ratings_stars {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 20px;
    font-style: normal;
}

.ratings_stars::before {
    content: "☆";
    position: absolute;
    inset: 0;
    color: #cfcfcf;
}

.ratings_stars.rating_current::before,
.ion-ios-star.rating_current::before {
    content: "★";
    color: #f5c518;
}

.ratings_stars.rating_current_half::before,
.ion-ios-star-half.rating_current_half::before {
    content: "☆";
    color: #cfcfcf;
}

.ratings_stars.rating_current_half::after,
.ion-ios-star-half.rating_current_half::after {
    content: "★";
    position: absolute;
    inset: 0;
    color: #f5c518;
    clip-path: inset(0 51% 0 0);
    transition: clip-path .2s ease;
}

.ratings_stars.rating_empty::before {
    content: "☆";
    color: #cfcfcf;
}

.font-meta.total_votes {
    line-height: 1;
    margin-left: 5px;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .comic_post__image {
        height: calc(((100vw - 20px) / 2) * 4/3);
    }

}

/*Ednd Responsive */