/********** SLIDER **********/
.slider {
  max-width: 58.75em;
  margin: 0em auto -2.5em auto;
}

.slide-viewer {
  position: relative;
  overflow: hidden;
  /* Use aspect-ratio for consistent scaling; fallback height for old browsers */
  height: 35em;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.slide-group {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  /* Ensure images within slides don't distort */
  object-fit: cover;
}

.slide:first-child {
  display: block;
}


/********** BUTTONS **********/
.slide-buttons {
  text-align: center;
}

.slide-btn {
  /* Standard resets for all browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  color: #000;
  font-size: 3rem;
  /* Use rem for better scaling */
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

/* Accessibility: Add focus styles for keyboard users */
.slide-btn:focus-visible {
  outline: 2px solid #ed8e6c;
  outline-offset: 4px;
}

.slide-btn:hover {
  color: #ed8e6c;
}

.slide-btn.active {
  color: #ed8e6c;
}
