/* Кнопка "Показати ще" (SC Block paginated) */
.scb-load-more{
  /* базові змінні (можеш підкрутити за смаком) */
  --scb-pad-x: 1rem;
  --scb-pad-y: .6rem;
  --scb-bar-h: 6px;      /* висота прогрес-бару */
  --scb-bar-inset: .45rem;

  position: relative;
  display: flex;                  /* блочна кнопка */
  align-items: center;
  justify-content: center;
  gap: .5rem;

  /* центр по контейнеру/сторінці */
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto;

  /* відступи: знизу більше — для прогрес-бару */
  padding: var(--scb-pad-y) var(--scb-pad-x) calc(var(--scb-pad-y) + var(--scb-bar-h) + .35rem);

  background: #fff;               /* білий фон */
  color: #000;                    /* чорний текст */
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  cursor: pointer;
  user-select: none;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
}

.scb-load-more:hover{
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.scb-load-more:active{
  transform: translateY(1px);
}

.scb-load-more:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* Лічильник 10/32: чорний текст, але друга частина трохи приглушена */
.scb-load-more .scb-counter{ color: #000; font-weight: 600; }
.scb-load-more .scb-counter .scb-total{ opacity: .5; }

/* Прогрес-бар внизу кнопки */
.scb-load-more .scb-progress{
  position: absolute;
  left: calc(var(--scb-pad-x) * .6);
  right: calc(var(--scb-pad-x) * .6);
  bottom: var(--scb-bar-inset);
  height: var(--scb-bar-h);
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.scb-load-more .scb-progress-bar{
  display: block;
  height: 100%;
  width: 0;
  background: #2563eb;            /* синя смуга */
  border-radius: inherit;
  transition: width .25s ease;
}

/* Фокус (доступність) */
.scb-load-more:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,.25), 0 1px 2px rgba(0,0,0,.05);
}
