/* Homepage services carousel (3+ featured) — arrows below cards, no overlap */
.lvb-svc-carousel {
  position: relative;
}
.lvb-svc-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.lvb-svc-carousel__track::-webkit-scrollbar {
  display: none;
}
.lvb-svc-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 768px) {
  .lvb-svc-carousel__slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
.lvb-svc-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.lvb-svc-carousel__nav {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 18, 18, 0.95);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.lvb-svc-carousel__nav:hover:not(:disabled) {
  background: #ff8c00;
  color: #000;
  border-color: #ff8c00;
}
.lvb-svc-carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (min-width: 768px) {
  .lvb-svc-carousel__controls {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .lvb-svc-carousel__nav {
    width: 3.25rem;
    height: 3.25rem;
  }
}
