.list-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding-top: 0.5rem;
}

.list-load-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  min-width: min(100%, 18rem);
  padding: 0.8rem 2rem;
  border: 1.5px solid rgba(88, 159, 220, 0.32);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #3a7db5;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(15, 28, 46, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.list-load-more__btn::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.85;
}

.list-load-more__btn:hover:not(:disabled),
.list-load-more__btn:focus-visible {
  border-color: rgba(88, 159, 220, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #eef6fd 100%);
  color: #2f6ea3;
  box-shadow:
    0 14px 34px rgba(88, 159, 220, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.list-load-more__btn:active:not(:disabled) {
  transform: translateY(0);
}

.list-load-more__btn:disabled {
  opacity: 0.72;
  cursor: wait;
}

.list-load-more__status {
  margin: 0;
  font-size: 0.875rem;
  color: #5f6d82;
  text-align: center;
}

.list-load-more__status.is-error {
  color: #d6534e;
}
