.section3 {
	background-color: rgb(53 96 128 / 40%);
	padding: 80px 0;
	
}

.ptn {
	background-image: url(../img/common/block.png);
	background-repeat: repeat;
}


/* 카드 컨테이너: 3개 가로 배치 */

.sub_interview {
	font-size: 40px;
	font-family: 'Paperozi7';
	color: #c6c6c6;
}

.exp-cards {
	display: flex;
	gap: 20px;
	min-height: 260px;
	height: 390px;
}

/* 개별 카드 기본 상태 */
.exp-card {
	flex: 1;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition:
		flex 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;
	transition:
		width 0.35s ease,
		opacity 0.2s ease;
}

/* 실제 패딩·콘텐츠는 안쪽 래퍼에만 적용 */
.exp-card-inner {
	opacity: 0;
	/* 텍스트는 기본적으로 보이지 않음 */
	padding: 1px 28px 24px 28px;
	box-sizing: border-box;
	transition: opacity 0.25s ease;
	/* 텍스트 fade-in/out */
}

/* 태그/텍스트 스타일 */
.exp-card-tag {
	display: inline-block;
	font-family: 'Paperozi6';
	padding: 7px 8px 7px;
	font-size: 19px;
	border-radius: 3px;
	background-color: #f53232;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.0em;
}

.exp-card-title {
	font-size: 25px;
	font-family: 'Paperozi5';
	letter-spacing: -0.02em;
	line-height: 1.4;
	margin: 4px 0 10px;
	color: #222;
}

.exp-card-text {
	font-size: 18px;
	color: #666;
	line-height: 1.55em;
	margin: 25px 0 16px;
	letter-spacing: -0.03em;
}

.exp-card-text1 {
	font-size: 18px;
	color: #666;
	line-height: 1.55em;
	margin: 10px 0 35px;
	letter-spacing: -0.03em;
	border-top: 1px dotted #9f9f9f;
	padding-top: 12px;
	display: inline-block;
}

.exp-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 20px 7px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 3px;
	border: 1px solid #e23d4e;
	line-height: 1.1em;
	color: #e23d4e;
	font-family: 'Paperozi5';
	background: #fff;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.exp-card-link:hover,
.exp-card-link:focus-visible {
	background: #e23d4e;
	color: #fff;
}



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

/* 마우스가 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-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;
}

/* 반응형: 좁은 화면에서는 세로 나열 */
@media (max-width: 991px) {
	.exp-cards {
		flex-direction: column;
	}

	.exp-cards:hover .exp-card,
	.exp-cards .exp-card {
		flex: 1 1 auto;
	}

	.exp-card {
		flex-direction: column;
	}

	.exp-card-media {
		width: 100%;
	}

	.exp-card-body {
		width: 100%;
		max-width: 100%;
		opacity: 1;
		border-left: none;
	}

	.exp-card-inner {
		padding: 16px 18px;
	}
}

/* exp-card 이미지 영역 기준 잡기 */
.exp-card-media {
	position: relative;
	overflow: hidden;
	/* 이미지 축소/확대해도 타이틀 잘림 방지 */
}

/* 이미지 우측하단 고정 타이틀 */
.exp-card-media .exp-media-title {
	position: absolute;
	left: 10px;
	bottom: 13px;
	z-index: 3;
	font-family: 'Paperozi6';
	padding: 8px 10px;
	border-radius: 5px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 21px;
	line-height: 1;
	letter-spacing: -0.01em;

	/* 호버 시에도 “움직이지 않게” */
	transform: none !important;
	pointer-events: none;
}

/* (선택) 가독성 더 올리고 싶으면 아래 그라데이션도 같이 */
.exp-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 55%);
	pointer-events: none;
}


/* 1) 텍스트 박스(hover로 펼쳐지는 영역)를 기준점으로 */
.exp-card-body {
	position: relative;
}

/* 2) 버튼을 항상 하단에 고정 */
.exp-card-link {
	position: absolute;
	left: 28px;
	/* exp-card-inner padding-left랑 동일하게 */
	/* 버튼을 박스 폭에 맞추려면 */
	bottom: 0px;
	/* 바닥 여백 */
	margin: 0 !important;
	z-index: 5;
}

