/* Category Header */
.janl-category-header {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Mobile Layout for Category Header */
@media (max-width: 767px) {
    .janl-category-header {
        text-align: center;
    }
}

/* Grid Layout */
.janl-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Mobile Layout */
@media (max-width: 767px) {
    .janl-post-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Item Styling */
.janl-post-item {
    text-align: center;
}

.janl-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #ccc;
}

.janl-post-title {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

/* Pagination Styling */
.janl-pagination {
    text-align: right;
    margin-top: 30px;
}

.janl-pagination a,
.janl-pagination span {
    margin: 0 5px;
    padding: 4px 8px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

.janl-pagination a:hover {
    background-color: #f1f1f1;
}

.janl-pagination .current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Loading Overlay */
.janl-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

/* Spinner */
.janl-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: janl-spin 1s linear infinite;
}

@keyframes janl-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Ensure the grid container is relatively positioned */
.janl-post-grid {
    position: relative;
}