/* Scoped under .site-slider — safe to delete with the slider module */

.site-slider {
  position: relative;
  width: 100%;
  margin-block: 1rem;
  --site-slider-nav-color: #fff;
}

/* Light mode — matches Blowfish text-neutral-700 / primary-600 accents */
html:not(.dark) .site-slider {
  --site-slider-pagination-inactive: rgb(var(--color-neutral-400));
  --site-slider-pagination-active: rgb(var(--color-primary-600));
  --swiper-theme-color: rgb(var(--color-primary-600));
}

/* Dark mode — matches Blowfish dark:text-neutral-200 / dark:text-primary-400 */
html.dark .site-slider {
  --site-slider-pagination-inactive: rgb(var(--color-neutral-500));
  --site-slider-pagination-active: rgb(var(--color-primary-400));
  --swiper-theme-color: rgb(var(--color-primary-400));
}

.site-slider__slide {
  aspect-ratio: var(--site-slider-aspect, 4 / 3);
  overflow: hidden;
  border-radius: 0.375rem;
}

.site-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-slider__nav {
  color: var(--site-slider-nav-color);
}

.site-slider__nav::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}

.site-slider__nav--prev::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E");
}

.site-slider__nav--next::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.25 4.5l7.5 7.5-7.5 7.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.25 4.5l7.5 7.5-7.5 7.5'/%3E%3C/svg%3E");
}

.site-slider__pagination {
  position: relative;
  margin-top: 0.75rem;
}

.site-slider .swiper-pagination-bullet {
  background: var(--site-slider-pagination-inactive);
  opacity: 0.5;
}

.site-slider .swiper-pagination-bullet-active {
  background: var(--site-slider-pagination-active);
  opacity: 1;
}
