/* WebTibo Doctors Slider — v1.1.2 */
.wtb-doctors-wrapper{
	position:relative;
	width:100%;
	margin:0 0 var(--wtb-mb) 0;
	padding:0;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
	/* CSS variables */
	--wtb-gap:30px;
	--wtb-visible:3;
	--wtb-speed:1000ms;
	--wtb-accent:#13a89e;
	--wtb-name:#13a89e;
	--wtb-subtitle:#fff;
	--wtb-arrow-bg:transparent;
	--wtb-arrow:#fff;
	--wtb-arrow-shadow:0 0 10px rgba(0,0,0,.4);
	--wtb-maxh:440px;
	--wtb-mb:24px;
	touch-action: pan-y;
}
.wtb-doctors-wrapper.align-left{ justify-content:flex-start; }
.wtb-doctors-wrapper.align-right{ justify-content:flex-end; }
.wtb-doctors-wrapper.wtb-dragging{ user-select:none; cursor:grabbing; }
.wtb-doctors-wrapper{ cursor:grab; }

.wtb-doctors-slider{
	display:flex;
	align-items:flex-end;
	gap:var(--wtb-gap);
	transition: transform var(--wtb-speed) cubic-bezier(0.77,0,0.175,1);
	will-change: transform;
}

.wtb-card{
	flex: 0 0 calc((100% - (var(--wtb-gap) * (var(--wtb-visible) - 1))) / var(--wtb-visible));
	text-align:center;
	opacity:.25;
	filter:blur(3px);
	transform:scale(.92);
	transition: all var(--wtb-speed) cubic-bezier(0.77,0,0.175,1);
	position:relative;
}
.wtb-card img{
	width:100%;
	max-height:var(--wtb-maxh);
	object-fit:contain;
	-webkit-user-drag:none; user-drag:none;
}
.wtb-card.aktif{
	opacity:1;
	filter:none;
	transform:scale(1.06);
	z-index:10;
}
.wtb-doctors-wrapper.wtb-dragging img{ pointer-events:none; }

.wtb-card .bilgi{ margin-top:12px; }
.wtb-card .bilgi h3{ font-size:22px; margin-bottom:5px; color:var(--wtb-name); text-shadow:0 2px 4px rgba(0,0,0,.6); }
.wtb-card .bilgi p.sub{ font-size:14px; color:var(--wtb-subtitle); margin-bottom:6px; }
.wtb-card .bilgi a.btn{ color:#fff; background:var(--wtb-accent); padding:8px 14px; border-radius:6px; display:inline-block; text-decoration:none; font-weight:600; }

.wtb-doctors-wrapper .kontroller{
	position:absolute;
	top:50%; left:50%;
	transform:translate(-50%,-50%);
	width:min(560px, 100% - 40px);
	display:flex; justify-content:space-between;
	z-index:20; pointer-events:none;
}
.wtb-doctors-wrapper .ok{
	background:var(--wtb-arrow-bg) !important;
	background-color:var(--wtb-arrow-bg) !important;
	background-image:none !important;
	color:var(--wtb-arrow) !important;
	width:40px; height:40px; font-size:22px; border-radius:50%;
	display:flex; justify-content:center; align-items:center;
	pointer-events:all; cursor:pointer; opacity:.95; border:none;
	box-shadow:var(--wtb-arrow-shadow);
	appearance:none; -webkit-appearance:none; outline:none;
}
.wtb-doctors-wrapper .ok:hover{ filter:brightness(1.1); }
@media(max-width:768px){
	.wtb-doctors-wrapper .ok{ width:36px; height:36px; font-size:20px; box-shadow:none; }
}
