.section_title p {
	font-size: 44px;
	font-family: 'Paperlogy6';
	letter-spacing: -0.00em;
	color: #434343;

}

.section_title p.ssub {
	font-size: 25px;
	font-family: 'Paperlogy5';
	letter-spacing: -0.00em;
	color: #828282;
	line-height: 1.1em;
}

.highlight-box {
	position: relative;
	/* 자식 요소의 기준점 */
	z-index: 1;
	/* 글자가 형광펜 위에 오도록 설정 */
}

.highlight-box::after {
	content: "";
	display: block;
	position: absolute;

	/* 형광펜 너비 */
	width: 105%;
	height: 40%;
	bottom: 0;

	/* --- 중앙 정렬 핵심 코드 --- */
	left: 50%;
	/* 1. 부모 기준 정중앙(50%)으로 시작점을 보냄 */
	transform: translateX(-50%);
	/* 2. 자기 크기의 절반(-50%)만큼 다시 왼쪽으로 당김 */
	/* ----------------------- */

	background-color: #fff48d;
	z-index: -1;
}

.title-character {
	position: absolute;
	/* 글자 흐름에 영향을 주지 않고 공중에 띄움 */
	left: 100%;
	/* 텍스트(highlight-box)의 맨 오른쪽 끝에 딱 붙임 */
	bottom: -10px;
	/* 텍스트 바닥 기준 위치 (필요하면 숫자 조절) */
	width: 107px;
	/* 캐릭터 크기 (원하는 대로 조절) */
	margin-left: 15px;
	/* 텍스트와 캐릭터 사이의 간격 */
	z-index: 10;
	/* 형광펜 효과보다 위에 오도록 설정 */
	animation: bounce-gentle 2s ease-in-out infinite;
}

.title-character1 {
	position: absolute;
	/* 글자 흐름에 영향을 주지 않고 공중에 띄움 */
	left: 100%;
	/* 텍스트(highlight-box)의 맨 오른쪽 끝에 딱 붙임 */
	bottom: -10px;
	/* 텍스트 바닥 기준 위치 (필요하면 숫자 조절) */
	width: 119px;
	/* 캐릭터 크기 (원하는 대로 조절) */
	margin-left: 15px;
	/* 텍스트와 캐릭터 사이의 간격 */
	z-index: 10;
	/* 형광펜 효과보다 위에 오도록 설정 */
	animation: bounce-gentle 2s ease-in-out infinite;
}

.title-character2 {
	position: absolute;
	/* 글자 흐름에 영향을 주지 않고 공중에 띄움 */
	left: 100%;
	/* 텍스트(highlight-box)의 맨 오른쪽 끝에 딱 붙임 */
	bottom: -10px;
	/* 텍스트 바닥 기준 위치 (필요하면 숫자 조절) */
	width: 100px;
	/* 캐릭터 크기 (원하는 대로 조절) */
	margin-left: 38px;
	/* 텍스트와 캐릭터 사이의 간격 */
	z-index: 10;
	/* 형광펜 효과보다 위에 오도록 설정 */
	animation: bounce-gentle 2s ease-in-out infinite;
}



@media (max-width: 991px) {
	.section_title p.ssub {
		font-size: 19px;
		font-family: 'Paperlogy5';
		letter-spacing: -0.00em;
		color: #828282;
		line-height: 1.1em;
	}

	.section_title p {
		font-size: 26px;

	}
}






/* --- 토끼 통통 뛰는 애니메이션 정의 --- */
@keyframes bounce-gentle {

	0%,
	100% {
		transform: translateY(0);
		/* 원래 위치 */
	}

	50% {
		transform: translateY(-8px);
		/* 위로 15px 이동 (살며시 뜀) */
	}
}

/* =========================================
          우측으로 넒어지는 카드 메뉴 시작
     ========================================= */

/* 카드 컨테이너: 3개 가로 배치 */
.exp-cards {
	display: flex;
	gap: 20px;
	min-height: 260px;
	height: 350px;
}

/* 개별 카드 기본 상태 */
.exp-card {
	flex: 1 1 0;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
	overflow: hidden;
	background-color: #f8f8ff;
	cursor: pointer;
	transition:
		flex 0.35s ease,
		box-shadow 0.35s ease,
		transform 0.35s ease;
}

/* 왼쪽 이미지: 처음에는 100% */
.exp-card-media {
	width: 100%;
	transition: width 0.35s ease;
}

.exp-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 오른쪽 텍스트 영역: 컨테이너(폭만 애니메이션) */
.exp-card-body {
	width: 0;
	max-width: 0;
	flex: 0 0 auto;
	opacity: 0;
	overflow: hidden;
	border-left: none;
	background-color: #ffffff;
	transition:
		width 0.35s ease,
		max-width 0.35s ease,
		opacity 0.2s ease;
}

/* 실제 패딩·콘텐츠는 안쪽 래퍼에만 적용 */
.exp-card-inner {
	opacity: 0;
	/* 텍스트는 기본적으로 보이지 않음 */
	padding: 20px 25px 15px;
	box-sizing: border-box;
	transition: opacity 0.25s ease;
	/* 텍스트 fade-in/out */
	display: flex;
	/* Flexbox 선언 */
	flex-direction: column;
	/* 요소들을 세로로 나열 */
	height: 100%;
}

/* 태그/텍스트 스타일 */
.exp-card-tag {
	display: inline-block;
	padding: 6px 10px 4px;
	font-size: 18px;
	font-family: 'Paperlogy5';
	line-height: 1.3em;
	border-radius: 3px;
	background-color: #5b4bff;
	color: #fff;
	align-self: flex-start;
	margin-bottom: 15px;
}

