@charset "utf-8";

/* 후원 계좌 정보 박스 */
.account-box {
	max-width: 1280px;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 계좌 헤더 */
.account-header {
	background: #2061cc;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
	font-weight: 700;
}

/* 계좌 콘텐츠 */
.account-content {
	padding: 50px 40px;
	text-align: center;
	background: #fff;
}

/* 계좌번호 */
.account-number {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

/* 예금주 */
.account-holder {
	font-size: 16px;
	color: #666;
}

/* 주의사항 텍스트 */
.notice-text {
	color: #2061cc;
	font-size: 14px;
	margin-top: 20px;
	line-height: 1.6;
}

/* 제목 간격 조정 */
h2.ptitle + .account-box {
	margin-top: 30px;
}

h2.ptitle + .method-box {
	margin-top: 30px;
}

/* 후원방법 박스 */
.method-box {
	margin-top: 30px;
	margin-bottom: 50px;
}

/* 방법 콘텐츠 */
.method-content {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
}

/* 모바일 */
@media (max-width: 768px) {
	.account-box {
		margin: 30px 15px;
	}

	.account-header {
		font-size: 18px;
		padding: 15px 0;
	}

	.account-content {
		padding: 40px 20px;
	}

	.account-number {
		font-size: 24px;
	}

	.account-holder {
		font-size: 14px;
	}

	.notice-text {
		font-size: 13px;
		margin-top: 15px;
	}

	.method-content {
		font-size: 14px;
	}
}
