#news-grid-container.loading {
    pointer-events: none;
}

.pointer-events-none {
    pointer-events: none;
}

@media (min-width: 768px) {
    .newshare__faq-title {
        padding: 0;
        position: absolute;
        top: -35px;
        left: -50px;
    }
}

/* Solution 3: Decorative elements positioning and safety */
.ns-decor {
    pointer-events: none; /* Tránh ảnh decor che khuất các link hoặc nút */
}

.ns-decor--left {
    z-index: 0 !important;
}

.ns-decor--right {
    z-index: 1 !important;
}

.pagination {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #006b52;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #006b52;
    transition: all 0.2s ease;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers:hover {
    background: #006b52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 107, 82, 0.2);
}

.pagination .page-numbers.current {
    background: #006b52;
    color: #fff;
    cursor: default;
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #006b52;
    box-shadow: none;
    width: auto;
    padding: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pagination .page-numbers {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
