/* 취약계층 가입안내 공통 모달 (PC/모바일) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap');

/* 모달 내부는 원본 modal.css처럼 독립적으로 렌더링되도록 초기화 */
.vulnerable-modal-overlay,
.vulnerable-modal-overlay * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
}

.vulnerable-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s, opacity 0.3s;
	font-family: 'Noto Sans KR', sans-serif;
}

.vulnerable-modal-overlay.active {
	visibility: visible;
	opacity: 1;
}

.vulnerable-modal-container {
	width: calc(100% - 20px);
	max-width: 480px;
	min-width: 320px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: scale(0.7);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border-radius: 8px;
}

.vulnerable-modal-overlay.active .vulnerable-modal-container {
	transform: scale(1);
}

.vulnerable-modal-header {
	text-align: center;
	padding: 30px 0 0;
}

.vulnerable-modal-header .header-notice {
	font-size: 24px;
	font-weight: 700;
	color: #4a86c6;
	display: block;
	margin-bottom: 10px;
}

.vulnerable-modal-header .modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 10px;
}

.vulnerable-modal-body {
	padding: 0 5px;
	text-align: center;
}

/* 모든 본문 텍스트 공통 설정 (부모 페이지 p 스타일 무시) */
.vulnerable-modal-body p {
	font-size: 16px;
	color: #000;
	line-height: 1.4;
	font-weight: normal;
	letter-spacing: normal;
}

.vulnerable-modal-body .modal-desc {
	padding-top: 10px;
}

.vulnerable-modal-body .highlight-red {
	color: #ff0000;
	font-weight: 500;
	font-size: 16px;
}

.vulnerable-modal-body .modal-question {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	margin: 20px 0 30px;
}

.vulnerable-modal-footer {
	display: flex;
	border-top: 1px solid #ccc;
}

.vulnerable-modal-footer .btn {
	flex: 1;
	height: 60px;
	font-size: 17px;
	line-height: 22px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	font-family: 'Noto Sans KR', sans-serif;
}

.vulnerable-modal-footer .btn-cancel {
	background-color: #a6a6a6;
	color: #fff;
	border-right: 2px solid #4a86c6;
}

.vulnerable-modal-footer .btn-cancel:hover {
	background-color: #909090;
}

.vulnerable-modal-footer .btn-confirm {
	background-color: #4a86c6;
	color: #fff;
}

.vulnerable-modal-footer .btn-confirm:hover {
	background-color: #3b71ab;
	color: #f0f0f0;
}

.vulnerable-modal-footer .btn-confirm .price-label {
	display: block;
}