/* 3) 카드1처럼 <div><a></a></div>로 감싸진 경우도 같이 고정 */
.exp-card-inner > div:last-child {
	position: static;
	/* 레이아웃 간섭 방지 */
}



/* 메뉴3 섹션 */
.health-zip-section {
	width: 100%;
}


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

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

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

.health-card:hover .health-card-img img {
	transform: scale(1.03);
}

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

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

.health-card-detail {
	margin-top: 10px;
	font-size: 20px;
	font-family: 'Paperozi5';
	line-height: 1.6;
	letter-spacing: -0.02em;
	color: #6c6c6c;
	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: 7px 15px;
	font-size: 17px;
	font-weight: 500;
	border-radius: 3px;
	border: 1px solid #e23d4e;
	line-height: 1.1em;
	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: 220px;
	background-color: #e2f3ff;
	/* 내용 길이에 맞춰 조절 */
}

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



/* =========================
   건강 ZIP: Swiper 제거 → 리스트(나열)로 대체
   ========================= */

/* 기존 wrapper는 유지(폭/여백감 유지용) */
.health-zip-swiper-wrap {
	position: relative;
	overflow: visible;
}

/* ✅ Swiper 대신 리스트 그리드 */
.health-zip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

/* PC에서 3개가 보이던 느낌 유지 */
@media (min-width: 1024px) {
	.health-zip-list .health-card {
		width: calc((100% - 40px) / 3);
		/* gap 20px * 2 */
	}
}

/* 태블릿 */
@media (max-width: 1023px) {}

/* 모바일(기존 Swiper가 1.1개 보이던 느낌을 “1개 카드”로) */
@media (max-width: 600px) {



	.sec_con_left ul {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		gap: 10px;
	}

	.section3 {
		background-color: #feffe8;
		padding: 40px 0;
	}

	.health-card {
		height: 157px;
		width: 47%;
		border-radius: 5px;
	}

	.health-zip-list {
		gap: 10px;
		padding: 0px 0px 0px;
	}


	.health-zip-list .health-card {
		width: calc((100% - 10px) / 2);
	}


	.health-card-text {
		position: absolute;
		/* 카드 안에서 겹쳐지도록 */
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		padding: 10px 10px 10px;
		overflow: hidden;
		max-height: 45px;
		/* 기본: 제목만 보이는 높이 */
		transition: max-height .4s ease;
		cursor: pointer;
	}

	.health-card-title {
		font-size: 17px;
		text-align: center;
		font-family: 'Paperozi6';
		color: #111;
		margin: 0;
		white-space: nowrap;
		/*overflow: hidden;*/
		text-overflow: ellipsis;
	}
	
	.cover_btn p span {
	font-size: 18px !important;
	border: 1px solid #ffffff;
	padding: 6px 13px 6px 13px;
	font-family: 'Paperozi5';
	letter-spacing: -0.01em;
}





}

/* ✅ Swiper 전용 요소(닷/화살표) 안 쓸거면 숨김 처리 */
.health-zip-swiper .swiper-pagination,
.health-zip-arrow,
.health-zip-prev,
.health-zip-next {
	display: none !important;
}




/*팝업창*/
@media screen and (max-width: 950px) {
	.mwidth {
		width: 32% !important;
	}
}

.selectPrevSide a {
	color: #000000;
}


a {
	color: #ffffff;
}


a:hover {
	color: #fffa7c;
}


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

.bg {
	display: block;
	height: 850px;
	position: relative;
	overflow: hidden;
	width: 120%;
	transition-duration: 3s !important;
	transition-delay: 0.5s !important;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}


a .cover_btn {
	color: #ffffff;
}

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

.cover_btn p span {
	font-size: 20px;
	border: 1px solid #ffffff;
	padding: 6px 13px 6px 13px;
	font-family: 'Paperozi5';
	letter-spacing: -0.01em;
}

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

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

#popup {
	display: block;
	/*숨기기*/
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255);
	z-index: 999;
}

#popmenu {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 650px;
	height: 474px;
	text-align: center;
	background: #f58221;
}

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

.wrapper_menu {
	width: 1415px;
	margin: 0 auto;
}

.container {
	padding: 0;
	width: 100%;
	/* max-width: 1840px; */
}

