.active {
  text-decoration: underline;
}

.centered-flex {
  display: flex;
  gap: 0.75rem; /* 3 spacing unit (tailwind: gap-3) */
  font-size: 1.5rem; /* text-md (tailwind: text-md) */
  width: 100%; /* w-full */
  justify-content: center; /* justify-center */
}

.button-filter {
  background: none;
  border: none;
  font-size: medium;
  font-family: var(--wp--preset--font--source-sans-3);
  font-weight: medium;
}

.space-x-10 {
  gap: 1.5rem; 
}

.carousel {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
  margin-top: 1.5rem;
}

.carousel-container {
  overflow: hidden;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.carousel-items {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.item {
  flex: 1 0 calc(100% / 3);
}

.button_slide {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (max-width: 600px) {
  .item {
    flex: 1 0 100%;
  }
}