.exp-card-title {
	font-size: 27px;
	font-family: 'Paperlogy6';
	line-height: 1.25em;
	margin: 0 0 20px;
	color: #222;
}

.exp-card-text {

	font-size: 17px;
	line-height: 1.6em;
	color: #666;
	margin: 0 0 16px;
	border-top: 1px dashed #afafaf;
	padding-top: 10px;
}

.exp-card-link {
	font-family: 'Paperlogy5';
	font-size: 17px;
	color: #000000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	/* 버튼 크기 살짝 키움 */
	border-radius: 5px;
	border: 1px solid #e23d4e;
	background: #fff;
	transition: all 0.3s ease;
	/* 부드러운 전환 효과 */

	/* [추가된 부분] 위쪽 여백을 자동으로 채워 버튼을 바닥으로 밈 */
	margin-top: auto;
	align-self: flex-start;
	/* 버튼 길이만큼만 차지 (왼쪽 정렬) */
	/* 만약 버튼을 가로로 꽉 채우고 싶다면 align-self 대신 width: 100%; 사용 */
}

.exp-card-link:hover {
	background-color: #e23d4e;
	/* 배경을 빨간색으로 */
	color: #ffffff;
	/* 글자를 흰색으로 */

}



/* ===========================
   호버 동작
   =========================== */

/* 마우스가 exp-cards 안으로 들어오면:
   기본 카드들은 flex 1 → 0.6으로 부드럽게 줄어듦 */
.exp-cards:hover .exp-card {
	flex: 0.6;
}

/* 실제 호버된 카드만 flex 1.4로 커짐 */
.exp-cards:hover .exp-card:hover {
	flex: 1.4;
}

/* 호버된 카드 안에서:
   이미지는 40%, 텍스트는 60% */
.exp-cards:hover .exp-card:hover .exp-card-media {
	width: 40%;
}

.exp-cards:hover .exp-card:hover .exp-card-body {
	width: 60%;
	max-width: 60%;
	opacity: 1;
	border-left: 1px solid #eee;
}

/* 마우스를 완전히 빼면(컨테이너에서 :hover 해제):
   카드 폭은 다시 flex: 1 1 0 으로 부드럽게 복구 */
.exp-cards:not(:hover) .exp-card {
	flex: 1 1 0;
	transform: none;
}

/* 텍스트 영역은 그냥 폭만 0으로 접히고, opacity도 같이 0 */
.exp-cards:not(:hover) .exp-card .exp-card-body {
	opacity: 0;
	width: 0;
	max-width: 0;
	border-left: none;
}

/* 포커스 접근성
.exp-card:focus-within {
	outline: 2px solid #5b4bff;
	outline-offset: 2px;
} */

.exp-cards:hover .exp-card:hover .exp-card-inner {
	opacity: 1;
	/* 박스가 펼쳐진 뒤 자연스럽게 나타남 */
	transition-delay: 0.35s;
	/* width(0.35초) 애니메이션 끝난 후 동작 */
}

.exp-cards:not(:hover) .exp-card .exp-card-inner {
	opacity: 0;
	transition-delay: 0s;
}

/* =========================================
          우측으로 넒어지는 카드 메뉴 끝
     ========================================= */



/* =========================================
          뒤집히는 카드 메뉴 시작
     ========================================= */


.card-container {
	display: flex;
	gap: 20px;
	/* perspective: 1200px; */
	flex-wrap: wrap;
	justify-content: center;
}

.card-wrapper {
	width: 347px;
	height: 350px;
	cursor: pointer;
}

.card {
	width: 347px;
	height: 350px;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.card-wrapper:hover .card {
	transform: rotateY(180deg);
}

.card-face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 7px;
	overflow: hidden;
	background-color: #fff;
}

/* --- 앞면 --- */
.card-front {
	display: flex;
	flex-direction: column;
}

.card-image {
	width: 100%;
	height: 290px;
	/* object-fit: cover; */
}

.card-title-front {
	height: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-family: 'Paperlogy5';
	color: #1f2937;
	background-color: #fff;
	border-top: 1px solid #f3f4f6;
}

/* --- 뒷면 --- */
.card-back {
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px 30px 20px;
	box-sizing: border-box;
	text-align: center;
	background: rgba(255, 255, 255, 0.9)
}

/* =========================================
           [수정됨] 이동 없이 투명도만 조절하는 애니메이션
        ========================================= */

/* 1. 공통 초기 상태: 투명도 0 (위치 이동 없음) */
.back-badge,
.back-title,
.back-content,
.back-button {
	opacity: 0;
	/* transform 제거됨 */
	transition: opacity 0.3s ease-out;
}

/* 2. 호버 상태: 투명도 1 + 순차적 딜레이 */

/* 배지: 0.3초 대기 후 등장 */
.card-wrapper:hover .back-badge {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.3s;
}

/* 제목: 0.4초 대기 후 등장 */
.card-wrapper:hover .back-title {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.4s;
}

/* 내용: 0.5초 대기 후 등장 */
.card-wrapper:hover .back-content {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.5s;
}

/* 버튼: 0.6초 대기 후 등장 */
.card-wrapper:hover .back-button {
	opacity: 1;
	/* 배경색 전환 효과는 별도로 지정하여 딜레이 영향을 받지 않게 조정 */
	transition: opacity 0.5s ease-out, background-color 0.2s ease;
	transition-delay: 0.6s, 0s;
	/* opacity는 0.6s 딜레이, bg-color는 즉시 반응 */
}

/* 요소 스타일 */
.back-badge {
	background-color: #2563eb;
	color: white;
	font-family: 'Paperlogy5';
	padding: 7px 13px 6px;
	border-radius: 5px;
	/* font-weight: 700; */
	font-size: 19px;
	letter-spacing: 0em;
	line-height: 1.3em;
	align-self: center;
	margin-bottom: 20px;
}