@media screen and (max-width: 767px) {

	.scroll {
		overflow-y: scroll;
	}


	section,
	#include-header,
	#include-footer {
		width: 100%;
	}

	.wrapper_menu {
		width: 100%;
		padding: 0 15px;
	}
}

.main_copy {
	font-family: 'IBMPlexSansKR-SemiBold';
	font-size: 34px;
	line-height: 1.2em;
	letter-spacing: -0.03em;
	color: #ffffff;
}

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

}

/*본문내용*/
#contents {
	width: 600px;
	height: 500px;
	text-align: center;
	line-height: 150px;
	color: #fff;
	background: #555;
	cursor: pointer;
}


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

.flex_wrap1 {

	justify-content: space-between;
}



.sec_con_wrap {
	padding: 30px 0 45px;
}


.sec_con_wrap .sec_tit_mo1 {
	color: #d9d9d9;
}

.sec_con_wrap .sec_tit_mo2 {
	color: #fff;
}

.sec_con_wrap .sec_tit_mo3 {
	color: #d9d9d9;
}

.sec_con_wrap .sec_tit_mo4 {
	color: #fff;
}

.sec_tit {
	font-weight: 500;
	font-size: 3.75rem;
}

.sec_tit_left {
	margin-left: 0.625rem;
	margin-top: 50px;
}

.sec_tit_left img {
	max-width: inherit;
}

.sec_tit_right {
	margin-left: 0.625rem;
}

.sec_tit_right img {
	max-width: inherit;
}

.sec_tit_center {
	margin-left: 0.625rem;
}

.sec_tit_center img {
	max-width: inherit;
}

.sec_con {
	width: 100%;
	position: relative;
}

.sec_con ul li a:hover .hover_txt {
	opacity: 1;
}

.sec_con ul li a .hover_txt {
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	opacity: 0;
	transition: 0.3s;
	font-size: 19px;
	overflow: hidden;
}

@media screen and (max-width:950px) {


	.sec_con ul li {
		background-size: contain !important;
	}

	.sec_con ul li a .hover_txt {
		width: 100%;
		height: 100%;
		text-align: center;
		background: rgba(0, 0, 0, 0.5);
		color: #fff;
		opacity: 0;
		transition: 0.3s;
		font-size: 14px;
		overflow: hidden;
	}

	.sec_con_left ul {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		gap: 5px !important;
	}
}

.sec_con .hover_txt .hover_txt_inner {
	position: relative;
	top: 40%;
	transform: translateY(-50%);
}

.sec_con .hover_txt .hover_txt_inner .more_view {
	margin-bottom: 2rem;
}

.sec_con .hover_txt .hover_txt_inner p {
	font-family: 'score4', serif;
	line-height: 1.5em;
}

.sec_con a:hover .hover_txt .hover_txt_inner .more_view img {
	transition: .3s;
}

.sec_con a:hover .hover_txt .hover_txt_inner .more_view img {
	transform: rotate(180deg);
}

.sec_con_left ul {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}

.sec_con_right ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.sec_con_center ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.sec_con_right ul li {
	margin-right: 1.25rem;
}

.sec_con_center ul li {
	margin-right: 1.25rem;
}

.sec_con ul li {
	width: 458px;
	border-radius: 5px 5px 5px 5px;
	height: 280px;
	position: relative;
	margin-bottom: 1.25rem;
	background-size: cover;
	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%;
	bottom: 0;
	color: #000;
	padding: 9px 0;
	transition: .3s;
	font-size: 20px;
	border-radius: 0 0 5px 5px;
	font-family: "NanumSquareNeoBold", "Malgun Gothic", "sans-serif";
}

.sec_con ul li a:hover .sec_con_txt {
	background: #47aa9d;
	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: #ee9b89;
	color: #ffffff;
}


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

.section2 .sec_con ul li a:hover .sec_con_txt {
	background: #8eb5e9;
	color: #ffffff;
}

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



