/* ── Kiwwwi Feature Card ─────────────────────────────────────── */
.kfc-card {
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #D2D2D2;
}

.kfc-cardlink {
	display: block;
	color: inherit;
	text-decoration: none;
}

/* Header bar */
.kfc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 45px;
	background: #07182e;
}

.kfc-header-left {
	display: flex;
	align-items: center;
	gap: 18px;
}

.kfc-header .button { margin: 0; }

/* Icon */
.kfc-icon {
	flex: 0 0 auto;
	line-height: 1;
}
.kfc-icon img,
.kfc-icon svg {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
}

/* Title (H3) */
.kfc-card h3.kfc-title {
	margin: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
	line-height: 1.3;
}

/* Body text */
.kfc-body {
	padding: 28px 45px 45px;
	color: #333333;
	line-height: 1.7;
	font-size: 15px;
	text-align: justify;
}

.kfc-body p:last-child { margin-bottom: 0; }

/* Tablet */
@media (max-width: 849px) {
	.kfc-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.kfc-header .button { margin: 0; }
}