.back-title {
	font-family: 'Paperlogy6';
	font-size: 23px;
	margin: 0 0 10px 0;
	color: #111827;
	line-height: 1.3em;
	word-break: keep-all;
}

.back-content {
	font-size: 17px;
	color: #4b5563;
	line-height: 1.6em;
	margin-bottom: 20px;
	flex-grow: 1;
	/* word-break: keep-all; */
	text-align: justify;
}

.back-button {
	background-color: #c2c2c2;
	color: white;
	padding: 12px 28px;
	border: none;
	border-radius: 3px;
	font-family: 'Paperlogy5';
	font-size: 17px;
	line-height: 1.3em;
	cursor: pointer;
	align-self: center;
	text-decoration: none;
	display: inline-block;
}

.back-button:hover {
	background-color: #999999;
	/* 버튼 호버 시에는 딜레이 없이 즉각 반응해야 함 */
	transition-delay: 0s;
	color: #ffffff;
}

/* =========================================
          뒤집히는 카드 메뉴 끝
     ========================================= */


/* =========================================
          위로 올라오는 메뉴 시작
     ========================================= */
/* =========================================
   [Custom Slider] 최종 완성본 (속도/크기/정렬 수정)
   ========================================= */

.custom-zip-section {
	position: relative;
	width: 100%;
	/* 화살표가 섹션 밖으로 튀어나와도 보이게 설정 */
	overflow: visible !important;
}

.custom-slider-container {
	position: relative;
	max-width: 1450px;
	height: 510px;
	/* 전체 높이 */
	margin: 0 auto;
	box-sizing: border-box;
	/* 컨테이너 넘침 허용 */
	overflow: visible !important;
}

/* [액자] 슬라이드 이미지만 가두는 역할 */
.slider-mask {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

/* --- 슬라이드 아이템 (공통) --- */
.custom-item {
	position: absolute;
	/* 수직 중앙 정렬 */
	top: 50%;

	width: 430px;
	height: auto;

	/* 속도 조절: 0.9s */
	transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);

	opacity: 0;
	z-index: 0;
	left: 50%;
	transform: translateY(-50%) scale(0.5);

	/* [추가] 마우스를 올리면 손가락 모양으로 변경 */
	cursor: pointer;
}

/* --- 위치 정의 (Positioning) --- */

/* 1. 왼쪽 (Left) */
.custom-item.pos-0 {
	left: 0;
	/* [수정] Y축 -50% (중앙) + 스케일 0.9 (작게) */
	transform: translateY(-50%) translateX(0) scale(0.9);
	opacity: 1;
	z-index: 5;
	filter: brightness(0.9);
	/* 양쪽은 조금 어둡게 */
}

/* 2. 가운데 (Center) */
.custom-item.pos-1 {
	left: 50%;
	/* [수정] Y축 -50% (중앙) + X축 -50% (중앙) + 스케일 1.25 (크게) */
	transform: translateY(-50%) translateX(-50%) scale(1.25);
	opacity: 1;
	z-index: 10;
	filter: brightness(1);
}

/* 가운데 그림자 & 테두리 */
.custom-item.pos-1 .card-box {

	border-radius: 10px;

}

/* 3. 오른쪽 (Right) */
.custom-item.pos-2 {
	left: 1020px;
	/* 1450 - 430 = 1020 (오른쪽 끝 정렬) */
	/* [수정] Y축 -50% (중앙) + 스케일 0.9 (작게) */
	transform: translateY(-50%) translateX(0) scale(0.9);
	opacity: 1;
	z-index: 5;
	filter: brightness(0.7);
}

/* 4. 뒤쪽 숨김 (Hidden) */
.custom-item.pos-3 {
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0.5);
	opacity: 0;
	z-index: 0;
}


