/* Ẩn hoàn toàn các phân trang mặc định của theme */
.nav-pagination,
.pagination,
.ux-pagination,
.page-numbers,
.woocommerce-pagination {
    display: none !important;
}

/* Định dạng Card bài viết */
.fis-post {
    margin-bottom: 30px; /* Tạo khoảng cách đều giữa các hàng */
}

.fis-post .col-inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.fis-post .col-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Phần chữ và Metadata bài viết */
.fis-post .box-text {
    padding: 15px;
}

.fis-post .post-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 8px 0;
    font-weight: 600;
}

.fis-post .post-title a {
    color: #333;
}

.fis-post .post-title a:hover {
    color: #446084; /* Màu chủ đạo mặc định Flatsome */
}

.post-cat {
    font-size: 12px;
    color: #ff6600; /* Có thể đổi thành màu bạn thích */
    text-transform: uppercase;
    font-weight: bold;
}

.post-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 5px;
}

/* Hiệu ứng nhấp nháy cho Skeleton loader */
@keyframes fisBlink {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.fis-post-skeleton .sk-img,
.fis-post-skeleton .sk-title,
.fis-post-skeleton .sk-meta {
    animation: fisBlink 1.4s infinite ease-in-out;
}