.list-comic{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    min-height: 620px;
}
.comic-item{

}
.comic-item__thumb{
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.comic-item__thumb img{
    border-radius: 20px;
    aspect-ratio: 3/4;
    transition: all linear 0.05s;
}
.show-rank{
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: white;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.6);
}
.show-count{
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: rgba(0, 0, 0, 0.71);
    color: white;
    text-align: center;
}
.show-count i{
    margin-right: 5px;
}
.btn-tab-ranking{
    display: flex;
    justify-content: center;
}
.tab-ranking{
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid black;
    color: black;
    margin: 0 5px;
    font-weight: bold;
}
.tab-ranking.showing,.tab-ranking:hover{
    text-decoration: none;
    background: #fb617e;
    color: white;
    border: 1px solid #fb617e;
}
.comic-item:hover img{
    transform: scale(1.1);
}
.comic-item__title{
    font-family: Montserrat, sans-serif;
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.comic-item__title:hover{
    text-decoration: none;
    color: black;
}
@media only screen and (max-width: 992px) {
    .list-comic{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (max-width: 768px) {
    .list-comic{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 500px) {
    .comic-item__title{
        font-size: 14px;
    }
}
@media only screen and (max-width: 414px) {

}