@charset "utf-8";

/* ==================================================
	body 공통 속성
================================================== */
/* 기본 폰트 및 사이즈 설정 */
html {
	font-size: 10px;
	/* 서브 히어로는 세로 드롭다운을 위해 overflow visible — 가로 스크롤은 문서 루트에서만 차단 */
	overflow-x: hidden;
}

body {
	font-size: var(--rem-18);
	font-family: 'Pretendard', 'Noto Sans KR', '돋움', 'Dotum', '굴림', 'Gulim', 'Lucida Grande', 'Tahoma', 'Verdana', 'AppleGothic', 'UnDotum', 'sans-serif';
	font-weight: var(--font-rg);
	-webkit-text-size-adjust: none;
	-ms-interpolation-mode: bicubic;
	color: var(--color-gray5);
	word-break: keep-all;
	background: var(--color-white);
	line-height: 1.6;
}

.hid {
	position: absolute;
	left: -9999%;
	font-size: 0;
	line-height: 0;
	text-indent: -9999rem;
}


a,
a:link,
a:hover,
a:active,
a:visited {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* border:solid 3px #ffffff00; */
}

a:focus,
input.type-text:focus,
textarea:focus,
textarea.type-text:focus {
	/* border:solid 3px var(--brand-color-main) ; */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border-radius: 5px;
}

table caption {
	text-indent: -2000px;
}

hr {
	clear: both;
	height: 1px;
	border: none;
	background: #FFF;
	margin-bottom: 15px;
	line-height: 0;
	color: #FFF
}

input,
button {
	font-family: var(--font-Pretendard)
}

.ellips {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

caption,
legend {
	display: none
}


img {
	/* 이미지 렌더링 방식 변경 */
	image-rendering: -webkit-optimize-contrast;
	/* z축을 0으로 초기화, 입체감 삭제 */
	transform: translateZ(0);
	/* 뒷면 숨기기, 입체감 삭제 */
	backface-visibility: hidden;
}

/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

/* 모바일CSS */
@media (max-width:1280px) {
	html {
		font-size: 9.5px;
	}
}

@media (max-width:800px) {
	html {
		font-size: 9px;
	}
}

@media (max-width:600px) {
	html {
		/* font-size: 8.5px; */
	}
}

/*
 @media (max-width:450px) {
	html {
		font-size: 7px;
	}
} */


/* ==================================================
	skipnavi
================================================== */
#skipnavi {
	height: 0px;
	position: relative;
	z-index: 100000;
}

#skipnavi>ul>li {
	text-align: center;
}

#skipnavi>p {
	width: 0;
	height: 0;
	overflow: hidden;
	white-space: nowrap;
}

#skipnavi>ul>li>a {
	position: absolute;
	display: block;
	color: #fff;
	font-size: 18px;
	top: -10000px;
	left: 0;
	border: 2px solid var(--brand-color-main);
	z-index: 10000;
}

#skipnavi>ul>li>a:hover,
#skipnavi>ul>li>a:focus,
#skipnavi>ul>li>a:active {
	position: absolute;
	top: 0;
	height: 7px;
	padding: 12px 0 31px;
	background: var(--brand-color-main);
	z-index: 10000;
	width: 100%;
	overflow: hidden;
}


/* ==================================================
	레이아웃 큰박스
================================================== */
#wrap {
	position: relative;
	width: 100%;
	min-width: var(--rem-320);
}

/* ==================================================
	컨텐츠
================================================== */
#container {
	clear: both;
	position: relative;
	min-width: var(--rem-320);
}

.container._sub #header::before {
	opacity: 1;
}

.cont_detail {
	padding: 6rem 0 8rem;
}

.cont_detail2 {
	padding: 6rem 0 0;
}

.inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
}

/* #header와 동일한 좌우 패딩(반응형) */
.cont_detail .inner {
	max-width: calc(var(--px-base) + (var(--header-inner-padding) * 2));
	padding-left: var(--header-inner-padding);
	padding-right: var(--header-inner-padding);
	box-sizing: border-box;
}