/* --- 카드 내부 디자인 --- */
.card-box {
	position: relative;
	width: 100%;
	height: 320px;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.card-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 31%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.custom-item.pos-1 .card-overlay {
	opacity: 1;
}

.card-overlay p {
	font-size: 18px;
	letter-spacing: 0.01em;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 12px;
	word-break: keep-all;
	font-family: 'Paperlogy5';
}

.card-overlay .read-btn {
	display: inline-block;
	padding: 8px 15px 7px;
	border: 1px solid #fff;
	color: #fff;
	line-height: 1.0em;
	border-radius: 2px;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
	font-family: 'Paperlogy5';
}

.card-overlay .read-btn:hover {
	background: #fff;
	color: #333;
}

.card-title {
	text-align: center;
	margin-top: 15px;
	font-size: 20px;
	margin-bottom: 45px;
	color: #333;
	font-family: 'Paperlogy5';
	opacity: 1;
	transition: color 0.3s;
}

.custom-item.pos-1 .card-title {
	color: #000;
}


/* --- 컨트롤 버튼 (화살표) --- */
.custom-btn {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	font-size: 57px;
	font-family: 'Paperlogy4';
	line-height: 55px;

	cursor: pointer;
	z-index: 100;
	/* 최상위 노출 */
	color: #333;
	transition: all 0.3s;
}

.custom-btn:hover {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
}

/* 1450px 바깥으로 배치 */
.custom-btn.prev {
	left: -60px;
	padding-right: 4px;
}

.custom-btn.next {
	right: -60px;
	padding-left: 4px;
}

/* 노트북/태블릿 대응 */
@media screen and (max-width: 1650px) {
	.custom-btn.prev {
		left: 10px;
	}

	.custom-btn.next {
		right: 10px;
	}
}


/* --- 닷 네비게이션 --- */
.custom-dots {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}

.custom-dots .dot {
	width: 20px;
	height: 20px;
	background: #ddd;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
}

.custom-dots .dot.active {
	width: 40px;
	background: #e53935;
	border-radius: 50px;
}

/* =========================================
          위로 올라오는 메뉴 끝
     ========================================= */



/* =========================================
          탭 메뉴 시작
     ========================================= */

.news-highlight {
	max-width: 1450px;
	margin: 30px auto;
	display: flex;
	align-items: stretch;
	font-family: "NanumSquareNeo", "Malgun Gothic", sans-serif;
}

/* 왼쪽 탭 -------------------------------------------------- */
.news-tabs {
	display: flex;
	flex-direction: column;
	width: 230px;
	gap: 7px;
}

.news-tab {
	display: block;
	width: 100%;
	padding: 6px 28px;
	border-radius: 5px 0px 0px 5px;
	border: 1px solid #ddd;
	border-right: 0px;
	background-color: #fff;
	text-align: left;
	font-size: 22px;
	font-family: 'Paperlogy5';
	letter-spacing: -0.00em;
	line-height: 1.552em;
	color: #333333;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease,
		border-color 0.25s ease;
}

.news-tab.is-active,
.news-tab:hover {
	background-color: #e53935;
	color: #fff;
	border-color: #e53935;
}

/* 가운데 이미지 -------------------------------------------------- */
.news-image-wrap {
	position: relative;
	width: 525px;
	height: 435px;
	overflow: hidden;
	border-radius: 0px 5px 5px 0px;
	background-color: #f1f1f1;
	margin-right: 35px;
}

.news-image {
	position: absolute;
	inset: 0;
	opacity: 0;
	/* transform: translateY(20px);  <-- 이동 효과 제거 */
	transition: opacity 0.4s ease;
	/* <-- transform 제거, opacity만 남김 */
	pointer-events: none;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 활성화될 때: 제자리에서 페이드인 */
.news-image.is-active {
	opacity: 1;
	/* transform: translateY(0); <-- 이동 효과 제거 */
	pointer-events: auto;
}

/* 오른쪽 설명 -------------------------------------------------- */
.news-panel-wrap {
	flex: 1 1 auto;
	position: relative;
	min-height: 329px;
	/* 이미지 높이와 비슷하게 최소 높이 확보 */
}

/* 오른쪽 설명(텍스트) 영역: 좌→우 슬라이드 + 페이드 인/아웃 */
.news-panel {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;

	/* ★중요: 버튼이 위치할 하단 공간 확보 (버튼 높이 + 여백) */
	padding-bottom: 60px;
}

.news-panel.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

/* 내부 스타일 */
.news-tag {
	display: inline-block;
	padding: 7px 11px 5px;
	border-radius: 3px;
	background-color: #2c235e;
	line-height: 1.3em;
	color: #fff;
	font-size: 19px;
	font-family: 'Paperlogy5';
	margin-bottom: 20px;
}

.news-title {
	font-size: 33px;
	line-height: 1.25em;
	margin: 0 0 27px;
	font-family: 'Paperlogy6';
	letter-spacing: -0.00em;
	color: #222;
}

.news-meta {
	display: inline-flex;
	align-items: center;
	padding: 8px 10px 6px;
	font-family: 'Paperlogy5';
	border-radius: 3px;
	line-height: 1.0em;
	letter-spacing: 0em;
	background-color: #eeeeee;
	font-size: 18px;
	margin-bottom: 10px;
}

.news-meta-icon {
	margin-right: 6px;
}

.news-summary {
	font-size: 18px;
	color: #555;
	line-height: 1.6em;
	margin: 0;
	letter-spacing: -0.03em;
}

/* 기사읽기 */
.news-read-link {
	/* 위치 고정: 부모(news-panel)의 맨 아래 왼쪽 */
	position: absolute;
	bottom: 0;
	left: 0;

	/* 박스 스타일 (exp-card 스타일 모방) */
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 14px 9px;
	/* 버튼 크기 조절 */
	background-color: #fff;
	border: 1px solid #ddd;
	color: #222;
	font-family: 'Paperlogy5';
	font-size: 18px;
	line-height: 1.1em;
	border-radius: 3px;
	letter-spacing: 0em;
	text-decoration: none;
	transition: all 0.25s ease;
}

/* 기존 밑줄 애니메이션 제거 */
.news-read-link::after {
	content: none;
}

/* 호버 효과: 테두리와 글자색 변경 (테마색 적용) */
.news-read-link:hover {
	background-color: #e53935;
	border-color: #e53935;
	color: #fff;
}

/* 반응형 (필요시 더 조정) -------------------------------------- */
@media (max-width: 991px) {
	.news-highlight {
		flex-direction: column;
		align-items: flex-start;
	}

	.news-image-wrap,
	.news-panel-wrap {
		width: 100%;
	}

	.news-image-wrap {
		height: 220px;
	}

	.news-panel {
		position: relative;
	}

	.swiper-container.main-slider {
		width: 95% !important;
		height: 400px !important;
		margin: 65px auto 40px !important;
		border-radius: 7px !important;
		/* (선택사항) 모서리를 둥글게 하면 더 세련되어 보입니다 */
	}
}


/* =========================================
          탭 메뉴 끝
     ========================================= */


/*커버 NEW*/
/* ---------------------------------------------------- */
/* 썸네일: Swiper와 완전히 분리된 새로운 스타일 */



/* 메인 슬라이더 영역 기준점 */
.swiper-container.main-slider {
	position: relative;
	width: 90%;
	/* 100%에서 90%로 변경 */
	margin: 95px auto 120px;
	height: 800px;

	overflow: hidden;
	border-radius: 20px 20px 20px 20px;
	/* (선택사항) 모서리를 둥글게 하면 더 세련되어 보입니다 */
}

/* 썸네일 전체 박스 (오른쪽 세로) */
.cover-thumbs-wrapper {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background-color: rgb(30 29 93 / 93%);
	padding: 15px 12px;
	border-radius: 15px;
}

/* 썸네일 리스트 */
.cover-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 개별 썸네일 버튼 */
.cover-thumb {
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
	display: block;
	cursor: pointer;
	text-align: right;
}

.cover-thumb-img {
	width: 105px;
	object-fit: cover;
	border-radius: 50px;
	box-sizing: border-box;
	border: 2px solid transparent;
	transition: border-color .25s ease, filter .25s ease, transform .25s ease;
	height: 105px;
	filter: brightness(0.7);
}

.cover-thumb-title {
	display: inline-block;
	margin-top: 6px;
	font-size: 16px;
	color: #ffffff;
	font-family: "NanumSquareNeoBold", "Malgun Gothic", "sans-serif";
	letter-spacing: -0.02em;
}

/* 활성 썸네일 효과 */
.cover-thumb.is-active .cover-thumb-img {
	border-color: #ffffff;
	filter: brightness(1.0);

}

.cover-thumb.is-active .cover-thumb-title {
	font-weight: 700;
}


/* 배경 + 전체 영역 */
.keyword-section {
	color: #fff;
	padding: 35px 0 50px;
}

.keyword-inner {
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 20px 20px;
}

/* 타이틀 */
.keyword-title {
	font-size: 47px;
	font-family: "Paperlogy6", "Malgun Gothic", sans-serif;
	letter-spacing: -0.03em;
	margin: 15px 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.keyword-title span {
	color: #fdff5a;
	/* 노란 포인트 */
}

.keyword-row {
	position: relative;
	overflow: hidden;
	/* 흘러가는 텍스트 잘라내기 */
	padding: 15px 0;
}

/* 공통 마키 기본 */
.marquee {
	position: relative;
	height: 40px;
	/* 한 줄 높이 */
}

/* 움직이는 그룹 */
.marquee__content {
	position: absolute;
	top: 0;
	display: flex;
	align-items: center;
	gap: 32px;
	/* 키워드 사이 간격 */
	white-space: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 링크 스타일 */
.keyword-link {
	font-size: 40px;
	font-family: "Paperlogy5", "Malgun Gothic", sans-serif;
	text-decoration: none;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 4px;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.keyword-link:hover,
.keyword-link:focus-visible {
	background: #ffffff;
	color: #3c3c9e;
	transform: translateY(-1px);
	outline: none;
}

/* ====== 방향별 애니메이션 ====== */

/* 오른쪽으로 흐르는 줄 (1줄) */
.marquee--right .marquee__content:first-child {
	left: 0;
	animation: marquee-right 90s linear infinite;
}

.marquee--right .marquee__content:nth-child(2) {
	left: -150%;
	animation: marquee-right 90s linear infinite;
}

/* 왼쪽으로 흐르는 줄 (2줄) */
.marquee--left .marquee__content:first-child {
	left: 0;
	animation: marquee-left 100s linear infinite;
}

.marquee--left .marquee__content:nth-child(2) {
	left: 190%;
	animation: marquee-left 100s linear infinite;
}

/* 왼쪽 방향 keyframes */
@keyframes marquee-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* 오른쪽 방향 keyframes */
@keyframes marquee-right {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(100%);
	}
}


/*커버 NEW 끝*/




/*팝업창*/
#popup {
	display: block;
	/*숨기기*/
	position: fixed;
	width: 100%;
	height: 100%;

	background-image: url(../img/common/bg_1r.png);
	background-repeat: repeat;
	z-index: 999;
	overflow: hidden;
	cursor: pointer;
}

#popmenu {
	position: absolute;
	left: 28%;
	top: 14%;
}

#popmenu img {
	margin-top: 0px;
}

.exit {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translate(-50%, 0);
	width: 150px;
	height: 40px;
	text-align: center;
	line-height: 2.1em;
	cursor: pointer;

}


.flex_wrap {
	display: flex;
	justify-content: space-between;
}

.flex_wrap1 {

	justify-content: space-between;
}


.main_visu_txt {
	position: absolute;
	z-index: 491;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12%;
	width: 572px;
}


.mobile_visu_txt {
	display: none;
	position: absolute;
	z-index: 491;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	padding-top: 23%;
	text-align: center;
}


.section2 {
	background-image: url(../img/cover/bg_ptn.png);
	background-repeat: repeat;
	background-attachment: fixed;
}




.sec_con ul li {
	width: 350px;
	border-radius: 5px 5px 0px 0px;
	height: 280px;
	position: relative;
	margin-bottom: 30px;
	/* background-size: contain !important; */
	overflow: hidden;
}

.sec_con ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

.sec_con ul li a .sec_con_txt {
	text-align: center;
	background: rgba(255, 255, 255, 0.95);
	position: absolute;
	width: 100.2%;
	bottom: 0;
	color: #000;
	padding: 0.9375rem 0;
	transition: .3s;
	font-size: 19px;
	font-family: "NanumSquareNeoBold", "Malgun Gothic", "sans-serif";


}

.sec_con ul li a:hover .sec_con_txt {
	background: #8dc63e;
	color: #fff;
}


.section0.title .sec_con ul li a:hover .sec_con_txt {
	background: #feb811;
	color: #ffffff;
}



.section0 .sec_con ul li a:hover .sec_con_txt {
	background: #58ab81;
	color: #ffffff;
}


.section1 .sec_con ul li a:hover .sec_con_txt {
	background: #e5004f;
	color: #ffffff;
}


.section3 .sec_con ul li a:hover .sec_con_txt {
	background: #171c61;
	color: #ffffff;
}


.sec_con_last ul li .sec_con_last_wrap {
	text-align: center;
}

.sec_con_last ul li .sec_con_last_wrap a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.sec_con_last ul li .sec_con_last_wrap .sec_con_last_top {
	color: #c06518;
	font-size: 19px;
	width: 100%;
	margin: 0 auto;
	border-bottom: 1px solid;
	padding-bottom: 8px;
	margin-bottom: 12px;
}

.sec_con_last ul li .sec_con_last_wrap .sec_con_last_bottom {
	font-size: 18px;
}

@media screen and (max-width:1580px) {
	.sec_con_last ul li {
		width: 46%;
	}
}

@media screen and (min-width:950px) {
	header h1 {
		opacity: 0;
	}
}



@media screen and (max-width:1300px) {
	html {
		font-size: 10px;
	}

	.sec_con ul li a .sec_con_txt {
		font-size: 16px;
	}

	.main_visu_txt {
		display: none;
	}

	.mobile_visu_txt {
		display: block;
		position: absolute;
		z-index: 491;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 80%;
		padding-top: 16%;
		text-align: center;
	}
}

@media screen and (max-width:480px) {
	html {
		font-size: 8px;
	}
}

header h1 {
	opacity: 1;
}

header {
	position: fixed;
	z-index: 2;
}

/* ========================================================
   [Main Slider] 텍스트 가독성을 위한 하단 그라데이션 (By Senior Publisher)
   ======================================================== */

/* 1. 슬라이드 자체를 기준점으로 잡음 */
.swiper-slide {
	position: relative;
	/* 자식 요소들의 기준점 */
	overflow: hidden;
	/* 혹시 모를 넘침 방지 */
}

/* 2. 가상 요소(::after)로 그라데이션 레이어 생성 */
/* [수정] 앞에 .main-slider를 붙여서 다른 슬라이더(썸네일 등)에는 영향 없게 함 */
.main-slider .swiper-slide::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	/* 메인 슬라이드용 높이 설정 */

	/* 밑에서 위로: 진한 검정 -> 투명 */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);

	z-index: 1;
	pointer-events: none;
}

