/* Font Family */
.m-post-cat-widget {
    /* font-family: "Open Sans", Sans-serif; */
    font-size: 10px;
}
/* --- */
.postcatSwiper .image-inner {
    padding-top: 75%;
}

/* box post */
.pc-infor-box {
    flex-basis: 100%;
}
.pc-infor-box .box-inner {
    position: relative;
}
.pc-infor-box .box-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 1.2em;
    overflow: hidden;
}
.pc-infor-box .box-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ffece9;
}
.pc-infor-box .box-image img.img-contain {
    padding: 3em;
    object-fit: contain;
}
.pc-infor-box .box-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}
.pc-infor-box .box-text {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.4em 3em;
    border-radius: 0 0 1.2em 1.2em;
    color: #fff;
    text-align: center;
    transition: .3s;
}
.pc-infor-box:hover .box-text {
    background: rgba(226, 184, 179, 0.8);
    padding: 3em;
}
.pc-infor-box .title {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1.3;
}
.pc-infor-box .box-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* pagination */
.m-swiper-pagi {
    padding-top: 3em;
    display: flex;
    justify-content: center;
    gap: .5em;
}
.m-swiper-pagi > span {
    margin: 0 !important;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    transition: .3s linear;
}
.m-swiper-pagi > span.swiper-pagination-bullet-active {
    width: 30px;
    background-color: var(--theme-color);
}

/* RESPONSIVE */
@media only screen and (min-width: 1201px) {
    .m-postcat-title .pc-cat-item:hover {
        background: #5A8141;
        color: #fff;
    }
    .m-postcat-title .pc-cat-item:hover .icon {
        filter: brightness(100);
    }
}
@media only screen and (max-width: 1200px) {
    .m-post-cat-widget {
        font-size: 9px;
    }
}
@media only screen and (max-width: 849px) {

}
@media only screen and (max-width: 449px) {
    .m-post-cat-widget {
        font-size: 8px;
    }
}