.cont_detail2 .inner {
	max-width: calc(var(--px-base) + (var(--header-inner-padding) * 2));
	padding-left: var(--header-inner-padding);
	padding-right: var(--header-inner-padding);
	box-sizing: border-box;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:800px) {
	.cont_detail {
		padding-top: 4rem;
		padding-bottom: 7rem;
	}

	.cont_detail2 {
		padding-top: 4rem;
	}
}

@media screen and (max-width:600px) {
	.cont_detail {
		padding-bottom: 5rem;
	}

	.cont_detail2 {
		padding-top: 2rem;
	}
}

/* ==================================================
	컨텐츠 배경
================================================== */
.con_bg {
	position: relative;
	overflow: hidden;
	/* [수정 2026-04-28] 기존 배경 유지용 주석 처리: background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 40%, #ffffff 100%); */
	/* [수정 2026-04-28] 요청 반영: .con_bg 배경을 sub_bg.png로 변경 */
	background: url('../../lib/images/common/sub_bg.png') no-repeat center top;
	background-size: cover;
	margin-top: 4rem;
}

/* 사업영역 일부 페이지: 상단 #f4f7fc → 20% 지점부터 #fff */
.con_bg.con_bg--biz {
	background: linear-gradient(180deg, #f4f7fc 0%, #fff 20%, #fff 100%) !important;
}

/* ESG경영 - 환경경영*/
.con_bg.con_bg-env {
	background: linear-gradient(180deg, #f1f8f6 0%, #ffffff 40%, #ffffff 100%);
}

.con_bg.con_bg-env:before {
	background-image:
		linear-gradient(rgba(0, 168, 132, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 168, 132, 0.05) 1px, transparent 1px);
}

.con_bg.con_bg-env:after {
	content: "";
	position: absolute;
	top: -12%;
	left: 50%;
	transform: translateX(-50%);
	width: min(140rem, 200vw);
	height: min(90rem, 130vh);
	background: radial-gradient(ellipse 50% 42% at 50% 38%, rgba(0, 168, 132, 0.07) 0%, transparent 68%);
	filter: blur(8rem);
	z-index: 0;
	pointer-events: none;
}

/* ESG경영 - 지배구조경영*/
.con_bg.con_bg-gov {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #ffffff 100%);
}

.con_bg.con_bg-gov:before {
	background-image:
		linear-gradient(rgba(30, 58, 138, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
}

.con_bg.con_bg-gov:after {
	content: "";
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: min(140rem, 200vw);
	height: min(90rem, 130vh);
	background: radial-gradient(ellipse 46% 40% at 50% 36%, rgba(30, 58, 138, 0.07) 0%, transparent 68%);
	filter: blur(8rem);
	z-index: 0;
	pointer-events: none;
}

/* ESG경영 - 사회적책임경영*/
.con_bg.con_bg-cs {
	background: linear-gradient(180deg, #fffaf0 0%, #ffffff 40%, #ffffff 100%);
}

.con_bg.con_bg-cs:before {
	background-image:
		linear-gradient(rgba(243, 156, 18, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(243, 156, 18, 0.05) 1px, transparent 1px);
}

.con_bg.con_bg-cs:after {
	content: "";
	position: absolute;
	top: -5%;
	left: 50%;
	transform: translateX(-50%);
	width: min(140rem, 200vw);
	height: min(90rem, 130vh);
	background: radial-gradient(ellipse 48% 40% at 50% 36%, rgba(243, 156, 18, 0.07) 0%, transparent 68%);
	filter: blur(8rem);
	z-index: 0;
	pointer-events: none;
}

.con_bg>.inner {
	position: relative;
	z-index: 2;
}

/* ==================================================
	비주얼
================================================== */
.sub-hero {
	position: relative;
	z-index: 10;
	padding-top: var(--header-hei);
	width: 100%;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
}

.sub-hero .inner {
	position: relative;
	z-index: 2;
	max-width: calc(var(--px-base) + (var(--header-inner-padding) * 2));
	padding-top: 3.5rem;
	padding-left: var(--header-inner-padding);
	padding-right: var(--header-inner-padding);
	box-sizing: border-box;
}

/* 전용설비 등 서브: Figma 전용설비 타이틀 스펙 (50px, Bold, black) */
.sub-hero .page-title {
	font-size: 5rem;
	font-weight: var(--font-bd);
	color: var(--color-black);
	margin-bottom: 2.5rem;
	letter-spacing: -0.02em;
	transition: opacity 0.25s ease, letter-spacing 0.25s ease;
}

.sub-hero .page-title:hover {
	opacity: 0.88;
}

.sub-hero .breadcrumbs-hbgr .bc-item>button:hover,
.sub-hero .breadcrumbs-hbgr .home-link:hover {
	opacity: 0.9;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1280px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .page-title {
		font-size: 4.2rem;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 800px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .inner {
		padding-top: 3rem;
	}

	.sub-hero .page-title {
		font-size: 3.2rem;
		margin-bottom: 1.6rem;
	}
}

@media screen and (max-width: 600px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .inner {
		padding-top: 2.4rem;
	}

	.sub-hero .page-title {
		font-size: 2.6rem;
		margin-bottom: 1.2rem;
	}
}

#subvisual {
	position: relative;
	z-index: 2;
	height: var(--sub-visual-hei);
	display: flex;
	flex-direction: column;
	justify-content: center;
	top: 0;
	margin-top: calc(var(--header-hei, 10rem) + 40px);
	box-sizing: border-box;
	border-radius: 2rem;
}

#subvisual .sv-box {
	position: relative;
	width: 100%;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.svis_img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: fade 1s ease-in-out;
	/* animation: blurs 1s; */
	/* transform: scale(1.0, 1.0) rotate(0.002deg); */
}

.visual_center {
	background-image: url('../../lib/images/center/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_curriculum {
	background-image: url('../../lib/images/curriculum/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_facilities {
	background-image: url('../../lib/images/facilities/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_community {
	background-image: url('../../lib/images/community/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}


#subvisual .inner .sv-title {
	text-align: center;
}

.sv-box .inner .sv-title h3 {
	position: relative;
	font-size: var(--rem-65);
	font-weight: var(--font-bd);
	color: var(--color-white);
	text-transform: capitalize;
	text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}

.svis_tit {
	text-align: var(--text-ag-left);
	color: var(--color-white);
	text-shadow: 2px 0px 1px rgba(0, 0, 0, 0.3)
}

.svis_tit h3.svtit_h3 {
	/*	font-family: var(--font-nexonlv2);*/
	font-size: var(--rem-30);
	font-weight: var(--font-bd);
	line-height: 1.5;
}

.svis_tit h3 span {
	display: block;
	font-size: var(--rem-50);
}

/* 애니메이션 */
#subvisual .sv-title h3 {
	opacity: 0;
	transform: translateY(-50px);
}

#subvisual .active .sv-title h3 {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.5s;
	-webkit-transition: all 0.7s 0.5s;
}

@keyframes point {
	0% {
		transform: scaleX(0)
	}

	100% {
		transform: scaleX(1)
	}
}

@keyframes blurs {
	0% {
		filter: blur(15px);
		transform: scale(1.2)
	}

	100% {
		filter: blur(0);
		transform: scale(1)
	}
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1400px) {
	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-60);
	}

	.svis_tit h3.svtit_h3 {
		font-size: var(--rem-24);
	}

	.svis_tit h3 span {
		font-size: var(--rem-40);
	}
}

@media screen and (max-width:800px) {
	#subvisual .sv-box .inner {
		display: block;
		height: auto;
		padding-top: var(--rem-40);
		padding-bottom: var(--rem-40);
	}

	#subvisual .sv-box .inner .sv-title {
		display: block;
		margin-top: 3rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-50);
	}

	.svis_tit h3.svtit_h3 {
		font-size: 3.6rem;
	}
}

@media screen and (max-width:640px) {
	#subvisual {
		margin-top: calc(var(--header-hei, 10rem) + 25px);
		border-radius: 1.5rem;
	}

	.sv-box .inner .sv-title {
		margin-top: 2rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-40);
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2.5rem;
	}
}

