.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0.125rem solid transparent;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-text-inverse);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.arrow-button:hover,
.arrow-button:focus {
  background: var(--color-primary);
  color: var(--color-text);
}

.arrow-button__icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
