/* Stránkování skryté jen vizuálně – element zůstává v DOM kvůli SEO */
nav.pagination {
  display: none !important;
}

/* CTA — výchozí Nexus; barvy z BO přepíší inline style v footeru */
.is-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  margin: 2rem auto 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #070707;
  color: #fff;
  border: 1px solid #070707;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.is-load-more:hover:not(:disabled) {
  background: #293047;
  border-color: #293047;
  color: #fff;
}

.is-load-more:disabled {
  opacity: 0.55;
  cursor: default;
}

.is-load-more:focus-visible {
  outline: 2px solid #293047;
  outline-offset: 2px;
}

.is-sentinel {
  width: 100%;
  height: 1px;
}

/*
 * Konec výpisu — Nexus: tenká linka + muted text (#757575 / #293047),
 * bez šedého boxu a stínu.
 */
.is-load-more-done {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 36rem;
  margin: 2.5rem auto 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  color: #757575;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.is-load-more-done::before,
.is-load-more-done::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  margin: 0;
  background: #f3f3f3;
}

.is-load-more-done__text {
  flex: 0 0 auto;
  color: #293047;
  font-weight: 600;
  letter-spacing: 0.06em;
}