@media screen and (max-width:450px) {
	.sv-box .inner .sv-title {
		margin-top: 1rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: 3.5rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2rem;
	}
}

/* ==================================================
	타이틀
================================================== */
.sub_tit {
	padding-bottom: var(--rem-40);
	text-align: center;
}

.sub_tit>span {
	position: relative;
	display: inline-block;
	font-size: var(--rem-40);
	font-weight: var(--font-bd);
	color: var(--color-black);
	text-transform: capitalize;
}

/* 애니메이션 */
.sub_tit {
	opacity: 0;
	transform: translateY(30px);
}

.sub_tit.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.6s;
	-webkit-transition: all 0.7s 0.6s;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1280px) {
	.sub_tit>span {
		font-size: var(--rem-40);
	}

	.sub_tit {
		padding-bottom: var(--rem-40);
	}
}

@media screen and (max-width:800px) {
	.sub_tit>span {
		font-size: 3.5rem;
	}

	.sub_tit {
		padding-bottom: 2rem;
	}
}

@media screen and (max-width:450px) {
	.sub_tit>span {
		font-size: var(--rem-30);
	}

	.sub_tit {
		padding-bottom: var(--rem-20);
	}
}

/* ==================================================
	탑 스크롤 버튼 (.copy-top): 스크롤 시에만 표시
================================================== */
.copy-top {
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	width: 5.6rem;
	height: 5.6rem;
	background: #474747;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	cursor: pointer;
	z-index: 90;
	font-size: 1.4rem;
	font-weight: var(--font-sb);
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.copy-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.copy-top:hover {
	background: #333;
}

.copy-top .xi-angle-up-thin {
	font-size: 2.2rem;
	line-height: 1;
}

.copy-top__txt {
	font-size: 1.1rem;
	letter-spacing: 0.02em;
}

@media screen and (max-width: 850px) {
	.copy-top {
		right: 2rem;
		bottom: 2rem;
		width: 5rem;
		height: 5rem;
		font-size: 1.2rem;
	}

	.copy-top .xi-angle-up-thin {
		font-size: 2rem;
	}
}

/* ==================================================
	푸터 (Figma node 60:2361 반영)
================================================== */
/* [수정 2026-04-28] 기존 footer 스타일 전체 제거 요청 반영:
   기존 .footer/.footer-layout/.footer-left/.footer-right/.f-col 관련 선언은 사용 중지 */

#footerW .footer {
	background: #00154a;
	padding: 6rem var(--header-inner-padding);
}

