/* =========================================================
   YCM Values widget — structural layout only.
   ========================================================= */

.ycm-values {
	background-color: #eff3ff;
	padding: 90px 0 100px;
}

.ycm-values__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.ycm-values__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* --- Intro --- */
.ycm-values__heading {
	font-size: 48px;
	line-height: 1.1;
	font-weight: 800;
	color: #111;
	margin: 0 0 24px;
	max-width: 440px;
}

.ycm-values__desc {
	font-size: 16px;
	line-height: 1.65;
	color: #4b5563;
	margin: 0;
}

/* --- Cards --- */
.ycm-values__cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ycm-values__card {
	background-color: #fff;
	border-radius: 16px;
	padding: 32px;
}

.ycm-values__card-title {
	font-size: 30px;
	font-weight: 800;
	color: #111;
	margin: 0 0 14px;
}

.ycm-values__card-text {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
	margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.ycm-values__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.ycm-values__heading {
		font-size: 38px;
	}
}

@media (max-width: 560px) {
	.ycm-values {
		padding: 56px 0 64px;
	}
	.ycm-values__heading {
		font-size: 30px;
	}
	.ycm-values__card {
		padding: 24px;
	}
	.ycm-values__card-title {
		font-size: 26px;
	}
}

/* ---- Typography: title + content use Roboto ---- */
.ycm-values__heading,
.ycm-values__desc,
.ycm-values__card-title,
.ycm-values__card-text {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
