/* ================================
   VALUES — SINGLE SLIDE FADE
================================ */

.values-fade-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  min-height: 160px;
}

.fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  padding: 10px 20px;
}

.fade-slide.active {
  opacity: 1;
  position: relative;
}

.fade-slide h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.fade-slide p {
  color: var(--phnx-muted);
  margin: 0;
}

/* Dots */
.fade-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.fade-dots button {
  width: 10px;
  height: 10px;
  background: #c8c8c8;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.fade-dots button.active {
  background: #111;
}
