/* ==========================================================================
   SREC — "Bạn đã sẵn sàng khám phá SREC?" (Figma node 6204:469)
   ========================================================================== */

.srec2-features {
	--srec2-features-bg: #dbecec;
	--srec2-features-primary: #017c75;
	--srec2-features-text: #16171c;

	background: var(--srec2-features-bg);
	padding: 56px 0;
}

.srec2-features-title {
	font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
	font-weight: 600;
	font-size: 48px;
	line-height: 1.2;
	color: var(--srec2-features-primary);
	text-align: center;
	margin: 0;
}

.srec2-features-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin-top: 36px;
	text-align: center;
}

.srec2-features-grid img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 18px;
}

.srec2-feature-item {
	display: flex;
	flex-direction: column;
}

.srec2-features-grid h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--srec2-features-text);
	margin: 0 0 10px;
	/* Reserve 2 lines so short 1-line titles don't leave the <p> below
	   sitting higher than items whose title wraps to 2 lines. */
	min-height: calc(1.3em * 2);
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.srec2-features-grid p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--srec2-features-text);
	opacity: 0.75;
	margin: 0;
}

@media (max-width: 992px) {
	.srec2-features-title {
		font-size: 32px;
	}

	.srec2-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 640px) {
	.srec2-features-title {
		font-size: 26px;
	}

	.srec2-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
