.main-blog .list-post {
    row-gap: 24px;
}

.main-blog .blog-title {
    font-size: 20px;
    line-height: 31px;
    font-weight: 600;
    color: black;
    margin: 24px 0;
}

.main-blog .post-item .inner {
    position: relative;
    padding: 8px 8px 12px 8px;
    border-radius: 18px;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .4s;
}

.main-blog .post-item .inner:hover {
    transform: translateY(-10px);
}

.main-blog .post-item .inner:hover .item-post__image {
    opacity: 0.8;
}

.main-blog .post-item .item-post__image {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border-radius: 9px;
    overflow: hidden;
    transition: all .3s;
}

.main-blog .post-item .item-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-blog .post-item .item-post__content {
    margin-top: 8px;
}

.main-blog .post-item .item-post__content .post-title a {
    margin-bottom: 12px;
    padding: 8px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    color: #000;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all 0.4s;
}

.main-blog .post-item .inner:hover .post-title a,
.main-blog .post-item .item-post__content .post-title a:hover {
    color: #e10422;
}

.main-blog .item-post__content .post-exceprt *,
.main-blog .item-post__content .post-exceprt {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.main-blog .item-post__content .post-exceprt {
    margin-bottom: 12px;
}

.main-blog .item-post__content .post-exceprt p:last-child {
    margin-bottom: 0;
}

.main-blog .post-meta {
    display: flex;
    margin-top: auto;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.main-blog .post-meta .post-info p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}

.main-blog .post-link a {
    width: 100%;
}

.main-blog .list-pagination {
    padding-left: 0;
    list-style: none;
    margin: 24px 0;
}

.main-blog .list-pagination .item-pagination .number {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 21.03px;
    color: #000;
    transition: all .3s;
    padding: 0px 6px;
    margin: 0px 3px;
}

.main-blog .list-pagination .item-pagination .number:hover,
.main-blog .list-pagination .item-pagination .number.current {
    background-color: #f40c44;
    color: #fff;
}
