/* ==========================================================
   CYBERIAL — Widget Prospect Cards
   Grille 2 colonnes avec bordures, icône SVG stroke,
   titre Libre Baskerville et description.
   ========================================================== */

.cy-target-section {
	font-family: 'Inter', -apple-system, system-ui, sans-serif;
	padding: 0 20px 0 20px;
	max-width: 1240px;
	margin: 0 auto;
}

.cy-target-container {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
}

.cy-target-card {
	padding: 50px 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	background: #fff;
	transition: background 0.2s ease;
	min-height: 320px;
}

/* ── Colonnes ── */
.cy-target-cols-1 .cy-target-card {
	flex: 0 0 100%;
	max-width: 100%;
}

.cy-target-cols-2 .cy-target-card {
	flex: 0 0 50%;
	max-width: 50%;
}

.cy-target-cols-3 .cy-target-card {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
}

.cy-target-card:hover {
	background: #fafafa;
}

/* --- Icône --- */
.cy-target-icon-box {
	margin-bottom: 24px;
	color: #1d1c1a;
}

.cy-target-icon-box svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.2;
}

/* --- Titre --- */
.cy-target-title {
	font-family: 'Libre Baskerville', serif;
	font-size: 28px;
	font-weight: 700;
	color: #1d1c1a;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

/* --- Description --- */
.cy-target-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}

.cy-target-desc strong {
	font-weight: 600;
	color: #1d1c1a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.cy-target-section {
		padding: 0 15px 0 15px;
	}

	.cy-target-container {
		border-left: none;
	}

	.cy-target-cols-2 .cy-target-card,
	.cy-target-cols-3 .cy-target-card {
		flex: 0 0 100%;
		max-width: 100%;
		border-left: 1px solid #e0e0e0;
		padding: 40px 25px;
		min-height: auto;
	}

	.cy-target-title {
		font-size: 24px;
	}
}
