/* 후원 섹션 스타일 - 인라인으로 추가 */
.sponsor_section {
	background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
	padding: 80px 0;
	margin: 40px 0;
	border-radius: 20px;
	overflow: hidden;
}

.sponsor_content {
	display: flex;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
	gap: 60px;
}

.sponsor_text {
	flex: 1;
	padding-right: 40px;
}

.sponsor_title {
	font-size: 42px;
	font-weight: 700;
	color: #000;
	margin-bottom: 30px;
	line-height: 1.3;
}

.title_quote {
	font-size: 60px;
	color: #666;
	font-weight: 300;
	vertical-align: top;
	line-height: 0.8;
}

.title_main {
	display: inline-block;
	margin: 0 10px;
	font-size: 0.95em;
	font-weight: 600;
}

.title_main span.stit {
	font-size: 0.7em;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.stit {
	font-size: 24px;
	color: #0065AD;
	font-weight: 600;
}

.sponsor_desc {
	margin-bottom: 40px;
}

.sponsor_desc p {
	font-size: 1.33em;
	letter-spacing: -0.03em;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.sponsor_button {
	margin-top: 40px;
}
.sponsor_button img{width:60px; margin-left:10px;}

.btn_regular_sponsor {
	display: inline-block;
	background: #0065AD;
	color: white;
	padding: 18px 40px;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.2em;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn_regular_sponsor:hover {
	background: #0065AD;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139, 139, 139, 0.3);
}

.btn_arrow {
	margin-left: 10px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.btn_regular_sponsor:hover .btn_arrow {
	transform: translateX(5px);
}

.sponsor_image {
	flex: 1;
	text-align: center;
}

.sponsor_image img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image_placeholder {
	text-align: center;
	border-radius: 15px;
	color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.image_icon {
	font-size: 80px;
	margin-bottom: 20px;
	display: block;
}

.image_placeholder p {
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	font-weight: 500;
}

.pc_view {
	display: block;
}

.mobile_view {
	display: none;
}

/* 후원자 섹션 */
.sponsor_benefits_section {
	padding: 0;
	margin: 70px 0 40px 0;
}

.benefits_title {
	font-size: 2.5em;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 30px;
}

.benefits_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0;
}

.benefit_card {
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.benefit_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #48a1e0, #0065AD);
}

.benefit_icon {
	margin-bottom: 20px;
	text-align: center;
}

.benefit_icon img {
	width: 60px;
}

.benefit_title {
	font-size: 1.7em;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
	text-align: center;
}

.benefit_desc {
	font-size: 1.15em;
	letter-spacing: -0.03em;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}



.benefit_more a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #0065AD;
	font-weight: 600;
	font-size: 1.2em;
	cursor: pointer;
	transition: color 0.3s ease;
}

.benefit_more:hover {
	color: #0065AD;
}

.more_icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.benefit_card:hover .more_icon {
	transform: rotate(-90deg);
}

.image_placeholder img {
	width: 100%;
	height: auto;
	display: block;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
	.sponsor_content {
		flex-direction: column;
		text-align: center;
		padding: 0 20px;
		gap: 40px;
	}

	.sponsor_text {
		padding-right: 0;
	}

	.sponsor_title {
		font-size: 32px;
	}

	.title_quote {
		font-size: 45px;
	}

	.sponsor_desc p {
		font-size: 16px;
	}

	.sponsor_section {
		padding: 60px 0;
		margin: 20px 0;
	}

	.pc_view {
		display: none;
	}

	.mobile_view {
		display: block;
	}

	.benefits_grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 20px;
	}

	.benefits_title {
		font-size: 28px;
	}

	.benefit_card {
		padding: 30px 20px;
	}

	.pc_view {
		display: none;
	}
}


/* 기부금 사용처 섹션 스타일 */
.donation_usage_section {
	background: #f8f9fa;
	padding: 50px 40px;
	margin: 70px 0;
	border-radius: 20px;
}

.usage_content {
	display: flex;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	gap: 60px;
}

.usage_text {
	flex: 4;
}

.usage_text h4 {
	font-size: 1.4em;
	font-weight: 400;
	color: #333;
	margin-top: 30px;
	padding-left: 20px;
}

.usage_title {
	font-size: 2.2em;
	font-weight: 300;
	color: #333;
	font-weight: 500;
	margin-bottom: 20px;
}

.usage_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.usage_list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 5px;
	font-size: 1.2em;
	line-height: 1.6;
	color: #333;
}

.usage_list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #0065AD;
	font-size: 1.15em;
	font-weight: bold;
}

.usage_image {
	flex: 3;
	text-align: center;
}

.usage_image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.ribbon_placeholder {
	color: white;
	padding: 0;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.ribbon_icon {
	font-size: 3em;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.ribbon_text {
	font-size: 1.2em;
	font-weight: 600;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {

	.usage_text {
		flex: 1;
	}

	.usage_content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.usage_title {
		font-size: 1.8em;
	}

	.usage_list li {
		text-align: left;
	}

	.donation_usage_section {
		margin-bottom: 0;
	}
}

@media (max-width: 500px) {

	.benefit_title {
		font-size: 1.6em;
	}

	.benefit_desc {
		font-size: 1.1em;
	}

	.benefit_icon img {
		width: 40px;
	}

	.donation_usage_section {
		padding: 60px 20px;
	}

	.usage_title {
		font-size: 1.6em;
	}

	.usage_list li {
		font-size: 1.1em;
	}

	.usage_text h4 {
		font-size: 1.3em;
	}


}