.species {
  /* color: var(--iucn-color, currentColor); */
  color: var(--color-black);
}

.scroll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-controls {
  position: relative; /* was: relative */
  left: auto; /* was: left: var(--gap-x); */
  display: flex;
  gap: 0.5rem;
  justify-content: end;
}

.scroll-arrow {
  background: var(--color-white);
  border: none;
  width: var(--breche-x);
  height: var(--breche-y);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--color-black);
}

.scroll-arrow:hover {
  color: var(--color-s-orange);
}

.scroll-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.scroll-arrow:disabled:hover {
  border-color: var(--color-gray);
}

/* Horizontal scrolling section */
.scroll-section {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: var(--breche-s);
  padding: 0 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth; /* Smooth scrolling */
}

.scroll-section::-webkit-scrollbar {
  display: none;
}

.scroll-dog {
  flex: 0 0 auto;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-sans);
}

.scroll-dog img {
  width: 405px;
  height: 235.5px;
  object-fit: cover;
  display: block;
}
