/* ==========================================================================
   Komponente: Header-Slider
   ========================================================================== */

/* Wurzelelement – Bezugspunkt für Pfeile und Punkte */
.t17-header-slider {
	position: relative;
	width: 100%;
}

/* Swiper-Container */
.t17-header-slider__container {
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* Slides gleich hoch, Template füllt die volle Breite */
.t17-header-slider__slide {
	height: auto;
	box-sizing: border-box;
}

/* Bei Fade dürfen nicht aktive Slides keine Klicks abfangen */
.t17-header-slider .swiper-fade .t17-header-slider__slide:not(.swiper-slide-active),
.t17-header-slider .swiper-container-fade .t17-header-slider__slide:not(.swiper-slide-active) {
	pointer-events: none;
}

/* ==========================================================================
   Navigation: Pfeile
   ========================================================================== */

.t17-header-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity 0.2s ease;
}

.t17-header-slider__arrow:hover,
.t17-header-slider__arrow:focus {
	background: none;
	opacity: 0.75;
}

.t17-header-slider__arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.t17-header-slider__arrow svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.t17-header-slider__arrow--prev {
	left: 10px;
}

.t17-header-slider__arrow--next {
	right: 10px;
}

/* Deaktivierter Pfeil (ohne Endlosschleife am Anfang/Ende) */
.t17-header-slider__arrow.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

/* ==========================================================================
   Navigation: Punkte
   ========================================================================== */

.t17-header-slider__dots.swiper-pagination {
	position: absolute;
	right: 0;
	bottom: 15px;
	left: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.t17-header-slider__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 !important;
	background-color: #fff;
	opacity: 0.5;
}

.t17-header-slider__dots .swiper-pagination-bullet-active {
	opacity: 1;
}

/* ==========================================================================
   Editor-Platzhalter
   ========================================================================== */

.t17-header-slider__placeholder {
	padding: 30px;
	border: 2px dashed #d5dadf;
	color: #6d7882;
	text-align: center;
}