#footerW .footer-inner {
	max-width: 140rem;
	margin-left: auto;
	margin-right: auto;
}

#footerW .footer-layout {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

#footerW .footer-info {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 0;
}

#footerW .footer-info .info-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.6rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

#footerW .footer-info .info-row:first-child a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.6rem;
	font-weight: var(--font-rg, 400);
	text-decoration: none;
}

#footerW .footer-info .info-row:first-child a:hover {
	color: var(--color-white);
}

#footerW .footer-info .info-row:first-child span,
#footerW .footer-info .info-row:nth-child(2)>span:not(.label):not(.val) {
	color: rgba(255, 255, 255, 0.55);
}

#footerW .footer-info .label {
	font-size: 1.6rem;
	font-weight: var(--font-bd, 700);
	color: var(--color-white);
}

#footerW .footer-info .val {
	font-size: 1.6rem;
	font-weight: var(--font-rg, 400);
	color: var(--color-white);
}

#footerW .footer-bottom {
	padding-top: 2.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

#footerW .footer-bottom .copyright {
	margin: 0;
	font-size: 1.4rem;
	font-weight: var(--font-rg, 400);
	color: rgba(255, 255, 255, 0.5);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1280px) {
	#footerW .footer {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	#footerW .footer-layout {
		gap: 2.4rem;
	}

	#footerW .footer-info .info-row {
		font-size: 1.5rem;
	}

	#footerW .footer-info .info-row:first-child a,
	#footerW .footer-info .label,
	#footerW .footer-info .val {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	#footerW .footer {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	#footerW .footer-layout {
		gap: 2rem;
	}

	#footerW .footer-info .info-row {
		gap: 0.6rem;
		font-size: 1.4rem;
	}

	#footerW .footer-info .info-row:first-child a,
	#footerW .footer-info .label,
	#footerW .footer-info .val {
		font-size: 1.4rem;
	}

	#footerW .footer-bottom {
		padding-top: 2rem;
	}

	#footerW .footer-bottom .copyright {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 640px) {
	#footerW .footer-info .info-row:nth-child(2) {
		line-height: 1.8;
	}
}