/* [안전장치] 혹시 모를 충돌 방지를 위해 썸네일 슬라이드 쪽은 가상요소 숨김 처리 */
.health-zip-swiper .swiper-slide::after {
	display: none !important;
}



/* 3. 텍스트 컨텐츠(.content)를 그라데이션보다 위로 올림 */
.swiper-slide .content {
	position: absolute;
	/* 기존 속성 유지 */
	z-index: 2;
	/* 그라데이션(z-index:1)보다 높아야 글자가 선명함 */
}


a .cover_btn {
	color: #ffffff;
}

a .cover_btn:hover {
	color: #fffa7c;
}

.cover_btn p span {
	font-size: 20px;
	padding: 7px 0px 7px 0px;
	font-family: 'Paperlogy5';
	letter-spacing: 0.02em;
}

.cover_btn p span:hover {
	background-color: #ffffff;
	color: #000000;
	transition: 0.2s;
}

.cover_btn p {
	margin-bottom: 10px;
}

/* ========================================================
   [Button] 슬라이드 '기사읽기' 버튼 인터랙션 (Line to Box)
   ======================================================== */

/* 1. 버튼 텍스트 감싸는 span (Flex 컨테이너로 변신) */
.cover_btn p span {
	display: inline-flex;
	/* 수직/수평 정렬을 위해 Flex 사용 */
	align-items: center;
	/* 세로 중앙 정렬 (텍스트와 선 높이 맞춤) */
	justify-content: flex-start;
	/* 처음엔 왼쪽 정렬 */

	height: 49px;
	/* 버튼 높이 확보 */
	padding: 10px;
	/* 텍스트 좌우 여백 */

	font-size: 19px;
	font-family: 'Paperlogy5';
	letter-spacing: 0.02em;
	color: #ffffff;
	/* 텍스트: 흰색 */

	background-color: transparent;
	/* 배경: 투명 */
	border: 1px solid transparent;
	/* 레이아웃 흔들림 방지 */
	box-sizing: border-box;

	/* 너비와 색상 변화를 부드럽게 */
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

	cursor: pointer;
}

