@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing:border-box;
}

body {
	margin:0; padding:0;
	font-family: 'Roboto', 'Noto Sans KR', "Dotum", sans-serif;
	color: #444;
	font-size: 15px;
	line-height:160%;
	font-weight:400;
}

b, strong {
	font-weight: 700;
}

div, section {
	margin:0; padding:0;
}

ul, ol, li, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

a, a:active {
	color:#444; text-decoration:none;
}

a:hover {
	text-decoration: none;
	color: #1e40af;
}

img {border:none; padding:0; margin:0;}

#wrap {margin:0; padding:0; width:100%; height:100%;}

/* Header */
.top_area {padding:5px; background:linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);}
.top_area ul {width:95%; max-width:1200px; margin:0 auto; overflow:hidden; zoom:1; clear:both;}
.top_area ul .logo {float:left; margin-top:2px;}
.top_area ul .logo img {height:40px;}
.top_area ul .go_btn {float:right; margin-top:10px; color:#a0c4e8; font-size:13px; font-weight:600; font-family: 'Noto Sans KR', sans-serif;}
.top_area ul .go_btn a {color:#a0c4e8; transition:color 0.3s;}
.top_area ul .go_btn a:hover {color:#fff;}

/* Main Visual - 글로벌 협력 테마 */
.main_img {
	min-height: 520px;
	background: linear-gradient(rgba(15, 41, 66, 0.75), rgb(77 77 77 / 0%)), url('https://www.sunfull.or.kr/new_images/main/togetherbg.jpg') center center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

/* 슬라이더 컨테이너 */
.main_slider {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
}

/* 슬라이드 */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

.slide_content {
	text-align: center;
	max-width: 900px;
	padding: 0 30px;
}

/* 슬라이더 인디케이터 (도트) */
.slider_dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.slider_dots .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider_dots .dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.slider_dots .dot.active {
	background: #fbbf24;
	transform: scale(1.2);
}

/* 슬라이드 1 텍스트 스타일 */
.main_subtitle {
	margin: 0 0 15px 0;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.main_title {
	margin: 0 0 25px 0;
	font-family: "Poppins", sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main_title span {
	display: block;
	color: #fbbf24;
	font-size: 68px;
	font-weight: 800;
	margin-top: 5px;
}

.main_title_ko {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 4px;
}

/* 슬라이드 2 텍스트 스타일 */
.main_subtitle2 {
	margin: 0 0 20px 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #fbbf24;
	letter-spacing: 2px;
}

.main_title2 {
	margin: 0 0 30px 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 46px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main_desc {
	margin: 0 auto;
	max-width: 800px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	letter-spacing: 1px;
}

/* 애니메이션 */
.animate {
	opacity: 0;
}

.slide.active .animate {
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.slide.active .fadeInDown {
	animation-name: fadeInDown;
}

.slide.active .fadeInUp {
	animation-name: fadeInUp;
}

.slide.active .delay1 {
	animation-delay: 0.3s;
}

.slide.active .delay2 {
	animation-delay: 0.6s;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Support */
.support {padding:0; border-bottom:1px solid #e5e7eb; background:#f8fafc;}
.support span {display:block; max-width:1200px; margin:0 auto; padding:15px 30px; font-family: 'Noto Sans KR', sans-serif; color:#64748b; font-size:14px; font-weight:500;}
.support span i {margin-right:8px; color:#1e40af;}

/* Container */
#container {width:95%; max-width:1000px; margin:0 auto; padding:0;}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-label {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 30px;
	margin-bottom: 20px;
}

.section-title {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 15px 0;
}

.section-desc {
	font-size: 18px;
	color: #64748b;
	margin: 0;
}

/* Intro Card */
.intro-card {
	background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1e40af, #3b82f6, #fbbf24);
}

.intro-badge {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	color: #fbbf24;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	border-radius: 30px;
	margin-bottom: 25px;
}

.intro-badge i {
	margin-right: 8px;
}

.intro-card h3 {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #1e40af;
	margin: 0 0 25px 0;
}

.intro-text {
	font-size: 18px;
	line-height: 1.9;
	color: #475569;
	margin: 0 auto 30px auto;
	word-break: keep-all;
	overflow-wrap: break-word;
	text-align: justify;
	max-width: 900px;
}

.intro-text strong {
	color: #1e40af;
}

.intro-text em {
	font-style: normal;
	font-weight: 700;
	color: #0f172a;
	background: linear-gradient(120deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
	padding: 2px 8px;
	border-radius: 4px;
}

.intro-quote {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border-radius: 12px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #92400e;
}

.intro-quote i {
	margin-right: 10px;
	opacity: 0.5;
}

/* Timeline Section */
.timeline-section {
	margin-bottom: 50px;
}

.timeline-item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.timeline-marker {
	flex: 0 0 auto;
}

.timeline-year {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.timeline-content {
	flex: 1;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	position: relative;
}

.timeline-content::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-left: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	transform: rotate(45deg);
}

.timeline-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.timeline-icon i {
	font-size: 22px;
	color: #1e40af;
}

.timeline-content h4 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 15px 0;
}

.timeline-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
	margin: 0;
	word-break: keep-all;
}

.timeline-content p strong {
	color: #1e40af;
}

/* Value Grid */
.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 50px;
}

.value-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
	border-color: #93c5fd;
}

.value-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.value-card:hover .value-icon {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.value-icon i {
	font-size: 28px;
	color: #1e40af;
	transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
	color: #fff;
}

.value-card h4 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 12px 0;
}

.value-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0;
	word-break: keep-all;
}

/* CTA Banner */
.cta-banner {
	background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 50%, #3b82f6 100%);
	border-radius: 24px;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.cta-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.cta-content h3 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
}

.cta-content h3 i {
	margin-right: 12px;
	color: #fbbf24;
}

.cta-content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 35px;
	background: #fbbf24;
	color: #0f172a;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.cta-btn:hover {
	background: #f59e0b;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
	color: #0f172a;
}

/* Comment Section */
.comment-section {
	background: #f8fafc;
	border-radius: 24px;
	padding: 40px;
	margin-bottom: 40px;
}

.comment-header {
	text-align: center;
	margin-bottom: 30px;
}

.comment-header h3 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.comment-header h3 i {
	margin-right: 10px;
	color: #1e40af;
}

/* Livere */
#lv-container {margin-top:0; padding-top: 0; border: none;}

/* Footer */
#copyright {margin:30px 0 0 0; padding:45px 0; background:linear-gradient(135deg, #0f2942 0%, #1e3a5f 100%); font-size:14px; text-align: center; color:#94a3b8;}
#copyright a {font-weight: bold; color:#fff;}

/* ===== 반응형 ===== */

/* 태블릿 */
@media all and (max-width:1024px) {
	.main_slider {
		height: 480px;
	}

	.main_title {
		font-size: 46px;
	}

	.main_title span {
		font-size: 54px;
	}

	.main_title2 {
		font-size: 38px;
	}

	.main_desc {
		font-size: 18px;
	}

	.section-header {
		margin-bottom: 50px;
	}

	.section-title {
		font-size: 36px;
	}

	.intro-card {
		padding: 40px 30px;
	}

	.intro-card h3 {
		font-size: 28px;
	}

	.intro-text {
		font-size: 16px;
	}

	.timeline-item {
		flex-direction: column;
		gap: 20px;
	}

	.timeline-content::before {
		display: none;
	}

	.value-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
	}
}

/* 모바일 */
@media all and (max-width:768px) {
	.top_area ul .logo img {height:32px;}

	.main_img {
		min-height: auto;
	}

	.main_slider {
		height: 420px;
	}

	.slide_content {
		padding: 0 20px;
	}

	.main_subtitle {
		font-size: 14px;
		letter-spacing: 2px;
	}

	.main_title {
		font-size: 36px;
	}

	.main_title span {
		font-size: 44px;
	}

	.main_title_ko {
		font-size: 18px;
		letter-spacing: 2px;
	}

	.main_subtitle2 {
		font-size: 16px;
	}

	.main_title2 {
		font-size: 30px;
	}

	.main_title2 br {
		display: none;
	}

	.main_desc {
		font-size: 16px;
	}

	.slider_dots {
		bottom: 20px;
	}

	.slider_dots .dot {
		width: 10px;
		height: 10px;
	}

	#container {
		padding: 0;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 40px;
	}

	.section-label {
		font-size: 11px;
		padding: 6px 16px;
	}

	.section-title {
		font-size: 30px;
	}

	.section-desc {
		font-size: 15px;
	}

	/* Intro Card */
	.intro-card {
		padding: 30px 20px;
		border-radius: 18px;
	}

	.intro-badge {
		font-size: 12px;
		padding: 8px 18px;
	}

	.intro-card h3 {
		font-size: 24px;
	}

	.intro-text {
		font-size: 15px;
		line-height: 1.8;
		text-align: left;
		max-width: 100%;
	}

	.intro-quote {
		font-size: 16px;
		padding: 12px 20px;
	}

	/* Timeline */
	.timeline-content {
		padding: 25px 20px;
		border-radius: 16px;
	}

	.timeline-year {
		font-size: 16px;
		padding: 10px 20px;
	}

	.timeline-icon {
		width: 45px;
		height: 45px;
	}

	.timeline-icon i {
		font-size: 18px;
	}

	.timeline-content h4 {
		font-size: 19px;
	}

	.timeline-content p {
		font-size: 14px;
	}

	/* Value Grid */
	.value-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.value-card {
		padding: 25px 20px;
		border-radius: 16px;
		display: flex;
		align-items: center;
		text-align: left;
		gap: 20px;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		margin: 0;
		flex-shrink: 0;
		border-radius: 16px;
	}

	.value-icon i {
		font-size: 24px;
	}

	.value-card h4 {
		font-size: 17px;
		margin-bottom: 6px;
	}

	.value-card p {
		font-size: 13px;
	}

	/* CTA Banner */
	.cta-banner {
		padding: 30px 25px;
		border-radius: 18px;
		margin-bottom: 40px;
	}

	.cta-content h3 {
		font-size: 20px;
	}

	.cta-content p {
		font-size: 14px;
	}

	.cta-btn {
		padding: 14px 28px;
		font-size: 14px;
	}

	/* Comment Section */
	.comment-section {
		padding: 30px 20px;
		border-radius: 18px;
		margin-bottom: 30px;
	}

	.comment-header h3 {
		font-size: 18px;
	}
}

/* 소형 모바일 */
@media all and (max-width:480px) {
	.main_slider {
		height: 380px;
	}

	.main_subtitle {
		font-size: 12px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.main_title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.main_title span {
		font-size: 34px;
	}

	.main_title_ko {
		font-size: 15px;
	}

	.main_subtitle2 {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.main_title2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.main_desc {
		font-size: 14px;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 30px;
	}

	.section-label {
		font-size: 10px;
		padding: 5px 14px;
		letter-spacing: 1px;
	}

	.section-title {
		font-size: 26px;
	}

	.section-desc {
		font-size: 14px;
	}

	/* Intro Card */
	.intro-card {
		padding: 25px 18px;
		border-radius: 16px;
		margin-bottom: 35px;
	}

	.intro-badge {
		font-size: 11px;
		padding: 7px 15px;
		margin-bottom: 18px;
	}

	.intro-card h3 {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.intro-text {
		font-size: 14px;
		line-height: 1.75;
		margin-bottom: 22px;
		word-spacing: -0.5px;
	}

	.intro-quote {
		font-size: 15px;
		padding: 10px 18px;
	}

	/* Timeline */
	.timeline-section {
		margin-bottom: 35px;
	}

	.timeline-content {
		padding: 22px 18px;
	}

	.timeline-year {
		font-size: 14px;
		padding: 8px 16px;
	}

	.timeline-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
	}

	.timeline-icon i {
		font-size: 16px;
	}

	.timeline-content h4 {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.timeline-content p {
		font-size: 13px;
		line-height: 1.7;
	}

	/* Value Grid */
	.value-grid {
		gap: 12px;
		margin-bottom: 35px;
	}

	.value-card {
		padding: 20px 16px;
		gap: 16px;
	}

	.value-icon {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

	.value-icon i {
		font-size: 20px;
	}

	.value-card h4 {
		font-size: 15px;
	}

	.value-card p {
		font-size: 12px;
	}

	/* CTA Banner */
	.cta-banner {
		padding: 25px 20px;
		border-radius: 16px;
		margin-bottom: 30px;
	}

	.cta-content h3 {
		font-size: 17px;
		margin-bottom: 8px;
	}

	.cta-content h3 i {
		margin-right: 8px;
	}

	.cta-content p {
		font-size: 13px;
	}

	.cta-btn {
		padding: 12px 24px;
		font-size: 13px;
		width: 100%;
		justify-content: center;
	}

	/* Comment Section */
	.comment-section {
		padding: 25px 18px;
		border-radius: 16px;
		margin-bottom: 25px;
	}

	.comment-header {
		margin-bottom: 20px;
	}

	.comment-header h3 {
		font-size: 16px;
	}

	#lv-container {margin-top:25px; padding-top:10px;}
}

/* 함께 하는 사람들 */
.together-people {
	margin-top: 50px;
	padding-top: 40px;
	text-align: center;
}

.together-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	border: none;
	position: relative;
	overflow: hidden;
}

.together-toggle::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s ease;
}

.together-toggle:hover::before {
	left: 100%;
}

.together-toggle:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.together-toggle:active {
	transform: translateY(-2px) scale(0.98);
}

.together-toggle i.fa-users {
	font-size: 20px;
}

.together-toggle .toggle-arrow {
	transition: transform 0.4s ease;
	font-size: 14px;
	margin-left: 5px;
}

.people-list {
	display: none;
	margin-top: 20px;
	padding: 20px 25px;
	background: #f8fafc;
	border-radius: 12px;
	border-left: 4px solid #1e3a5f;
}

.people-list ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}

.people-list li {
	padding: 10px 15px;
	background: #fff;
	border-radius: 8px;
	font-size: 14px;
	color: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	transition: all 0.2s ease;
}

.people-list li:hover {
	background: #1e3a5f;
	color: #fff;
	transform: translateX(5px);
}

@media screen and (max-width: 768px) {
	.together-people {
		margin-top: 35px;
		padding-top: 30px;
	}

	.together-toggle {
		font-size: 15px;
		padding: 14px 28px;
	}

	.together-toggle i.fa-users {
		font-size: 18px;
	}

	.people-list ul {
		grid-template-columns: 1fr;
	}
}

/* ============================================== */
/* STOP Campaign Styles */
/* ============================================== */

/* STOP Main Wrapper */
.stop-main-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 60px 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: stretch;
	justify-content: center;
	background-image: url('https://sunfull.or.kr/thema/stop/images/bg1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.stop-main-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.stop-main-wrapper > * {
	position: relative;
	z-index: 2;
}

.stop-main-wrapper .stop-main-left,
.stop-main-wrapper .stop-main-right {
	max-width: 580px;
}

.stop-main-left {
	flex: 1 1 48%;
	min-width: 300px;
}

.stop-main-right {
	flex: 1 1 48%;
	min-width: 300px;
	display: flex;
	align-items: center;
}

.stop-main-right .intro-card {
	width: 100%;
	margin: 0;
	padding: 30px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	border-left: 4px solid #e74c3c;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stop-main-right .intro-card h3 {
	color: #c0392b;
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 700;
}

.stop-main-right .intro-card .intro-text {
	color: #333;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 15px;
}

.stop-main-right .intro-card .intro-text:last-child {
	margin-bottom: 0;
}

.stop-main-right .intro-card strong {
	color: #c0392b;
}

.stop-main-wrapper .stop-link {
	display: block;
	margin-bottom: 40px;
	transition: opacity 0.3s, transform 0.3s;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stop-main-wrapper .stop-link:hover {
	opacity: 0.95;
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stop-main-wrapper .stop-link img {
	width: 100%;
	height: auto;
	display: block;
}

/* STOP Info Section */
.stop-info {
	margin-top: 40px;
	padding: 20px;
}

.stop-info h2 {
	font-size: 48px;
	font-weight: 900;
	color: #e74c3c;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.stop-info p {
	font-size: 20px;
	color: #333;
	line-height: 1.8;
	margin-bottom: 30px;
	font-weight: 400;
}

.stop-btn {
	display: inline-block;
	padding: 15px 40px;
	background: #e74c3c;
	color: #fff !important;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.3s, transform 0.3s;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.stop-btn:hover {
	background: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
	color: #fff !important;
}

.stop-btn i {
	margin-right: 10px;
	font-size: 20px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.stop-main-wrapper {
		margin: 40px auto;
		flex-direction: column;
		gap: 20px;
	}

	.stop-main-left,
	.stop-main-right {
		flex: 1 1 100%;
	}

	.stop-main-right .intro-card {
		padding: 25px;
	}

	.stop-main-right .intro-card h3 {
		font-size: 24px;
	}

	.stop-main-right .intro-card .intro-text {
		font-size: 14px;
	}

	.stop-info h2 {
		font-size: 36px;
	}

	.stop-info p {
		font-size: 18px;
	}

	.stop-btn {
		padding: 12px 30px;
		font-size: 16px;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.stop-main-wrapper {
		margin: 20px auto;
		padding: 0 10px;
		gap: 15px;
	}

	.stop-main-right .intro-card {
		padding: 20px;
	}

	.stop-main-right .intro-card h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.stop-main-right .intro-card .intro-text {
		font-size: 13px;
		line-height: 1.7;
	}

	.stop-info h2 {
		font-size: 28px;
	}

	.stop-info p {
		font-size: 16px;
	}

	.stop-btn {
		padding: 10px 25px;
		font-size: 14px;
	}

	.stop-btn i {
		font-size: 16px;
	}
}

/* ============================================== */
/* YouTube Section Styles */
/* ============================================== */

.youtube-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.youtube-section h3 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.youtube-section h3 i {
	color: #e74c3c;
	margin-right: 10px;
}

.youtube-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.youtube-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ============================================== */
/* People Tabs Section Styles */
/* ============================================== */

.people-tabs-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px 20px;
}

.people-tabs-section h3 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.people-tabs-section h3 i {
	color: #e74c3c;
	margin-right: 10px;
}

.subtitle-en {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: #666;
	margin-left: 10px;
}

.tabs-wrapper {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}

.tab-buttons {
	display: flex;
	border-bottom: 3px solid #f0f0f0;
	background: #fafafa;
}

.tab-btn {
	flex: 1;
	padding: 20px 15px;
	background: transparent;
	border: none;
	font-size: 18px;
	font-weight: 700;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	border-bottom: 3px solid transparent;
	margin-bottom: -3px;
}

.tab-btn:hover {
	background: #f5f5f5;
	color: #e74c3c;
}

.tab-btn.active {
	background: #fff;
	color: #e74c3c;
	border-bottom-color: #e74c3c;
}

.tab-en {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #999;
	margin-top: 5px;
}

.tab-content-wrapper {
	padding: 40px 30px;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.people-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.people-grid li {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #e74c3c;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s;
}

.people-grid li:hover {
	background: #e74c3c;
	color: #fff;
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.people-grid li:hover .name-detail {
	color: rgba(255,255,255,0.8);
}

/* Name detail (affiliation in parentheses) */
.name-detail {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #888;
	margin-top: 5px;
	line-height: 1.4;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.youtube-section,
	.people-tabs-section {
		margin: 40px auto;
		padding: 30px 15px;
	}

	.youtube-section h3,
	.people-tabs-section h3 {
		font-size: 24px;
	}

	.subtitle-en {
		display: block;
		margin-left: 0;
		margin-top: 5px;
	}

	.tab-btn {
		padding: 15px 10px;
		font-size: 16px;
	}

	.tab-content-wrapper {
		padding: 30px 20px;
	}

	.people-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 15px;
	}

	.people-grid li {
		padding: 15px;
		font-size: 14px;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.youtube-section,
	.people-tabs-section {
		margin: 20px auto;
		padding: 20px 10px;
	}

	.youtube-section h3,
	.people-tabs-section h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.tab-buttons {
		flex-direction: column;
	}

	.tab-btn {
		padding: 12px 10px;
		font-size: 14px;
		text-align: left;
		border-left: 3px solid transparent;
		border-bottom: 1px solid #f0f0f0;
		margin-bottom: 0;
	}

	.tab-btn.active {
		border-bottom-color: #f0f0f0;
		border-left-color: #e74c3c;
	}

	.tab-content-wrapper {
		padding: 20px 15px;
	}

	.people-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.people-grid li {
		padding: 12px;
		font-size: 13px;
	}
}

/* STOP Header Image Styles Update */
.stop-header-image {
	display: block;
	margin-bottom: 40px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stop-header-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* STOP YouTube Embed in Header */
.stop-youtube-embed {
	margin-top: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.stop-youtube-embed .youtube-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	width: 100%;
}

/* Centered YouTube Container */
.stop-main-wrapper.centered {
	justify-content: center;
	align-items: center;
}

.stop-youtube-centered {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.stop-youtube-centered .youtube-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	width: 100%;
}

@media (max-width: 768px) {
	.stop-youtube-embed {
		margin-top: 0;
	}

	.stop-youtube-centered {
		max-width: 100%;
	}

	.stop-youtube-centered .youtube-container {
		border-radius: 12px;
	}
}

@media (max-width: 480px) {
	.stop-youtube-embed {
		margin-top: 0;
	}

	.stop-youtube-embed .youtube-container {
		border-radius: 10px;
	}

	.stop-youtube-centered .youtube-container {
		border-radius: 10px;
	}
}

/* ============================================== */
/* Content Gallery Section Styles */
/* ============================================== */

.content-gallery-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-gallery-section h3 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.content-gallery-section h3 i {
	color: #e74c3c;
	margin-right: 10px;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.content-item {
	background: #f8f9fa;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.content-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.content-title {
	padding: 15px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
	text-align: center;
	background: #fff;
	border-top: 1px solid #eee;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 52px;
}

.content-item.video .video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	cursor: pointer;
}

.content-item.video .video-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.content-item.video:hover .video-wrapper img {
	transform: scale(1.05);
}

/* 재생 버튼 오버레이 */
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 2;
}

.play-btn i {
	color: rgba(255, 255, 255, 0.5);
	font-size: 34px;
	margin-left: 3px;
}

.content-item.video:hover .play-btn {
	background: transparent;
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: none;
}

.content-item.video:hover .play-btn i {
	color: rgba(255, 255, 255, 0.8);
}

/* 확대 버튼 오버레이 */
.zoom-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s;
	z-index: 2;
}

.zoom-btn i {
	color: #fff;
	font-size: 22px;
}

.content-item.image:hover .zoom-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

.content-item.image .image-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 - YouTube와 동일 비율 */
	height: 0;
	overflow: hidden;
	cursor: pointer;
}

.content-item.image .image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.content-item.image:hover .image-wrapper img {
	transform: scale(1.05);
}

.no-content {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 18px;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
}

.pg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: #f0f0f0;
	color: #666;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
}

.pg-btn:hover {
	background: #e74c3c;
	color: #fff;
}

.pg-btn.current {
	background: #e74c3c;
	color: #fff;
	font-weight: 700;
}

.pg-btn.first,
.pg-btn.prev,
.pg-btn.next,
.pg-btn.last {
	background: #fff;
	border: 1px solid #ddd;
}

.pg-btn.first:hover,
.pg-btn.prev:hover,
.pg-btn.next:hover,
.pg-btn.last:hover {
	background: #e74c3c;
	border-color: #e74c3c;
	color: #fff;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.content-gallery-section {
		margin: 40px auto;
		padding: 30px 15px;
	}

	.content-gallery-section h3 {
		font-size: 24px;
	}

	.content-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.content-title {
		padding: 12px;
		font-size: 14px;
		min-height: 48px;
	}

	.pg-btn {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.content-gallery-section {
		margin: 20px auto;
		padding: 20px 10px;
	}

	.content-gallery-section h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.content-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.content-title {
		padding: 10px;
		font-size: 13px;
		min-height: 44px;
	}

	.pg-btn {
		min-width: 32px;
		height: 32px;
		padding: 0 8px;
		font-size: 12px;
		gap: 5px;
	}

	.pagination {
		gap: 5px;
	}
}

/* ============================================== */
/* Media Popup Styles */
/* ============================================== */

.media-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.media-popup.active {
	display: flex;
}

.popup-content {
	position: relative;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
}

.popup-close {
	position: absolute;
	top: -45px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
	line-height: 1;
}

.popup-close:hover {
	color: #e74c3c;
	transform: scale(1.2);
}

/* 팝업 비디오 */
.popup-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 10px;
}

.popup-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 팝업 이미지 */
.popup-image {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 85vh;
}

.popup-image img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* 팝업 반응형 */
@media (max-width: 768px) {
	.popup-content {
		max-width: 95%;
	}

	.popup-close {
		top: -40px;
		font-size: 35px;
	}

	.play-btn {
		width: 60px;
		height: 60px;
	}

	.play-btn i {
		font-size: 24px;
	}

	.zoom-btn {
		width: 50px;
		height: 50px;
	}

	.zoom-btn i {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.popup-close {
		top: -35px;
		font-size: 30px;
	}

	.play-btn {
		width: 50px;
		height: 50px;
	}

	.play-btn i {
		font-size: 20px;
		margin-left: 3px;
	}

	.zoom-btn {
		width: 45px;
		height: 45px;
	}

	.zoom-btn i {
		font-size: 16px;
	}
}

/* ============================================== */
/* People Toggle Section Styles (STOP Theme) */
/* ============================================== */

.people-toggle-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px 20px;
	text-align: center;
}

.people-toggle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 40px;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	font-family: 'Noto Sans KR', sans-serif;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
	border: none;
	position: relative;
	overflow: hidden;
}

.people-toggle-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s ease;
}

.people-toggle-btn:hover::before {
	left: 100%;
}

.people-toggle-btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
	background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.people-toggle-btn:active {
	transform: translateY(-2px) scale(0.98);
}

.people-toggle-btn i.fa-users {
	font-size: 20px;
}

.people-toggle-btn .toggle-arrow {
	transition: transform 0.4s ease;
	font-size: 14px;
	margin-left: 5px;
}

.subtitle-en-inline {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.9;
}

.people-list-wrapper {
	display: none;
	margin-top: 30px;
	text-align: left;
}

.people-category {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border-left: 4px solid #e74c3c;
}

.people-category h4 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin: 0 0 20px 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

.people-category h4 i {
	color: #e74c3c;
	margin-right: 10px;
}

.category-subtitle {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: #999;
	margin-left: 10px;
}

.people-category .people-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.people-category .people-grid li {
	padding: 15px 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 3px solid #e74c3c;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s;
}

.people-category .people-grid li:hover {
	background: #e74c3c;
	color: #fff;
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.people-category .people-grid li:hover .affiliation {
	color: rgba(255,255,255,0.8);
}

.people-category .people-grid .affiliation {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #888;
	margin-top: 5px;
	line-height: 1.4;
}

.people-category .people-grid .coming-soon {
	grid-column: 1 / -1;
	text-align: center;
	color: #999;
	font-style: italic;
	background: #f0f0f0;
	border-left: none;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.people-toggle-section {
		margin: 40px auto;
		padding: 30px 15px;
	}

	.people-toggle-btn {
		font-size: 15px;
		padding: 14px 28px;
	}

	.people-toggle-btn i.fa-users {
		font-size: 18px;
	}

	.subtitle-en-inline {
		display: block;
		margin-top: 5px;
		font-size: 12px;
	}

	.people-category {
		padding: 25px 20px;
	}

	.people-category h4 {
		font-size: 18px;
	}

	.people-category .people-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 12px;
	}

	.people-category .people-grid li {
		padding: 12px 15px;
		font-size: 14px;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.people-toggle-section {
		margin: 20px auto;
		padding: 20px 10px;
	}

	.people-toggle-btn {
		font-size: 14px;
		padding: 12px 24px;
		width: 100%;
	}

	.people-toggle-btn i.fa-users {
		font-size: 16px;
	}

	.people-toggle-btn .toggle-arrow {
		font-size: 12px;
	}

	.subtitle-en-inline {
		font-size: 11px;
	}

	.people-category {
		padding: 20px 15px;
		margin-bottom: 15px;
	}

	.people-category h4 {
		font-size: 16px;
		margin-bottom: 15px;
		padding-bottom: 12px;
	}

	.category-subtitle {
		display: block;
		margin-left: 0;
		margin-top: 5px;
		font-size: 12px;
	}

	.people-category .people-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.people-category .people-grid li {
		padding: 10px 12px;
		font-size: 13px;
	}

	.people-category .people-grid .affiliation {
		font-size: 11px;
	}
}
