/**
 * @file
 * Догортування каталогу.
 */

/* Пейджер лишається в розмітці для пошукових систем і роботи без JS. */
.view-catalog--infinite .pager,
.view-catalog--infinite nav[role="navigation"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.catalog__sentinel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: var(--sr-space-6) 0;
}

.catalog__spinner {
  display: none;
  width: 26px;
  height: 26px;
  border: 2px solid var(--sr-line);
  border-top-color: var(--sr-red);
  border-radius: 50%;
  animation: sr-spin 0.7s linear infinite;
}

.catalog__sentinel.is-loading .catalog__spinner {
  display: block;
}

@keyframes sr-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .catalog__spinner {
    animation-duration: 2s;
  }
}
