/* Webklient Pricelist – vizuální ceník s visačkami */

.wkpl-cenik {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
}

.wkpl-item {
	padding: 18px 0;
	border-bottom: 1px solid #EFEDF7;
}
.wkpl-item:last-child {
	border-bottom: 0;
}

.wkpl-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wkpl-title {
	color: #2E2358;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	transition: color .25s ease;
}
a.wkpl-title:hover {
	color: #56368F;
}

.wkpl-sep {
	flex: 1 1 auto;
	border-bottom: 1px dashed #C9C2E8;
	height: 1px;
	min-width: 20px;
}

/* Visačka */
.wkpl-meta {
	position: relative;
	display: inline-block;
	background: #FFC845;
	color: #2E2358;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	padding: 9px 16px 9px 22px;
	border-radius: 0 8px 8px 0;
	margin-left: 16px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(46, 35, 88, .18);
	transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.wkpl-meta::before {
	content: '';
	position: absolute;
	left: -9px;
	top: 0;
	width: 0;
	height: 0;
	border-top: calc(0.5em + 9px) solid transparent;
	border-bottom: calc(0.5em + 9px) solid transparent;
	border-right: 10px solid #FFC845;
	transition: border-right-color .25s ease;
}
.wkpl-meta::after {
	content: '';
	position: absolute;
	left: 1px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset 0 1px 1px rgba(46, 35, 88, .35);
}
.wkpl-item:hover .wkpl-meta {
	background: #FFD466;
	transform: rotate(-3deg) scale(1.05);
	box-shadow: 0 5px 14px rgba(46, 35, 88, .25);
}
.wkpl-item:hover .wkpl-meta::before {
	border-right-color: #FFD466;
}

.wkpl-desc {
	color: #6B6685;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 6px;
}

@media (max-width: 560px) {
	.wkpl-content {
		flex-wrap: wrap;
	}
	.wkpl-sep {
		display: none;
	}
	.wkpl-meta {
		margin-left: 0;
	}
}