@media screen and (max-width:950px) {

	.main_copy {
		font-family: 'IBMPlexSansKR-SemiBold';
		font-size: 24px;
		line-height: 1.2em;
		letter-spacing: -0.04em;
	}

	.sec_con ul li a .sec_con_txt {
		text-align: center;
		background: rgba(255, 255, 255);
		position: absolute;
		width: 100%;
		bottom: 0;
		color: #000;
		padding: 0.9375rem 0;
		border-radius: 0 0 0.325rem 0.325rem;
		transition: .3s;
		font-size: 20px;
	}

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

	.sec_con_wrap.bottom {
		padding: 0px 0 70px;
	}


	.sec_con_last ul li .sec_con_last_wrap .sec_con_last_top {
		color: #4d75be;
		font-size: 16.5px !important;
		width: 100%;
		margin: 0 auto;
		border-bottom: 1px solid;
		padding-bottom: 6px !important;
		margin-bottom: 6px !important;
	}

	.sec_con_last ul li .sec_con_last_wrap .sec_con_last_bottom {
		font-size: 16px !important;
	}

}


.sec_con_last ul li {
	height: 8.5625rem;
	background: #fff;
	width: 42.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.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;
}


@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:950px) {

	.sec_con_wrap {
		padding: 20px 0 20px;
	}

	.sec_con_wrap.mb10 {
		padding: 20px 0 10px;
	}

	.sec_con_wrap.flex_wrap {
		display: block;
	}

	/* .sec_con ul li:nth-child(2n-1) { margin-right: 10px; } */
	.sec_con_left ul {
		justify-content: space-between;
	}

	.sec_con_left ul li {
		margin-left: 0;
	}

	.sec_con_right ul {
		justify-content: space-between;
	}

	.sec_con_right ul li {
		margin-right: 0;
	}

	.sec_con_center ul {
		justify-content: space-between;
	}

	.sec_con_center ul li {
		margin-right: 0;
	}

	.section3 .sec_con_right ul li {
		margin-right: 0;
		height: 13.2rem !important;
	}

	.sec_con ul li {
		width: 48.5%;
		height: 126px;
	}


	.sec_tit {
		margin-left: 0.625rem;
		margin-top: 0px;
	}

	.sec_con ul li a .hover_txt .hover_txt_inner .more_view img {
		width: 27px;
	}


}

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

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

	.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;
	}
}


@media screen and (max-width: 950px) {

	.sub_interview {
		font-size: 25px;
		font-family: 'Paperozi7';
		color: #c6c6c6;
		text-align: center;
	}


	.swiper-container.main-slider {
		float: none !important;
		/* ✅ 기존 float:right 제거 */
		width: min(94%, 100vw) !important;
		border-radius: 5px !important;
	}

	.section1 {
		clear: both;
		/* ✅ float 영향 완전 차단 */
	}
	
	
	/* 카드 래퍼를 2열 grid로 */
	.section2 .exp-cards {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr);
		/* ✅ 2열 */
		gap: 10px;
		height: auto !important;
	}

	/* 카드 자체는 grid 아이템으로 */
	.section2 .exp-card {
		width: 100% !important;
		display: block;
	}



	/* 오른쪽 텍스트 박스는 모바일에서 제거 */
	.section2 .exp-card-body {
		display: none !important;
	}

	/* 이미지 영역만 보이게 */
	.section2 .exp-card-media {
		width: 100% !important;
		height: 160px;
		position: relative;
	}

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

	/* 이미지 우측하단 타이틀 유지 */
	.section2 .exp-card-media .exp-media-title {
		right: 10px;
		left: auto;
		bottom: 10px;
		font-size: 17px;
		font-family: 'Paperozi6';
	}

	.section2 .exp-card-media .exp-media-title {
		left: 50% !important;
		right: auto !important;
		bottom: 12px !important;
		top: auto !important;

		/* ❗ 기존 transform: none !important; 을 이걸로 반드시 덮어씀 */
		transform: translateX(-50%) !important;

		text-align: center;
		white-space: nowrap;
	}

	/* hover로 텍스트 박스가 올라오는 효과 제거 */
	.health-card:hover .health-card-text {
		max-height: 45px !important;
		/* 모바일 기본 높이로 고정 */
		background-color: #fff !important;
	}

	/* 상세 텍스트/버튼 영역은 항상 숨김 */
	.health-card .health-card-detail {
		display: none !important;
	}

	/* 텍스트 박스가 터치 이벤트를 가로채지 않게(선택이지만 강력 추천) */
	.health-card-text {
		pointer-events: none;
	}
}

