.ts-slider {
	position: relative;
}

.ts-viewport {
	overflow: hidden;
}

.ts-track {
	display: flex;
	align-items: stretch;
	transition: transform .5s ease;
}

@media (prefers-reduced-motion: reduce) {
	.ts-track {
		transition: none;
	}
}

.ts-slide {
	flex: 0 0 100%;
	min-width: 100%;
	display: flex;
}

.ts-slide > * {
	flex: 1 1 100%;
	min-width: 0;
}

.ts-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .85);
	color: #005572;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0 0 4px;
	transition: background-color .2s ease, color .2s ease;
}

.ts-arrow:hover,
.ts-arrow:focus-visible {
	background-color: #005572;
	color: #fff;
}

.ts-arrow--prev { left: 15px; }
.ts-arrow--next { right: 15px; }

.ts-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 15px 0 0;
}

.ts-dot {
	width: 11px;
	height: 11px;
	border: none;
	border-radius: 50%;
	background-color: #c3d2d9;
	cursor: pointer;
	padding: 0;
	transition: background-color .2s ease, transform .2s ease;
}

.ts-dot:hover,
.ts-dot:focus-visible {
	background-color: #8a9fa9;
}

.ts-dot.is-active {
	background-color: #005572;
	transform: scale(1.2);
}

@media (min-width: 1025px) {
	.ts-dots { display: none; }
}

/* Tablet & mobile (<=1024px): dots only, arrows hidden. */
@media (max-width: 1024px) {
	.ts-arrow { display: none; }
}

@media (max-width: 768px) {
	.ts-arrow {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}
	.ts-arrow--prev { left: 8px; }
	.ts-arrow--next { right: 8px; }
}
