.page-section-buttons-wrapper {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.page-section-buttons-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.page-section-buttons {
  display: flex;
  padding: var(--Spacing-L, 2rem) 0rem;
  align-items: flex-start;
  gap: var(--Spacing-S, 1.2rem);
}

.scroll-button {
  border-radius: 9rem;
  background: #F4F4F4;
  border: none;
  display: flex;
  padding: 1.7rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  align-self: stretch;
  cursor: pointer;
  height: 6.4rem;

/*   color: #FFF; */
  /* Body/20/med */
  font-family: "Involve";
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem; /* 150% */
}

.scroll-button:hover {
  background-color: #ddd;
}

.scroll-button.active {
  background-color: #333;
  color: #fff;
}


@media (max-width: 768px) {
  .page-section-buttons-wrapper {
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
    overflow-x: auto; /* Horizontal scrolling enabled */
    white-space: nowrap; /* Prevent wrapping */
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .page-section-buttons-wrapper::-webkit-scrollbar {
    display: none; /* Hide the scrollbar on Webkit browsers (Chrome, Safari, Opera) */
  }

  .page-section-buttons {
    display: flex;
    padding: 2rem 2rem; 
    gap: 0.7812rem; 
    flex-wrap: nowrap; 
    justify-content: flex-start; 
  }

  .scroll-button {
	height: 4rem;
    padding: 0rem 1.6rem; 
    font-size: 1.6rem;
    line-height: 140%; 
  }

  .scroll-button:hover {
    background-color: #ddd;
  }

  .scroll-button.active {
    background-color: #333;
    color: #fff;
  }
}


