/* Zorg dat de card container een referentie is voor absolute overlay */
.category-trips-single-inner-wrap{
	position: relative;
	overflow: hidden;
}

/* Overlay zelf */
.wte-coming-soon-overlay{
	position: absolute;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(240, 242, 245, 0.78);
	backdrop-filter: blur(2px);
}

/* Box in het midden */
.wte-coming-soon-overlay__box{
	width: min(420px, 100%);
	text-align: center;
	padding: 18px 16px;
	border-radius: 16px;
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Typo */
.wte-coming-soon-overlay__title{
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: #111827;
	margin-bottom: 8px;
}

.wte-coming-soon-overlay__subtitle{
	font-size: 13px;
	line-height: 1.35;
	color: #374151;
	opacity: .95;
	margin-bottom: 14px;
}

/* Button */
.wte-coming-soon-overlay__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	background: #111827;
	transition: transform .12s ease, opacity .12s ease;
}

.wte-coming-soon-overlay__btn:hover{
	transform: translateY(-1px);
	opacity: .95;
}

/* Mobiel net wat compacter */
@media (max-width: 480px){
	.wte-coming-soon-overlay__title{ font-size: 16px; }
	.wte-coming-soon-overlay__subtitle{ font-size: 12px; }
}
