@charset "UTF-8";

/* ============================================================
   입금계좌안내 CSS (pageCode=41) - AWC Canvas 변환
   Canvas 원본: 1100 x 900px
   AWC init: awcDisplay(41, 1100, 900, 0, 650, 'N', 'Y', 770, 370)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

/* GmarketSansBold 폰트 */
@font-face {
	font-family: 'GmarketSansBold';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* 캔버스 컨테이너 */
.ba-canvas {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 665px;
	margin: 0 auto;
	overflow: hidden;
	background: url('../../images/customer/bank-account/image_25366.png') no-repeat 30px 5px;
	background-size: cover;
}

/* 페이지 제목 (top:149, left:51, width:997, center) */
.ba-title {
	position: absolute;
	top: 149px;
	left: 0;
	width: 100%;
	font-family: 'GmarketSansBold', 'Noto Sans KR', sans-serif;
	font-size: 54px;
	font-weight: 400;
	color: #333;
	text-align: center;
	letter-spacing: -2px;
	margin: 0;
}

/* 계좌/담당자 정보 그룹 래퍼 (top:453, left:660, w:380) */
.ba-info-group {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 380px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

/* 텍스트 컨테이너 */
.ba-text-group {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	width: 100%;
}

/* 장식 배경 (135×46) — KEEP decorative */
.ba-deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 135px;
	height: 46px;
	pointer-events: none;
}

.ba-deco img {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

/* 계좌번호 */
.ba-account-num {
	position: relative;
	font-family: 'GmarketSansBold', 'Noto Sans KR', sans-serif;
	font-size: 26px;
	font-weight: 600;
	color: #333;
	text-align: right;
	letter-spacing: 0;
	margin: 0;
	min-height: 46px;
	line-height: 46px;
}

/* 예금주 */
.ba-account-holder {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #666;
	text-align: right;
	letter-spacing: -1px;
	margin: 4px 0 0;
}

/* 구분선 */
.ba-divider {
	position: relative;
	width: 100%;
	height: 1px;
	background: #C1C1C1;
	margin: 12px 0 0;
}

/* 담당자 라벨 */
.ba-manager-label {
	position: relative;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	color: #333;
	text-align: center;
	letter-spacing: -1px;
	margin: 8px 0 0;
}

/* 담당자 전화 */
.ba-manager-tel {
	position: relative;
	width: 100%;
	font-family: 'GmarketSansBold', 'Noto Sans KR', sans-serif;
	font-size: 26px;
	font-weight: 400;
	color: #94AC72;
	letter-spacing: 0;
	text-align: center;
	margin: 4px 0 0;
}

/* 내선번호 */
.ba-manager-ext {
	position: relative;
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	color: #FF9C00;
	text-align: center;
	letter-spacing: -1px;
	margin: 4px 0 0;
}

.ba-manager-ext span {
	color: #333;
}

/* ── 반응형: 모바일 (max-width: 769px) ── */
@media screen and (max-width: 769px) {
	.ba-canvas {
		height: auto;
		overflow: visible;
		padding: 20px;
		box-sizing: border-box;
		background-position: center top;
		background-size: 100% auto;
	}

	.ba-title {
		position: static;
		width: 100%;
		font-size: 32px;
		text-align: center;
		margin-bottom: 24px;
	}

	/* 정보 그룹: absolute 해제 → 블록 흐름 */
	.ba-info-group {
		position: static;
		width: 100%;
		align-items: stretch;
		background: #f9f9f9;
		border: 1px solid #e0e0e0;
		padding: 20px;
		box-sizing: border-box;
	}

	.ba-deco {
		display: none;
	}

	.ba-account-num {
		font-size: 22px;
		text-align: center;
		min-height: auto;
		line-height: 1.4;
		margin: 0 0 6px;
	}

	.ba-account-holder {
		font-size: 15px;
		text-align: center;
		margin: 0 0 16px;
	}

	.ba-divider {
		margin: 0 0 14px;
	}

	.ba-manager-label {
		font-size: 15px;
		margin: 0 0 6px;
	}

	.ba-manager-tel {
		font-size: 22px;
		margin: 0 0 6px;
	}

	.ba-manager-ext {
		font-size: 15px;
		margin: 0;
	}

	.ba-text-group {
		align-items: center;
	}
}