/* ── Feature Card block ── */

.fcard-block {
	padding: 160px 0 80px 0;
}

/* ── Section header (mirrors solutions-block__header) ── */

.fcard-block__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-inline: auto;
	margin-bottom: 70px;
}

.fcard-block__header .section-title {
	margin: 18px 0 21px 0;
}

.fcard-block__header .section-desc {
	max-width: 630px;
}

/* ── Card (mirrors .solutions-panel) ── */

.fcard {
	display: grid;
	grid-template-columns: clamp(260px, 38%, 483px) 1fr;
	border-radius: 14px;
	overflow: hidden;
	min-height: clamp(380px, 44vw, 560px);
	padding: 8px;
	background-color: var(--color-sky-200);
}

/* ── Left content panel (mirrors .solutions-panel__content) ── */

.fcard__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px;
	border-radius: 6px;
	background: #fff;
}

.fcard__title {
	margin: 0 0 0 0;
	color: #192023;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.16px;
}

.fcard__body {
	flex: 1;
}

.fcard__body p {
	margin: 20px 0 0 0;
	color: var(--color-black);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	max-width: 331px;
	opacity: 0.6;
}

.fcard__body p + p {
	margin-top: 16px;
}

.fcard__cta {
	margin-top: 32px;
}

/* ── Right visual panel (mirrors .solutions-panel__visual) ── */

.fcard__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.fcard__visual img {
	width: calc(100% + 16px);
	height: calc(100% + 8px);
	display: block;
	object-fit: cover;
	position: absolute;
	right: -8px;
	top: -8px;
}

/* ── Responsive ── */

@media (max-width: 768px) {
	.fcard-block {
		padding: 120px 0 60px 0;
	}

	.fcard-block__header {
		margin-bottom: 40px;
	}

	.fcard {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.fcard__visual {
		min-height: clamp(200px, 56vw, 320px);
		order: -1;
	}

	.fcard__visual img {
		width: calc(100% + 16px);
		height: calc(100% + 16px);
		right: -8px;
		top: -8px;
	}

	.fcard__content {
		padding: 24px 20px;
	}

	.fcard__title {
		font-size: 24px;
		letter-spacing: -0.12px;
	}

	.fcard__body p {
		font-size: 16px;
		max-width: 100%;
	}
}
