@media (max-width: 576px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Sembunyikan post ke-4 di desktop dan mobile */
.ct-container .ct-post-item:nth-child(4),
.entries article:nth-child(4) {
    display: none;
}

/* Tampilkan post ke-4 hanya di tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .ct-container .ct-post-item:nth-child(4),
    .entries article:nth-child(4) {
        display: block !important;
    }
}