@charset "utf-8";

/* ==================================================
	공통 틀 CSS
================================================== */
.mcontents {
	position: relative;
	max-width: 100%;
	overflow-x: hidden;
}

/* ==================================================
	공통 사항
================================================== */
/* 타이틀 */
.main-text h2 {
	font-size: 6rem;
	font-weight: var(--font-bd);
}

.main-text .highlight {
	color: var(--brand-color-main);
}

.main-text p {
	font-size: 2.4rem;
	color: var(--color-gray1);
}

/* Overlay */
.main_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 80%);*/
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 45%);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.main-text h2 {
		font-size: 5.2rem;
	}
}

@media screen and (max-width: 1024px) {
	.main-text h2 {
		font-size: 4.8rem;
	}

	/* [추가 2026-04-02 공통 사항 반응형] 768px(1.6rem) 전 단계 — 제목·본문 비율 급변 완화 */
	.main-text p,
	.main-text .sec-desc {
		font-size: 2rem;
	}
}

@media screen and (max-width: 768px) {
	.main-text h2 {
		font-size: 3.6rem;
	}

	.main-text .sec-desc,
	.main-text p {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 640px) {
	.main-text h2 {
		font-size: 3rem;
	}
}

/* ==================================================
	메인비주얼
================================================== */
.hero-section {
	position: relative;
	padding: var(--header-hei) var(--header-inner-padding) 0;
}

.hero-banner {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 78rem;
	border-radius: 4rem;
	overflow: hidden;
	margin: 0 auto;
}

.hero-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 1s ease-in-out, visibility 1s;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* 첫 로드: 깜빡임 없이 첫 슬라이드만 바로 노출(scale 1.05, 글씨 숨김) → 다음 프레임에 active로 애니 재생 */
.hero-slide.hero-initial {
	opacity: 1;
	visibility: visible;
	z-index: 2;
	transition: none;
}

.hero-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
	transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg-img {
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.hero-text {
	position: relative;
	z-index: 3;
	text-align: center;
	color: var(--color-white);
}

.hero-text .hero-text-line {
	display: block;
	opacity: 0;
	transform: translateY(2.4rem);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active .hero-text .hero-text-line:nth-of-type(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.hero-slide.active .hero-text .hero-text-line:nth-of-type(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.55s;
}

.hero-text h2 {
	font-family: var(--font-Paperlogy);
	font-size: 6.4rem;
	font-weight: var(--font-bd);
	line-height: 1.3;
	text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

/* Hero Controls */
.hero-slider-controls {
	position: absolute;
	bottom: 5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 2rem;
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	padding: 1rem 2.5rem;
	border-radius: 3rem;
}

.page-current,
.page-total {
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: var(--font-sb);
}

.progress-bar {
	width: 10rem;
	height: 0.2rem;
	background: rgba(255, 255, 255, 0.2);
	position: relative;
}

.progress-inner {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: var(--color-white);
}

.arrow {
	cursor: pointer;
	display: flex;
	align-items: center;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.hero-banner {
		height: 68rem;
		border-radius: 3.5rem;
	}

	.hero-text h2 {
		font-size: 5.6rem;
	}

	.hero-slider-controls {
		bottom: 4rem;
		padding: 0.9rem 2.2rem;
		gap: 1.8rem;
	}
}

@media screen and (max-width: 1024px) {
	.hero-banner {
		height: 50rem;
		border-radius: 3rem;
	}

	.hero-text h2 {
		font-size: 5rem;
	}

	.hero-slider-controls {
		bottom: 3rem;
		padding: 0.8rem 2rem;
		gap: 1.5rem;
		border-radius: 2.5rem;
	}

	.progress-bar {
		width: 8rem;
	}
}

@media screen and (max-width: 768px) {
	.hero-banner {
		height: 42rem;
		border-radius: 2rem;
	}

	.hero-text h2 {
		font-size: 3.6rem;
		line-height: 1.35;
	}

	.hero-slider-controls {
		bottom: 2rem;
		padding: 0.6rem 1.5rem;
		gap: 1.2rem;
		border-radius: 2rem;
	}

	.page-current,
	.page-total {
		font-size: 1.4rem;
	}

	.progress-bar {
		width: 6rem;
	}
}

@media screen and (max-width: 640px) {
	.hero-banner {
		height: 36rem;
	}

	.hero-text h2 {
		font-size: 2.8rem;
	}

	.hero-slider-controls {
		bottom: 1.5rem;
		padding: 0.5rem 1.2rem;
		gap: 1rem;
	}
}

/* ==================================================
	사업영역
================================================== */
.business-section {
	position: relative;
	/* 메인 슬라이더 바로 아래부터 배경이 시작되도록 */
	padding: 10rem 0 14rem;
	background-image: url('../../lib/images/main/background.png');
	background-repeat: no-repeat;
	background-position: center -15rem;
	background-size: 100% auto;
}

.bg-watermark {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	font-size: 16rem;
	font-weight: var(--font-eb);
	color: #E8EEF4;
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
}

.bg-watermark__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: bgWatermarkMarquee 28s linear infinite;
}

.bg-watermark__text {
	display: inline-flex;
	align-items: flex-end;
	padding-right: 8rem;
	letter-spacing: 0.02em;
}

@keyframes bgWatermarkMarquee {
	0% {
		transform: translateX(0);
	}

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

.business-container {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 4rem;
	max-width: var(--px-base);
	margin: 0 auto;
	padding: 0 var(--header-inner-padding);
}

.biz-col-left,
.biz-col-right {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.biz-col-left {
	gap: 6.4rem;
}

.biz-col-right {
	gap: 4rem;
	padding-top: 2rem;
}

.biz-card {
	display: block;
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	height: 43rem;
	text-decoration: none;
}

/* 모바일/터치에서 a:focus(border-radius: 5px)로 라운드가 바뀌는 현상 방지 */
.biz-card:focus,
.biz-card:focus-visible,
.biz-card:active {
	border-radius: 2rem;
	outline: none;
}

.biz-card-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	z-index: 0;
}

.biz-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s;
}

.biz-card:hover .biz-img {
	transform: scale(1.08);
}

.biz-title {
	position: absolute;
	bottom: 4rem;
	left: 4rem;
	color: var(--color-white);
	font-size: 3.2rem;
	font-weight: var(--font-bd);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.business-section {
		padding: 8rem 0 12rem;
	}

	.business-container {
		gap: 3.2rem;
	}

	.biz-col-left {
		gap: 5rem;
	}

	.biz-col-right {
		gap: 3.2rem;
		padding-top: 1.5rem;
	}

	.biz-card {
		height: 38rem;
	}

	.biz-title {
		font-size: 2.9rem;
		bottom: 3.5rem;
		left: 3.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.business-section {
		padding: 8rem 0 12rem;
	}

	.business-container {
		flex-direction: column;
		gap: 4rem;
	}

	.biz-col-left,
	.biz-col-right {
		gap: 3rem;
	}

	.biz-col-right {
		padding-top: 0;
	}

	.biz-card {
		height: 36rem;
	}

	.biz-title {
		font-size: 2.8rem;
		bottom: 3rem;
		left: 3rem;
	}
}

@media screen and (max-width: 768px) {
	.business-section {
		padding: 6rem 0 8rem;
	}

	.business-container {
		gap: 3rem;
	}

	.biz-col-left,
	.biz-col-right {
		gap: 2.5rem;
	}

	.biz-card {
		height: 28rem;
		border-radius: 1.5rem;
	}

	.biz-title {
		font-size: 2.4rem;
		bottom: 2.5rem;
		left: 2.5rem;
	}

	.bg-watermark {
		font-size: 10rem;
	}
}

@media screen and (max-width: 640px) {
	.business-section {
		padding: 5rem 0 6rem;
	}

	.biz-card {
		height: 24rem;
	}

	.biz-title {
		font-size: 2rem;
		bottom: 2rem;
		left: 2rem;
	}
}

/* ==================================================
	연구개발
================================================== */
.rnd-section {
	position: relative;
	padding: 10rem 0;
	background-image: url('../../lib/images/main/rnd_background.jpg');
	background-color: #748eb1;
	background-repeat: no-repeat;
	background-position: center top;
	color: var(--color-white);
	overflow: hidden;
}

.rnd-container {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: var(--px-base);
	padding: 0 var(--header-inner-padding);
}

.rnd-section .main-text p {
	color: var(--color-white);
}

.rnd-tabs {
	display: flex;
	gap: 1.5rem;
	margin-top: 6rem;
}

.tab-btn {
	padding: 1.4rem 3.4rem;
	border: 0.1rem solid rgba(255, 255, 255, 0.4);
	border-radius: 3rem;
	color: var(--color-white);
	font-size: 1.8rem;
	transition: 0.3s;
}

.tab-btn.active {
	background: #81afdd;
	border-color: #81afdd;
	font-weight: var(--font-bd);
}

.rnd-carousel-wrapper {
	margin-top: 8rem;
	overflow: visible;
	position: relative;
}

.rnd-carousel {
	display: flex;
	gap: 0;
	align-items: stretch;
	/* 카드 높이 균일하게 */
}

/* Slick 적용 시 레이아웃 */
.rnd-carousel.slick-initialized {
	display: block;
}

.rnd-carousel,
.rnd-carousel .slick-list {
	overflow: visible;
}

.rnd-carousel .slick-track {
	display: flex;
	align-items: stretch;
}

.rnd-carousel .slick-slide {
	margin-right: 4rem;
}

.rnd-card {
	position: relative;
	display: block;
	border-radius: 3rem;
	overflow: hidden;
	flex-shrink: 0;
	box-sizing: border-box;
	width: 140rem;
	height: 50rem;
	text-decoration: none;
}

/* 모바일/터치에서 a:focus(border-radius: 5px)로 라운드가 바뀌는 현상 방지 */
.rnd-card:focus,
.rnd-card:focus-visible,
.rnd-card:active {
	border-radius: 3rem;
	outline: none;
}

/* slick이 slide에 inline 스타일을 붙여도 높이 고정 */
.rnd-carousel.slick-initialized .rnd-card.slick-slide {
	height: 50rem;
}

.rnd-card-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	z-index: 0;
}

.rnd-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s;
}

.rnd-card:hover .rnd-img {
	transform: scale(1.05);
}

.rnd-text-layer {
	position: absolute;
	bottom: 5rem;
	left: 6rem;
	right: 6rem;
	z-index: 5;
	opacity: 0;
	transform: translateY(1.4rem);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.rnd-carousel.slick-initialized .rnd-card.slick-current .rnd-text-layer {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.rnd-text-layer h3 {
	font-size: 4.8rem;
	margin-bottom: 1rem;
}

.rnd-text-layer h3,
.rnd-text-layer p {
	overflow-wrap: break-word;
	word-break: keep-all;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.rnd-section {
		padding: 8rem 0;
	}

	.rnd-tabs {
		margin-top: 5rem;
		gap: 1.4rem;
	}

	.tab-btn {
		padding: 1.3rem 3rem;
		font-size: 1.7rem;
	}

	.rnd-carousel-wrapper {
		margin-top: 6rem;
		overflow: hidden;
	}

	.rnd-carousel,
	.rnd-carousel .slick-list {
		overflow: hidden;
	}

	.rnd-carousel .slick-slide {
		margin-right: 0;
	}

	.rnd-carousel.slick-initialized .rnd-card.slick-slide {
		width: 100%;
		height: 46rem;
	}

	.rnd-card {
		width: 100%;
		height: 46rem;
		border-radius: 2.8rem;
	}

	.rnd-text-layer {
		bottom: 4rem;
		left: 5rem;
		right: 5rem;
	}

	.rnd-text-layer h3 {
		font-size: 4.2rem;
	}
}

@media screen and (max-width: 1024px) {
	.rnd-section {
		padding: 8rem 0;
	}

	.rnd-tabs {
		margin-top: 4rem;
		gap: 1.2rem;
	}

	.tab-btn {
		padding: 1.2rem 2.6rem;
		font-size: 1.6rem;
	}

	.rnd-carousel-wrapper {
		margin-top: 5rem;
	}

	.rnd-carousel .slick-slide {
		margin-right: 0;
	}

	.rnd-carousel.slick-initialized .rnd-card.slick-slide {
		width: 100%;
		height: 42rem;
	}

	.rnd-card {
		width: 100%;
		height: 42rem;
		border-radius: 2.5rem;
	}

	.rnd-text-layer {
		bottom: 3rem;
		left: 4rem;
		right: 4rem;
	}

	.rnd-text-layer h3 {
		font-size: 3.6rem;
	}
}

@media screen and (max-width: 768px) {
	.rnd-section {
		padding: 6rem 0;
	}

	.rnd-tabs {
		margin-top: 3rem;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.tab-btn {
		padding: 1rem 2rem;
		font-size: 1.4rem;
		border-radius: 2.5rem;
	}

	.rnd-carousel-wrapper {
		margin-top: 3rem;
	}

	.rnd-carousel .slick-slide {
		margin-right: 0;
	}

	.rnd-carousel.slick-initialized .rnd-card.slick-slide {
		width: 100%;
		height: 36rem;
	}

	.rnd-card {
		width: 100%;
		height: 36rem;
		border-radius: 2rem;
	}

	.rnd-text-layer {
		bottom: 2rem;
		left: 2.5rem;
		right: 2.5rem;
	}

	.rnd-text-layer h3 {
		font-size: 2.8rem;
	}

	.rnd-text-layer p {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 640px) {
	.rnd-section {
		padding: 5rem 0;
	}

	.rnd-carousel .slick-slide {
		margin-right: 0;
	}

	.rnd-carousel.slick-initialized .rnd-card.slick-slide {
		width: 100%;
		height: 32rem;
	}

	.rnd-card {
		width: 100%;
		height: 32rem;
		border-radius: 1.8rem;
	}

	/* [수정 2026-04-02 연구개발 반응형] 640px: 기존 bottom/좌우가 768px보다 커 역전 → 단계적 축소 */
	.rnd-text-layer {
		bottom: 1.8rem;
		left: 2rem;
		right: 2rem;
	}

	.rnd-text-layer h3 {
		font-size: 2.4rem;
	}

	.rnd-text-layer p {
		font-size: 1.3rem;
	}
}

/* ==================================================
	About US
================================================== */
.about-section {
	padding: 10rem 0;
}

.about-container {
	display: flex;
	align-items: stretch;
	gap: 6rem;
	max-width: var(--px-base);
	margin: 0 auto;
	padding: 0 var(--header-inner-padding);
}

.about-left {
	flex: 0.9;
	display: flex;
}

.about-hero-card {
	display: block;
	position: relative;
	border-radius: 3rem;
	overflow: hidden;
	min-height: 86rem;
	flex: 1;
	width: 100%;
	text-decoration: none;
}

/* 모바일/터치에서 a:focus(border-radius: 5px)로 라운드가 바뀌는 현상 방지 */
.about-hero-card:focus,
.about-hero-card:focus-visible,
.about-hero-card:active {
	border-radius: 3rem;
	outline: none;
}

.about-hero-card-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	z-index: 0;
}

.about-hero-card .main_overlay {
	transition: background 0.4s ease;
}

.about-hero-card:hover .about-img {
	transform: scale(1.05);
}

.about-hero-card:hover .main_overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 70%);*/
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.about-hero-card h3 {
	position: absolute;
	bottom: 5rem;
	left: 5rem;
	color: var(--color-white);
	font-size: 4rem;
	z-index: 5;
	transition: transform 0.3s ease;
}

.about-hero-card:hover h3 {
	transform: translateY(-0.4rem);
}

.about-right {
	flex: 1.1;
	display: flex;
	flex-direction: column;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 3rem;
	margin: 3rem 0;
}

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

.about-grid-item-img-wrap {
	overflow: hidden;
	border-radius: 2rem;
	height: 26rem;
	display: block;
}

.about-grid-item-img-wrap>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	transform-origin: center center;
}

.about-grid-item:hover .about-grid-item-img-wrap img {
	transform: scale(1.05);
}

.item-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
	font-size: 2.2rem;
	font-weight: var(--font-bd);
}

.item-label-arrow {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-image: url('../../lib/images/main/arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	box-sizing: border-box;
}

a.btn-contact-large {
	width: 100%;
	background: var(--brand-color-main);
	color: var(--color-white);
	height: 7rem;
	border-radius: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.3rem;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

a.btn-contact-large:hover {
	background: var(--brand-color-dmain);
	transform: translateY(-0.2rem);
	box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
}

a.btn-contact-large span {
	font-weight: var(--font-bd);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.about-section {
		padding: 8rem 0;
	}

	.about-container {
		gap: 5rem;
	}

	.about-hero-card {
		min-height: 72rem;
		border-radius: 2.8rem;
	}

	.about-hero-card h3 {
		font-size: 3.6rem;
		bottom: 4rem;
		left: 4rem;
	}

	.about-grid {
		gap: 1.8rem 2.5rem;
		margin: 2.5rem 0;
	}

	.about-grid-item-img-wrap {
		height: 24rem;
	}

	.item-label {
		font-size: 2.1rem;
		margin-top: 1.4rem;
	}

	a.btn-contact-large {
		height: 6.4rem;
		font-size: 2rem;
		border-radius: 3.2rem;
	}
}

@media screen and (max-width: 1024px) {
	.about-section {
		padding: 8rem 0;
	}

	.about-container {
		flex-direction: column;
		gap: 4rem;
	}

	.about-hero-card {
		min-height: 50rem;
		border-radius: 2.5rem;
	}

	.about-hero-card h3 {
		font-size: 3.2rem;
		bottom: 3rem;
		left: 3rem;
	}

	.about-grid {
		gap: 1.5rem 2rem;
		margin: 2rem 0;
	}

	.about-grid-item-img-wrap {
		height: 22rem;
	}

	.item-label {
		font-size: 2rem;
		margin-top: 1.2rem;
	}

	a.btn-contact-large {
		height: 6rem;
		font-size: 1.9rem;
		border-radius: 3rem;
	}
}

@media screen and (max-width: 768px) {
	.about-section {
		padding: 6rem 0;
	}

	.about-container {
		gap: 3rem;
	}

	.about-hero-card {
		min-height: 38rem;
		border-radius: 2rem;
	}

	.about-hero-card h3 {
		font-size: 2.6rem;
		bottom: 2rem;
		left: 2rem;
	}

	.about-right .main-text h2 {
		font-size: 3.2rem;
	}

	.about-right .main-text p {
		font-size: 1.5rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin: 2rem 0;
	}

	.about-grid-item-img-wrap {
		height: 18rem;
		border-radius: 1.5rem;
	}

	.item-label {
		font-size: 1.8rem;
		margin-top: 1rem;
	}

	.item-label-arrow {
		width: 2.4rem;
		height: 2.4rem;
	}

	a.btn-contact-large {
		height: 5.5rem;
		font-size: 1.8rem;
		border-radius: 2.8rem;
	}
}

@media screen and (max-width: 640px) {
	.about-section {
		padding: 5rem 0;
	}

	.about-hero-card {
		min-height: 32rem;
	}

	.about-hero-card h3 {
		font-size: 2.2rem;
	}

	/* [수정 2026-04-02 About 반응형] 기존 2.8rem 은 동일 폭 공통 .main-text h2(3rem)와 계층 역전 → 2.4rem */
	.about-right .main-text h2 {
		font-size: 2.4rem;
	}

	.about-grid-item-img-wrap {
		height: 16rem;
	}

	.item-label {
		font-size: 1.6rem;
	}

	a.btn-contact-large {
		height: 5rem;
		font-size: 1.7rem;
	}
}

/* ==================================================
	스크롤 진입 reveal 애니메이션 (공통)
.reveal + data-animation + .is-visible, --reveal-delay
================================================== */
.reveal {
	opacity: 0;
	transition: opacity 0.75s ease-out, transform 0.75s ease-out;
	transition-delay: var(--reveal-delay, 0);
}

.reveal.is-visible {
	opacity: 1;
}

/* fade-up */
.reveal[data-animation="fade-up"] {
	transform: translateY(2.8rem);
}

.reveal.is-visible[data-animation="fade-up"] {
	transform: translateY(0);
}

/* slide-up (아래에서 위로) */
.reveal[data-animation="slide-up"] {
	transform: translateY(3.6rem);
}

.reveal.is-visible[data-animation="slide-up"] {
	transform: translateY(0);
}

/* slide-left (왼쪽에서 슬라이드 인) */
.reveal[data-animation="slide-left"] {
	transform: translateX(-3.2rem);
}

.reveal.is-visible[data-animation="slide-left"] {
	transform: translateX(0);
}

/* scale-in (살짝 확대 등장) */
.reveal[data-animation="scale-in"] {
	transform: scale(0.97);
}

.reveal.is-visible[data-animation="scale-in"] {
	transform: scale(1);
}

/* fade-in (opacity만) */
.reveal[data-animation="fade-in"] {
	transform: none;
}

.reveal.is-visible[data-animation="fade-in"] {
	opacity: 1;
}