/* 2. [기본 상태] 텍스트 뒤의 '긴 흰 줄' (가상 요소) */
.cover_btn p span::after {
	content: '';
	display: block;
	width: 60px;
	/* 선 길이 (원하는 만큼 조절 가능) */
	height: 1px;
	/* 선 두께 */
	background-color: #ffffff;
	/* 선 색상: 흰색 */
	margin-left: 10px;
	/* 텍스트와 선 사이 간격 */

	/* 호버 시 선이 사라지는 애니메이션 */
	transition: all 0.3s ease;
	opacity: 1;
}

/* 3. [호버 상태] 버튼이 200px 박스로 변신 */
.cover_btn p span:hover {
	width: 170px;
	/* 너비 확장 */
	background-color: #ffffff;
	/* 배경: 흰색 */
	color: #111111;
	/* 텍스트: 검정 (가독성) */

	justify-content: center;
	/* 텍스트 가로 중앙 정렬 */
	padding: 0;
	/* 패딩 초기화 (정중앙 맞춤 위해) */
	border-radius: 3px;
	/* (선택사항) 모서리 둥글게 */
}

/* 4. [호버 상태] 흰 줄은 사라짐 */
.cover_btn p span:hover::after {
	width: 0;
	/* 길이 0으로 줄어듦 */
	margin-left: 0;
	/* 간격 제거 */
	opacity: 0;
	/* 투명하게 */
}

