/* AccessHub layout extras (visual only) */

@keyframes page-help-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.34);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 0.45rem rgba(16, 185, 129, 0);
        transform: scale(1.04);
    }
}

.page-help-pulse {
    animation: page-help-pulse 2.4s ease-in-out infinite;
}

.scrollbar-none {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-none::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .page-help-pulse {
        animation: none;
    }
}
