/* Kinh nghiệm */
.kinh_nghiem {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	min-height: 180px;
	padding: 10px 15px;
	background: var(--color-white);
	border: 2px solid #1f2937;
	border-radius: 24px;
	box-sizing: border-box;
	transition: all .3s ease;
}

.kinh_nghiem:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

/* Sá»‘ */
.kinh_nghiem h2 {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--color-main);
}

/* Tiêu đề */
.kinh_nghiem h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--color-black);
}

/* Miêu tả */
.kinh_nghiem p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
	color: #9ca3af;
}

/* Tablet */
@media (max-width: 768px) {
	.kinh_nghiem {
		min-height: 160px;
		padding: 24px 18px;
		border-radius: 20px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.kinh_nghiem {
		min-height: 145px;
		padding: 20px 16px;
		border-radius: 18px;
	}

	.kinh_nghiem h2 {
		margin-bottom: 10px;
	}

	.kinh_nghiem h3 {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.kinh_nghiem p {
		font-size: 11px;
	}
}

/* Sứ mệnh & Tầm nhìn */
.sm_tn .sumenh {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: #fff5f5;
	border: 1px solid #ffd9d9;
	border-radius: 50px;
	color: var(--color-main);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 15px;
}

.sm_tn .sumenh::before {
	content: "◎";
	font-size: 18px;
	color: var(--color-main);
	line-height: 1;
}

.sm_tn h2 {
	font-size: 25px;
	font-weight: 600;
	color: var(--color-black);
}

.sm_tn p {
	font-size: 14px;
	margin-bottom: 0;
	color: #5b6475;
}

.sm_tn ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm_tn ul li {
	position: relative;
	padding-left: 45px;
	margin-left: unset !important;
	color: #5b6475;
	font-size: 14px;
}

.sm_tn ul li span {
	font-size: 18px;
	color: var(--color-black);
}

.sm_tn ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 20%;
	width: 30px;
	height: 30px;
	border: 2px solid var(--color-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
	font-size: 15px;
	font-weight: 700;
	box-sizing: border-box;
}

.sm_tn ul li strong {
	display: block;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 600;
	color: #0f172a;
}

/* Dòng đầu của li sẽ là tiêu đề */
.sm_tn ul li br {
	display: block;
}

/* Chuyển dòng đầu thành tiêu đề */
.sm_tn ul li {
	white-space: pre-line;
}

.sm_tn ul li::first-line {
	font-size: 30px;
	font-weight: 800;
	color: #0f172a;
}

/* Tablet */
@media (max-width: 991px) {
	.sm_tn h2 {
		font-size: 42px;
	}

	.sm_tn p {
		font-size: 18px;
	}

	.sm_tn ul li {
		font-size: 17px;
		padding-left: 50px;
	}

	.sm_tn ul li::first-line {
		font-size: 24px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.sm_tn .sumenh {
		font-size: 13px;
		padding: 8px 16px;
	}

	.sm_tn h2 {
		font-size: 25px;
	}

	.sm_tn p {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.sm_tn ul li {
		padding-left: 44px;
		font-size: 15px;
		margin-bottom: 20px;
	}

	.sm_tn ul li::before {
		width: 28px;
		height: 28px;
		font-size: 13px;
	}

	.sm_tn ul li::first-line {
		font-size: 20px;
	}
}

.su_menh img {
	border-radius: 10px;
}

/* Giá trị */
.icon_gt {
	background: var(--color-white);
	border: 1px solid #edf1f5;
	border-radius: 22px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
	transition: .35s ease;
	height: 100%;
}

.icon_gt:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
}

/* Layout */
.icon_gt .icon-box-img {
	width: auto !important;
	margin-bottom: 26px;
}

.icon_gt .icon {
	margin: 0;
}

.icon_gt .icon-inner {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff2f2;
	border-radius: 16px;
}

.icon_gt .icon-inner img {
	width: 33px;
	height: 33px;
	object-fit: contain;
}

/* Tiêu đề */
.icon_gt h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-black);
}

/* Nội dung */
.icon_gt p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}

/* Tablet */
@media (max-width:991px) {
	.icon_gt {
		padding: 26px;
	}

	.icon_gt h3 {
		font-size: 26px;
	}

	.icon_gt p {
		font-size: 18px;
	}

	.icon_gt .icon-inner {
		width: 56px;
		height: 56px;
	}
}

/* Mobile */
@media (max-width:767px) {
	.icon_gt {
		padding: 22px;
		border-radius: 18px;
	}

	.icon_gt .icon-box-img {
		margin-bottom: 18px;
	}

	.icon_gt .icon-inner {
		width: 52px;
		height: 52px;
		border-radius: 14px;
	}

	.icon_gt h3 {
		font-size: 22px;
	}

	.icon_gt p {
		font-size: 16px;
	}
}