/* ==================================================
	공통 CTA 배너
================================================== */
/* [수정 2026-04-28] 전페이지 공통 컴포넌트 분리: event-overview-banner -> cta-banner */
.cta-banner {
	position: relative;
	overflow: hidden;
	border-radius: 2.4rem;
	background: #00154a;
	padding: 8rem 7rem;
	margin-top: 7rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* [수정 2026-04-28] 애니메이션 추가: hover 시 배너 전체 미세 인터랙션 */
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.cta-banner:hover {
	/* [수정 2026-04-28] 애니메이션 추가: 배너 hover 시 살짝 떠오름 */
	transform: translateY(-0.4rem);
	box-shadow: 0 1.6rem 3.2rem rgba(0, 21, 74, 0.22);
}

/* [수정 2026-04-28] 깜빡임 방지: reveal 애니메이션은 페이지(content.css)에서 순차 제어 */

.cta-banner-bg {
	position: absolute;
	inset: 0;
	opacity: 0.3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.cta-banner-txt,
.cta-banner-btns {
	position: relative;
	z-index: 1;
}

.cta-banner-txt h4 {
	margin: 0;
	font-size: 3.5rem;
	font-weight: var(--font-md);
	line-height: 1.2;
	color: var(--color-white);
}

.cta-banner-txt p {
	margin: 1.6rem 0 0;
	font-size: 1.8rem;
	font-weight: var(--font-rg);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.7);
}

.cta-banner-btns {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

.cta-banner-btns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16rem;
	height: 7rem;
	padding: 0 4rem;
	border-radius: 1.6rem;
	font-size: 1.8rem;
	font-weight: var(--font-rg);
	color: var(--color-white);
	text-decoration: none;
	/* [수정 2026-04-28] 애니메이션 추가: 버튼 hover 모션 */
	transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}

.cta-banner-btns a:hover {
	/* [수정 2026-04-28] 애니메이션 추가: 버튼 hover 시 미세 상승 */
	transform: translateY(-0.2rem);
}

.cta-banner-btn-primary {
	background: var(--brand-color-main);
	color: var(--color-white);
}

.cta-banner-btn-primary:hover {
	/* [수정 2026-04-28] 요청 반영: 너무 어두운 hover 톤 -> 배경과 대비되는 밝은 블루로 조정 */
	background: #2b95ff;
}

.cta-banner-btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
}

.cta-banner-btn-secondary:hover {
	/* [수정 2026-04-28] 애니메이션 추가: 서브 버튼 hover 톤 */
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.35);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1024px) {
	.cta-banner {
		/* [수정 2026-04-28] 반응형 보정: 분리된 배너 상단 간격 조정 */
		margin-top: 5rem;
		padding: 5rem 3rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 3rem;
	}

	.cta-banner-txt h4 {
		font-size: 3.2rem;
	}
}

@media screen and (max-width: 768px) {
	.cta-banner {
		/* [수정 2026-04-28] 반응형 보정: 모바일 구간 상단 간격 추가 축소 */
		margin-top: 4rem;
	}

	.cta-banner-txt h4 {
		font-size: 2.8rem;
	}

	.cta-banner-txt p {
		font-size: 1.6rem;
	}

	.cta-banner-btns {
		width: 100%;
		gap: 1.2rem;
	}

	.cta-banner-btns a {
		flex: 1 1 0;
		min-width: 0;
		height: 5.6rem;
		padding: 0 1.2rem;
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 480px) {
	.cta-banner {
		/* [수정 2026-04-28] 반응형 보정: 초소형 구간 상단 간격 */
		margin-top: 3rem;
	}
}