/* Full-Bleed (100vw) erzeugt sonst durch die Scrollbar-Breite einen horizontalen Überlauf,
   wodurch zentrierte Inhalte darunter verrutschen. Nur auf den Slider-Templates aktiv. */
html, body{overflow-x:hidden;}
.team-slider{position:relative;margin:2rem 0;display:flex;flex-direction:column;gap:0;background:#17262E;overflow:hidden;}
.team-slider--fullwidth{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);padding-left:0;padding-right:0;box-sizing:border-box;}
.team-slider__viewport{position:relative;overflow:hidden;flex:1 1 auto;min-width:0;}
.team-slider__track{
	display:grid;grid-auto-flow:column;grid-auto-columns:85%;gap:0;
	overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
	-webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.team-slider__track::-webkit-scrollbar{display:none;}
.team-slider__tile{scroll-snap-align:start;background:#17262E;color:#fff;border-radius:0;overflow:hidden;min-height:340px;display:flex;flex-direction:column;animation:mj-tile-in .5s ease both;}
.team-slider__media{overflow:hidden;}
.team-slider__photo{width:100%;aspect-ratio:1/1;background-size:cover;background-position:center top;transition:transform .6s ease;}
.team-slider__tile--person:hover .team-slider__photo{transform:scale(1.06);}
@keyframes mj-tile-in{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:none;}}
.team-slider__name{margin:0.75rem 1rem 0;font-size:1.1rem;text-align:center;}
.team-slider__position{margin:0.25rem 1rem 1rem;color:#99ADBF;font-size:0.9rem;text-align:center;}
.team-slider__nav{position:absolute;top:40%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;padding:0;border:0;background:rgba(23,38,46,.85);color:#fff;width:44px;height:44px;border-radius:50%;cursor:pointer;z-index:3;}
.team-slider__nav--prev{left:16px;}
.team-slider__nav--next{right:16px;}

/* Tablet (768–1023px): 3 Personen sichtbar */
@media (min-width:768px){
	.team-slider__track{grid-auto-columns:33.333%;}
	.team-slider__nav--prev{left:18px;}
	.team-slider__nav--next{right:18px;}
}
/* Desktop (≥1024px): 4 Personen sichtbar */
@media (min-width:1024px){
	.team-slider__track{grid-auto-columns:25%;}
	.team-slider__nav--prev{left:32px;}
	.team-slider__nav--next{right:32px;}
}
/* Mobile: 1 Kachel voll */
@media (max-width:767px){
	.team-slider__track{grid-auto-columns:100%;}
}
@media (prefers-reduced-motion:reduce){
	.team-slider__track{scroll-behavior:auto;}
	.team-slider__tile{animation:none;}
	.team-slider__photo{transition:none;}
	.team-slider__tile--person:hover .team-slider__photo{transform:none;}
}