/* --- 메인 슬라이드 텍스트/버튼 위치 복구 --- */
.main-slider .swiper-slide .content {
	position: absolute;
	z-index: 10;
	/* 그라데이션(z-index:1)보다 확실히 위에 오도록 설정 */

	/* 위치 지정 (이 부분이 없어서 사라진 것입니다) */
	left: 60px;
	/* 왼쪽에서 60px 떨어짐 */
	bottom: 30px;
	/* 바닥에서 60px 떨어짐 */

	/* 스타일 */
	width: 80%;
	/* 텍스트가 너무 길어지면 줄바꿈 */
	color: #ffffff;
	/* 글자색 흰색 */
	text-align: left;
	/* 왼쪽 정렬 */
}

/* (선택사항) 타이틀 폰트 스타일이 만약 깨졌다면 아래 코드도 같이 추가하세요 */
.main-slider .swiper-slide .content .title {
	font-family: 'Paperlogy7';
	font-size: 60px;
	/* 글자 크기 */
	line-height: 1.2em;
	/* 줄 간격 */
	margin-bottom: 17px;
	/* 버튼과의 간격 */
	text-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
	/* 배경이 밝아도 잘 보이게 그림자 추가 */
}

/* 모바일 화면에서는 위치와 크기 조절 */
@media screen and (max-width: 768px) {
	.main-slider .swiper-slide .content {
		left: 15px;
		bottom: 0px;
		width: 94%;
	}

	.main-slider .swiper-slide .content .title {
		font-size: 28px;
		margin-bottom: 0px;
		/* 모바일 폰트 크기 줄임 */
	}

	.cover_btn p span {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		height: 49px;
		padding: 0px;
		font-size: 18px;
		font-family: 'Paperlogy5';
		letter-spacing: 0.02em;
		color: #ffffff;
		background-color: transparent;
		border: 1px solid transparent;
		box-sizing: border-box;
		transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
		cursor: pointer;
	}
}




/* =========================================
          위로 올라오는 메뉴 시작
     ========================================= */



/* 메뉴3 섹션 */
.health-zip-section {
	width: 100%;
	margin: 20px 0 85px;
}



/* 슬라이더+화살표를 감싸는 래퍼:
       여기 기준으로 화살표를 바깥으로 빼준다 (가운데 기준) */
.health-zip-swiper-wrap {
	position: relative;
	overflow: visible;
}

/* Swiper 기본 설정: 여기서만 슬라이드를 잘라준다 */
.health-zip-swiper {
	position: relative;
	/* 닷 버튼이 잘릴 수 있으므로 하단 패딩을 넉넉히 줍니다 */
	padding: 10px 0 50px;
	overflow: hidden;
}

/* 2. [핵심 수정] 슬라이드 높이 고정 (덜컥거림 해결) */
.health-zip-swiper .swiper-slide {
	/* 기존 height: auto; 를 제거하고 카드 높이와 동일하게 고정 */
	height: 400px;

	/* Flexbox 정렬로 높이 오차 방지 */
	display: flex;
	justify-content: center;
}

/* 카드 */
.health-card {
	position: relative;
	/* 텍스트를 카드 안에서 절대 위치로 쓰기 위해 필요 */
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 400px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.health-card-img {
	position: relative;
	overflow: hidden;
	flex: 0 0 auto;
}

.health-card-img img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .5s ease;
	transform-origin: center center;
	transition: transform .5s ease, filter .5s ease;
	transform-origin: center center;
}

.health-card:hover .health-card-img img {
	transform: scale(1.05);
	filter: brightness(0.65);
}

/* 텍스트 영역 : 카드 하단에 겹쳐지는 박스 */
.health-card-text {
	position: absolute;
	/* 카드 안에서 겹쳐지도록 */
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	padding: 21px 20px 20px;
	overflow: hidden;
	max-height: 70px;
	/* 기본: 제목만 보이는 높이 */
	transition: max-height .4s ease;
}

.health-card-title {
	font-size: 22px;
	font-family: 'Paperlogy5';
	color: #111;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.health-card-detail {
	margin-top: 6px;
	font-size: 17px;
	line-height: 1.6;
	color: #555;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s ease, transform .5s ease;
}

/* 버튼 영역 */
.health-card-footer {
	margin-top: 14px;
	display: flex;
	justify-content: flex-start;
}

.health-card-footer .read-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px 6px;
	font-family: 'Paperlogy5';
	font-size: 17px;
	line-height: 1.3em;
	border-radius: 3px;
	border: 1px solid #e23d4e;
	color: #e23d4e;
	background: #fff;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.health-card-footer .read-btn:hover,
.health-card-footer .read-btn:focus-visible {
	background: #e23d4e;
	color: #fff;
}

/* 호버 시 텍스트 박스가 '위로' 확장되면서 이미지 아랫부분을 덮음 */
.health-card:hover .health-card-text {
	max-height: 230px;
	/* 내용 길이에 맞춰 조절 */
}

.health-card:hover .health-card-detail {
	opacity: 1;
	transform: translateY(0);
}

/* 건강 ZIP 전용 화살표 버튼 (Swiper 내장 버튼 안씀) */
.health-zip-arrow {
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 25px;
	color: #6662b9;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
}

/* 1450px 카드 영역 밖으로 나가도록 음수값 */
.health-zip-prev {
	left: -50px;
	/* 필요 시 -40px, -50px 등으로 더 밖으로 */
}

.health-zip-next {
	right: -50px;
}

/* 아이콘 표시 */
.health-zip-arrow::before {
	font-size: 110px;
	line-height: 1;
	font-family: 'Paperlogy4';
}

.health-zip-prev::before {
	content: '‹';
}

.health-zip-next::before {
	content: '›';
}

