.khw-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-sizing: border-box;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.khw-card,
.khw-card * {
	box-sizing: border-box;
}

.khw-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 22px 18px;
	background-color: #fff;
	border-bottom: 1px solid #ececec;
}

.khw-heading {
	min-width: 0;
	margin: 0;
	color: #630038;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.khw-badge {
	display: inline-flex;
	flex: 0 0 58px;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	color: #630038;
	background: #fff1d8;
	border-radius: 50%;
}

.khw-badge i {
	font-size: 28px;
}

.khw-badge svg {
	display: block;
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.khw-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 10px;
	background: transparent;
}

.khw-item,
.khw-item-link {
	display: flex;
	min-width: 0;
	margin: 0;
	color: inherit;
	background-color: #fff;
	border: 1px solid #ececec;
	border-radius: 8px;
	text-decoration: none;
	overflow: hidden;
	transition-property: color, background-color, border-color, box-shadow, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.khw-item-link:focus-visible {
	position: relative;
	z-index: 1;
	outline: 2px solid #ff9c01;
	outline-offset: 2px;
}

.khw-item-inner {
	display: flex;
	width: 100%;
	min-height: 78px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 6px 10px;
	text-align: center;
}

.khw-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #630038;
	line-height: 1;
	transition-property: color, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.khw-item-icon i {
	font-size: 38px;
}

.khw-item-icon svg {
	display: block;
	width: 38px;
	height: 38px;
	fill: currentColor;
}

.khw-item-title {
	display: block;
	max-width: 100%;
	color: #111;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	overflow-wrap: anywhere;
	transition-property: color;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.khw-item:hover .khw-item-icon,
.khw-item-link:hover .khw-item-icon {
	color: #ff9c01;
}

.khw-item:hover .khw-item-title,
.khw-item-link:hover .khw-item-title {
	color: #630038;
}

@media (prefers-reduced-motion: reduce) {
	.khw-item,
	.khw-item-link,
	.khw-item-icon,
	.khw-item-title {
		transition-duration: 0s !important;
	}
}
