/* 전체 레이아웃 */
.global-container {
	width: 100%;
	margin: 0 auto;
	padding: 20px 3%;
	box-sizing: border-box;
}

/* 상단 박스 */
.global-box {
	background-color: #257cf4;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 14px 10px;
	border: 2px solid #004695;
	border-radius: 6px;
	font-size: 1.1rem;
}

/* 3개 구역 전체 */
.section-wrap {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

/* 각 구역 */
.section {
	flex: 1 1 30%;
	min-width: 300px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* 파란 타이틀 박스 */
.section .box {
	background-color: #0058bd;
	color: #fff;
	border: 2px solid #004695;
	padding: 10px;
	font-weight: bold;
	border-radius: 6px;
	position: relative;
}

/* 위쪽 화살표 */
.section .box::after {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #004695;
}

/* 하단 리스트 */
.section .list {
	border: 2px solid #004695;
	padding: 10px;
	background-color: #fff;
	margin-top: 10px;
	border-radius: 6px;
	box-sizing: border-box;
	text-align: left;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.section .list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.section .list li {
	margin-bottom: 5px;
	font-size: 0.95rem;
}

/* 반응형 */
@media (max-width: 900px) {
	.section-wrap {
		flex-direction: column;
		align-items: stretch;
	}
	.section {
		width: 100%;
	}
	/* 반응형일 때 화살표 제거 */
	.section .box::after {
		display: none;
	}
}