/* 닷 */
/* 3. [핵심 수정] 페이지네이션 닷 버튼 클릭 활성화 */
.health-zip-swiper .swiper-pagination {
	position: absolute;
	/* static에서 absolute로 변경하여 위치 고정 */
	bottom: 0;
	/* 컨테이너 바닥에 배치 */
	left: 0;
	width: 100%;
	text-align: center;
	margin-top: 0;
	/* margin 제거 (absolute 배치라 불필요) */

	/* 클릭이 안 되는 문제 해결: 우선순위 높임 */
	z-index: 50;
	pointer-events: auto;
	/* 클릭 이벤트 강제 활성화 */
	cursor: pointer;
}

.health-zip-swiper .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	margin: 0 5px !important;
	/* 간격 살짝 조정 */
	background: #ccc;
	opacity: 1;
	display: inline-block;
	/* 렌더링 안정성 확보 */
	cursor: pointer;
	/* 마우스 커서 손가락 모양 */
}

.health-zip-swiper .swiper-pagination-bullet-active {
	background: #e23d4e;
}

/* =========================================
   [추가됨] 슬라이더 없는 정적 3단 카드 레이아웃
   ========================================= */

.static-card-list {
	display: flex;
	/* 가로 나열 */
	justify-content: center;
	/* 중앙 정렬 */
	gap: 20px;
	/* 카드 사이 간격 (기존 슬라이더와 동일) */
	width: 100%;
	margin: 0 auto;
}

/* 개별 카드 크기 제어 */
.static-card-list .health-card {
	/* 3개를 균등하게 배치 (간격 고려하여 너비 설정) */
	width: calc(33.333% - 14px);
	max-width: 470px;
	/* 너무 커지지 않게 제한 */
	/* 기존 카드 스타일 상속을 위해 높이 명시 */
	height: 330px;
	cursor: pointer;
}

/* =========================================
          위로 올라오는 메뉴 끝
     ========================================= */


/* ========================================================
   [Mobile Slider Fix] HTML 변형 없이 2열 그리드 적용
   ======================================================== */
@media screen and (max-width: 767px) {

	.news-highlight {
		margin: 10px auto;
	}

	/* 1. 컨테이너 높이 및 여백 재설정 */
	.custom-slider-container {
		height: auto !important;
		padding: 0 0px 20px !important;
		overflow: visible !important;
	}

	/* 2. 트랙을 2열 그리드로 변경 */
	.slider-mask {
		overflow: visible !important;
	}

	.custom-track {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		/* 2칸씩 배치 */
		gap: 10px !important;
		/* 간격 */
	}

	/* 3. 개별 아이템: 3D 효과 제거 및 위치 초기화 */
	.custom-item,
	.custom-item.pos-0,
	.custom-item.pos-1,
	.custom-item.pos-2,
	.custom-item.pos-3 {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		/* 3D 효과 제거 */
		width: 100% !important;
		height: auto !important;
		opacity: 1 !important;
		filter: none !important;
		z-index: 1 !important;
		margin: 0 !important;
		cursor: pointer !important;
		/* 손가락 모양 강제 */
	}

	/* 4. 이미지 박스 스타일 */
	.card-box {
		height: 110px !important;
		border-radius: 5px !important;
	}

	/* 5. 오버레이(기사읽기 버튼 포함) 숨김 */
	/* 중요: 화면엔 안 보이지만 HTML엔 존재하므로 JS가 링크를 가져올 수 있음 */
	.card-overlay {
		display: none !important;
	}

	/* 6. 타이틀 텍스트 정리 */
	.card-title {
		font-size: 18px !important;
		margin-top: 10px !important;
		margin-bottom: 0 !important;
		text-align: center !important;
		color: #000 !important;
		font-family: 'Paperlogy5', sans-serif;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	/* 7. PC용 컨트롤 숨김 */
	.custom-btn,
	.custom-dots {
		display: none !important;
	}
}

/* ========================================================
   [Hybrid Layout] PC는 탭 구조, Mobile은 심플 그리드
   ======================================================== */

/* 1. PC 기본 상태 */
.pc-zip-view {
	display: flex !important;
	/* PC는 Flex 레이아웃 (기존) */
	width: 100%;
}

.mobile-zip-view {
	display: none !important;
	/* PC에서는 모바일 그리드 숨김 */
}

/* 2. 모바일 (767px 이하) 상태 */
@media screen and (max-width: 767px) {

	/* PC용 복잡한 탭 숨김 */
	.pc-zip-view {
		display: none !important;
	}

	/* 모바일용 심플 그리드 보이기 */
	.mobile-zip-view {
		display: block !important;
	}

	/* --- 모바일 그리드 스타일링 (m1.png 스타일) --- */
	.zip-grid-wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* 2열 배치 */
		gap: 10px;
		/* 간격 */
	}

	.zip-item {
		display: block;
		text-decoration: none;
		color: inherit;
	}

	.zip-img {
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
		margin-bottom: 10px;
		background-color: #f5f5f5;
	}

	.zip-img img {
		width: 100%;
		height: auto;
		display: block;
	}

	.zip-title {
		font-size: 18px;
		font-family: 'Paperlogy5', sans-serif;
		text-align: center;
		color: #000;
		margin: 0;
		line-height: 1.3;
		word-break: keep-all;
		/* 단어 단위 줄바꿈 */
	}
}


.pc-block-view {
    display: block;
    width: 100%;
}

/* 2. 모바일 화면 (767px 이하) */
@media screen and (max-width: 767px) {
	
	.health-zip-section {
    margin: 20px 0 50px;
}
    
    /* PC용 카드 리스트 숨김 */
    .pc-block-view {
        display: none !important;
    }
    

}
