.svc-media .carrusel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carrusel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.carrusel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.svc-media .carrusel img,
.svc-media .carrusel video {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carrusel-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(14, 15, 18, 0.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s, border-color 0.2s;
}
.carrusel-btn:hover,
.carrusel-btn:focus-visible {
  background: rgba(14, 15, 18, 0.8);
  border-color: var(--yellow);
  outline: none;
}
.carrusel-prev { left: 10px; }
.carrusel-next { right: 10px; }

.carrusel[data-count="1"] .carrusel-btn,
.carrusel[data-count="1"] .carrusel-dots {
  display: none;
}

.carrusel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carrusel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(14, 15, 18, 0.35);
  cursor: pointer;
  transition: background 0.2s, width 0.2s, border-color 0.2s;
}
.carrusel-dot:hover {
  border-color: var(--yellow);
}
.carrusel-dot.is-active {
  width: 20px;
  border-radius: 5px;
  background: var(--yellow);
  border-color: var(--yellow);
}

@media (max-width: 480px) {
  .carrusel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
}
