@charset "utf-8";
/* Introduction > Vision & Mission */

/* ======================================================
   인포그래픽 (통이미지)
   ====================================================== */
.vs-info {
	display: flex; align-items: center; justify-content: center;
	padding: 40px; border: 1px solid var(--border1); border-radius: 20px;
	background: #f7f9fc; overflow: hidden; transition: var(--ani);
}
.vs-info:hover { box-shadow: 0 22px 48px rgba(17,38,73,.12); }
.vs-info picture { display: block; width: 100%; }
.vs-info img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }

/* ======================================================
   기대 성과
   ====================================================== */
.vs-out { margin-top:8px; }

/* 인포그래픽 → 기대 성과 연결 화살표 */
.vo-arrow {
	display: flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; margin: 0 auto 8px; border-radius: 50%;
	background: linear-gradient(145deg, var(--c_base4), var(--c_base1));
	color: #fff; box-shadow: 0 12px 26px rgba(11,73,156,.26);
}
.vo-arrow svg { width: 26px; height: 26px; }

.vo-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.vo-list > li {
	position: relative; display: flex; flex-direction: column; gap: 14px;
	padding: 24px 20px 26px; border: 1px solid var(--border1); border-radius: 18px;
	background: #fff; overflow: hidden; transition: var(--ani);
}
.vo-list > li:before {
	content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--c_base1), var(--c_base2));
	transform: scaleX(0); transform-origin: left; transition: var(--ani);
}
.vo-list > li:hover { transform: translateY(-6px); border-color: rgba(11,73,156,.4); box-shadow: 0 20px 44px rgba(17,38,73,.12); }
.vo-list > li:hover:before { transform: scaleX(1); }

.vo-list .no {
	flex: none; display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 14px;
	background: linear-gradient(145deg, var(--c_base4), var(--c_base1));
	font-size: var(--fs16); font-weight: 800; color: #fff; letter-spacing: .02em; font-style: normal;
	box-shadow: 0 10px 22px rgba(11,73,156,.24);
}
.vo-list .tx b { display: block; font-size: var(--fs22); font-weight: 800; color: #1b2b41; line-height: 1.4; letter-spacing: -0.05em; word-break: keep-all; }
.vo-list .tx span {
	display: inline-block; margin-top: 8px; padding: 3px 12px; border-radius: 100px;
	background: rgba(34,181,115,.12); font-size: var(--fs14); font-weight: 600; color: #17945c; letter-spacing: -0.02em;
}

/* ======================================================
   반응형
   ====================================================== */
@media (max-width: 1249px) {
	.vs-info { padding: 26px; }

	.vo-arrow { width: 46px; height: 46px;}
	.vo-arrow svg { width: 23px; height: 23px; }
	.vo-list { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	.vo-list > li { padding: 22px 18px 24px; }
}

@media (max-width: 767px) {
	.vs-info { padding: 16px; border-radius: 14px; }

	.vo-arrow { width: 40px; height: 40px;  }
	.vo-arrow svg { width: 20px; height: 20px; }

	.vo-list { grid-template-columns: 1fr; gap: 10px; }
	.vo-list > li { flex-direction: row; align-items: center; gap: 14px; padding: 16px 16px; border-radius: 14px; }
	.vo-list > li:hover { transform: none; }
	.vo-list .no { width: 40px; height: 40px; border-radius: 12px; font-size: var(--fs15); }
	.vo-list .tx b br { display: none; }
	.vo-list .tx span { margin-top: 5px; }
}
