.wke-wa,
.wke-wa * { box-sizing: border-box; }

.wke-wa {
	--accent: #b91416;
	font-family: 'Outfit', sans-serif;
	width: 100%;
	background: #fff;
	padding: 70px 20px;
}

/* ---------------- KOPTEKST ---------------- */
.wke-wa-header { text-align: center; margin-bottom: 44px; }

.wke-wa-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	color: #8a8a8a;
	margin-bottom: 14px;
}

.wke-wa-title {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #111;
}

.wke-wa-rule {
	width: 54px;
	height: 2px;
	background: var(--accent);
	margin: 18px auto 0;
}

.wke-wa-subline {
	margin: 16px auto 0;
	max-width: 560px;
	font-size: 16px;
	line-height: 1.55;
	color: #6b6b6b;
	font-weight: 400;
}

/* ---------------- GRID ---------------- */
.wke-wa-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ---------------- CHAT-KAART ---------------- */
.wke-wa-card {
	background: #0b141a;
	border-radius: 12px;
	overflow: hidden;
	border: 0 solid transparent;
	display: flex;
	flex-direction: column;
}

/* header */
.wke-wa-head {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 14px 16px;
	background: #1f6b52;
	color: #fff;
}
.wke-wa-avatar {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wke-wa-avatar svg { width: 19px; height: 19px; display: block; }

.wke-wa-name {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .6px;
	text-transform: uppercase;
	flex: 1;
}
.wke-wa-status {
	font-size: 12px;
	opacity: .8;
	font-weight: 400;
}

/* screenshot */
.wke-wa-body {
	height: 620px;
	overflow: hidden;
	background: #0b141a;
}
.wke-wa-body img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* onderbalk */
.wke-wa-input {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: #1f2c33;
	color: rgba(255,255,255,.55);
}
.wke-wa-plus { font-size: 20px; line-height: 1; }
.wke-wa-field {
	flex: 1;
	height: 30px;
	border-radius: 20px;
	background: rgba(255,255,255,.07);
}
.wke-wa-cam svg { width: 19px; height: 19px; display: block; }

/* ---------------- CAROUSEL ---------------- */
.wke-wa { --wa-accent: #b91416; }
.wke-wa-has-car { position: relative; }

.wke-wa-viewport { max-width: 1200px; margin: 0 auto; }

/* Carousel-modus: grid wordt een horizontale strip met snap-punten.
   Werkt met swipen ook zonder JavaScript. */
.wke-wa-has-car.is-car .wke-wa-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-behavior: smooth;
}
.wke-wa-has-car.is-car .wke-wa-viewport::-webkit-scrollbar { display: none; }

.wke-wa-has-car.is-car .wke-wa-grid {
	display: flex;
	grid-template-columns: none;
}
.wke-wa-has-car.is-car .wke-wa-card {
	flex: 0 0 100%;
	max-width: 100%;
	scroll-snap-align: center;
}

/* pijlen */
.wke-wa-arrow {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,.1);
	background: #fff;
	color: #111;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-shadow: 0 4px 16px rgba(0,0,0,.13);
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.wke-wa-has-car.is-car .wke-wa-arrow { display: flex; }
.wke-wa-arrow svg { width: 19px; height: 19px; display: block; }
.wke-wa-arrow:hover { background: var(--wa-accent); color: #fff; border-color: var(--wa-accent); }
.wke-wa-arrow[disabled] { opacity: .35; cursor: default; }
.wke-wa-arrow[disabled]:hover { background: #fff; color: #111; border-color: rgba(0,0,0,.1); }
.wke-wa-prev { left: 6px; }
.wke-wa-next { right: 6px; }

/* puntjes */
.wke-wa-dots {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 26px;
}
.wke-wa-has-car.is-car .wke-wa-dots { display: flex; }
.wke-wa-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0,0,0,.2);
	cursor: pointer;
	transition: background .25s ease, width .25s ease, border-radius .25s ease;
}
.wke-wa-dot.is-active {
	background: var(--wa-accent);
	width: 26px;
	border-radius: 20px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
	.wke-wa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.wke-wa { padding: 50px 16px; }
	.wke-wa-grid { grid-template-columns: 1fr; }
	.wke-wa-header { margin-bottom: 32px; }
	.wke-wa-arrow { width: 38px; height: 38px; }
	.wke-wa-arrow svg { width: 17px; height: 17px; }
	.wke-wa-prev { left: 2px; }
	.wke-wa-next { right: 2px; }
}
