/* Font Utilities */
.font-xeicon {
    font-family: 'xeicon', sans-serif;
}

/* ========================================
   Custom Cursor
   ======================================== */

/* Custom Cursor Container */
.custom_cursor {
    position: fixed;
    width: 184px;
    height: 184px;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    will-change: transform;
    top: 0;
    left: 0;
    margin-left: -92px;
    margin-top: -92px;
}

.custom_cursor.active {
    opacity: 1;
    visibility: visible;
}

/* Custom Cursor Inner */
.custom_cursor_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hexagon SVG */
.custom_cursor_hexagon {
    position: absolute;
    width: 159.349px;
    height: 177.812px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom_cursor_hexagon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Cursor Text Container */
.custom_cursor_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 0.5px));
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    line-height: 1.4;
    color: #000000;
}

.custom_cursor_label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.custom_cursor_icon {
    font-family: 'xeicon', sans-serif;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.8px;
    margin: 0;
}

/* Non-Cursor More Button (모바일용) */
.non-cursor-more-btn {
    display: none; /* PC에서는 숨김 */
}

/* 커스텀커서 반응형은 여기에 작업할것. */
@media screen and (max-width: 1280px){
    /* 커스텀 커서 숨김 */
    .custom_cursor {display: none !important;}
    
    /* More 버튼 표시 */
    .non-cursor-more-btn-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 77px;
        z-index: 50;
        background-color: #000;
        width: 100%;
        position: relative;
    }
    .non-cursor-more-btn{
        display: block;
        width: 100px;
        height: 100px;
        position: relative;
    }
    
    .non-cursor-more-btn .custom_cursor_hexagon {
        position: absolute;
        width: 100px;
        height: 100px;
        top: 0;
        left: 0;
        z-index: 1;
        transform: translate(0);
        box-sizing: border-box;
        padding: 0 5px;
    }
    
    .non-cursor-more-btn .custom_cursor_hexagon svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .award-more-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        border-radius: 20px;
        text-decoration: none;
        color: #000000;
        transition: all 0.3s ease;
        z-index: 2;
        position: absolute;
    }
    
    .award-more-button span {
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .award-more-button .xi-plus {
        font-size: 16px;
        line-height: 1.4;
    }
}
@media screen and (max-width: 500px){
    .non-cursor-more-btn-wrapper{
        padding-bottom: 80px;
    }
}









/* SEO를 위한 시각적 숨김 (스크린리더는 읽음) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Award Section - Hide default cursor */
#MainAwards.cursor-active,
#MainAwards.cursor-active * {
    cursor: none !important;
}

/* Portfolio Section - Hide default cursor */
#MainPortfolio.cursor-active,
#MainPortfolio.cursor-active * {
    cursor: none !important;
}

/* Culture Story Section - Hide default cursor */
#MainCultureStory.cursor-active,
#MainCultureStory.cursor-active * {
    cursor: none !important;
}

/* Exception: Culture Article cards should have normal cursor */
#MainCultureStory .culture-article,
#MainCultureStory .culture-article * {
    cursor: pointer !important;
}


/* ========================================
   Section 00: Hero Section
   ======================================== */

/* Hero Section Container */
#MainHero.hero-section {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	isolation: isolate;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 60px;
	padding-top: 80px;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	width: 100%;
}

/* Hero Background */
.hero-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-background-darken {
	position: absolute;
	background-color: #000000;
	inset: 0;
}

/* Hero Video */
.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

/* Hero Gradient */
.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8));
	z-index: 1;
}

/* Hero Content */
.hero-content {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 1;
}

/* Hero Text Wrapper */
.hero-text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	flex-shrink: 0;
}

/* Hero Text Row */
.hero-text-row {
	display: flex;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 900;
	gap: 10px;
	align-items: flex-start;
	justify-content: center;
	line-height: 1;
	position: relative;
	flex-shrink: 0;
	font-size: 13.3333vw;
	text-align: center;
	color: #ffffff;
	flex-wrap: wrap;
}

.hero-text-row--end {
	align-items: flex-end;
}

.hero-text-row--center {
	align-items: center;
}

/* Hero Text */
.hero-text {
	position: relative;
	flex-shrink: 0;
	/* 초기 상태: blur와 opacity로 숨김 (JavaScript에서 애니메이션) */
	filter: blur(20px);
	opacity: 0;
}

/* Hero Subtitle */
.hero-subtitle {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0;
	position: relative;
	flex-shrink: 0;
	order: 0;
}
.hero-subtitle.mob-only{
	display: block;
}
.hero-subtitle.pc-only{
	display: none;
}
.hero-subtitle-content {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 500;
	line-height: 1.4;
	position: relative;
	flex-shrink: 0;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	letter-spacing: 0;
	padding: 10px 0;
	margin-top: 20px;
	display: block;
}

.hero-subtitle-line {
	margin-bottom: 0;
	white-space: nowrap;
}

.hero-subtitle-line:last-child {
	margin-bottom: 0;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	#MainHero.hero-section{
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainHero.hero-section{
		padding-top: 100px;
	}
	.hero-text-row{
		gap: 10px;
	}
	.hero-subtitle.pc-only{
		display: flex;
	}
	.hero-subtitle.mob-only{
		display: none;
	}
	.hero-subtitle{
		padding: 10px;
	}
	.hero-subtitle-content{
		font-size: 2.4rem;
		text-align: right;
		letter-spacing: 2.7px;
		padding: 0;
		margin-top: 0;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	.hero-text-row{
		gap: 20px;
	}
}

/* 1921px 이상 (대형 데스크톱) */
@media screen and (min-width: 1920px){
	#MainHero.hero-section{
		padding-left: 60px;
		padding-right: 60px;
	}
	.hero-text-row{
		font-size: 18.8rem;
		gap: 40px;
	}
}















/* ========================================
   Section 01: Awards Section
   ======================================== */

/* Awards Section Container */
#MainAwards.awards-section {
	background-color: #000000;
	display: flex;
	align-items: flex-start;
	position: relative;
	width: 100%;
	padding-top: 40px;
	overflow: visible;
}

.awards-container {
	flex: 1 0 0;
	position: relative;
	align-self: auto;
	overflow: visible;
}

.awards-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 15px;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	row-gap: 40px;
}

/* Awards Title Area */
.awards-title-area {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	padding-top: 0;
	position: relative;
	width: 100%;
}

/* Awards Logos */
.awards-logos {
	display: flex;
	align-items: center;
	padding-right: 20px;
	position: relative;
	flex-shrink: 0;
}

.award-logo {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.award-logo--overlap {
	margin-right: -20px;
}

.award-logo:first-child {
	border-radius: 68px;
}

.award-logo--orange {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 68px;
	background-color: #fa7f03;
}

.award-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.award-logo img.mob-only{
	display: block;
}
.award-logo img.pc-only{
	display: none;
}

/* Awards Text Content */
.awards-text-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}

/* Awards Title Wrapper */
.awards-title-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}

.awards-heading {
	display: flex;
	flex-direction: column;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	align-items: flex-start;
	line-height: 1;
	position: relative;
	flex-shrink: 0;
	font-size: 30px;
	width: 100%;
}

.awards-heading-row1,
.awards-heading-row2 {
	display: flex;
	gap: 7px;
	align-items: flex-start;
	position: relative;
	flex-shrink: 0;
	width: 100%;
	flex-wrap: wrap;
}

.awards-heading-row2 {
	color: #ffffff;
}

.awards-heading-blur {
	position: relative;
	/* 초기 상태: blur와 opacity로 숨김 (JavaScript에서 애니메이션) */
	filter: blur(20px);
	opacity: 0;
}
.awards-heading-green{
	color: #ddf160;
}

.awards-heading-normal {
	position: relative;
	color: #ffffff;
	/* 초기 상태: blur와 opacity로 숨김 (JavaScript에서 애니메이션) */
	filter: blur(20px);
	opacity: 0;
}

.awards-heading-blur-light {
	position: relative;
	/* 초기 상태: blur와 opacity로 숨김 (JavaScript에서 애니메이션) */
	filter: blur(20px);
	opacity: 0;
}

/* Awards Description */
.awards-description {
	font-family: 'Paperozi', sans-serif;
	line-height: 0;
	font-style: normal;
	position: relative;
	flex-shrink: 0;
	font-size: 0;
	color: #ffffff;
}

.awards-desc-line1 {
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0;
	font-size: 16px;
}

.awards-desc-line2 {
	margin: 0;
}

.awards-desc-highlight {
	font-weight: 800;
	line-height: 1.4;
	color: #ac60ff;
	font-size: 16px;
}

.awards-desc-normal {
	font-weight: 600;
	line-height: 1.4;
	font-size: 16px;
}

/* Awards Hexagon Button */
.awards-hexagon-btn {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
	left: 220px;
	top: 676px;
}

.awards-hexagon-wrapper {
	position: relative;
	width: 184px;
	height: 184px;
}

.awards-hexagon-svg {
	position: absolute;
	inset: 1.68% 6.7%;
}

.awards-hexagon-shape {
	display: block;
	width: 100%;
	height: 100%;
}

.awards-hexagon-content {
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: calc(50% + 0.5px);
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	line-height: 1.4;
	text-align: center;
	color: #000000;
}

.awards-hexagon-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16px;
	position: relative;
}

.awards-hexagon-arrow {
	font-family: 'xeicon', sans-serif;
	font-size: 1.8rem;
	font-style: normal;
	position: relative;
	letter-spacing: 0.8px;
}

/* Awards List */
.awards-list {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: visible;
	width: 100%;
	gap: 20px;
}

/* Award Card */
.award-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	width: 100%;
	background-color: #000;
}

.award-card-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 0;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}

.award-card-header-border {
	position: absolute;
	border-top: 1px solid #666666;
	inset: 0;
	pointer-events: none;
}

.award-card-title {
	font-family: 'Paperozi', sans-serif;
	font-weight: 700;
	line-height: 1.4;
	font-style: normal;
	position: relative;
	flex-shrink: 0;
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 0.8px;
}

/* Award Card Image */
.award-card-image {
	display: flex;
	height: 330px;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}
.award-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Award Card Footer */
.award-card-footer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	padding: 20px 0 0 0;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}

.award-card-info {
	display: flex;
	gap: 15px;
	align-items: center;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}

.award-card-icon {
	position: relative;
	border-radius: 68px;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.award-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.award-card-info-text {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
	line-height: 1.4;
	position: relative;
	font-size: 16px;
	color: #ffffff;
}

.award-card-award-name {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 600;
	position: relative;
}

.award-card-award-rank {
	font-family: 'Paperozi', sans-serif;
	font-style: normal;
	position: relative;
	letter-spacing: 0.8px;
}

/* Award Card Colors */
.award-card-colors {
	display: flex;
	height: 6px;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
	flex-shrink: 0;
	width: 100%;
}
.award-color {
	height: 100%;
	width: 100%;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.awards-inner{
		padding: 0 20px;
		row-gap: 60px;
	}
	.awards-card-header{
		padding: 15px 0;
	}
	.award-card-icon{
		width: 58px;
		height: 58px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	.award-logo{
		width: 120px;
		height: 120px;
	}
	.award-logo img.mob-only{
		display: none;
	}
	.award-logo img.pc-only{
		display: block;
	}
    .awards-heading{
        font-size: 6rem;
    }
	.award-card-info-text{
		gap: 5px;
	}
	.award-card-colors{
		height: 40px;
	}
}

/* 1281px 이상 (데스크톱) */
@media screen and (min-width: 1281px){
	.awards-container{
		align-self: stretch;
	}
	.awards-inner{
		flex-direction: row;
		padding: 0 60px;
		row-gap: 0;
	}
	.awards-title-area{
		width: 50%;
		padding-top: 60px;
		gap: 40px;
		align-self: flex-start;
	}
	.awards-text-content{
		gap: 30px;
	}
	.awards-heading{
		font-size: 6.8rem;
	}
	.awards-heading-row1,
	.awards-heading-row2{
		gap: 15px;
	}
	.awards-desc-line1{
		font-size: 2.4rem;
	}
	.awards-desc-highlight{
		font-size: 3.6rem;
	}
	.awards-desc-normal{
		font-size: 2.4rem;
	}
	.awards-list{
		width: 50%;
		gap: 0;
	}
	.award-card-header{
		padding: 20px 0;
	}
	.award-card-title{
		font-size: 2rem;
	}
	.award-card-image{
		height: 500px;
	}
	.award-card-footer{
		padding-bottom: 20px;
	}
	.award-card-info-text{
		font-size: 1.8rem;
	}
	.award-color{
		width: 150px;
	}
}

/* 1920px 이상 (대형 데스크톱) */
@media screen and (min-width: 1921px){
	.award-card-image{
		height: 764px;
	}
}





















/* ========================================
   Swiper Logos Section
   ======================================== */

/* Swiper Section Container */
#MainSwiper.swiper-section {
	background-color: #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: -1px;
}


/* Swiper Container */
#MainSwiper .swiper-container {
	width: 100%;
	overflow: hidden;
}

/* Swiper Wrapper */
#MainSwiper .swiper-wrapper {
	display: flex;
	transition: linear;
}

/* Swiper Slide */
#MainSwiper .swiper-slide {
	flex-shrink: 0;
	width: fit-content;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

#MainSwiper .swiper-slide::after {
	content: '';
	position: absolute;
	right: -52px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background-image: url('../_img/main/ico_star.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	animation: rotateStar 2.5s linear infinite;
}

/* Swiper Logo */
#MainSwiper .swiper-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* 501px 이상 (중간 모바일 ~ 데스크톱) */
@media screen and (min-width: 501px){
	#MainSwiper.swiper-section{
		padding-top: 180px;
		padding-bottom: 180px;
	}
	#MainSwiper .swiper-slide{
		height: 60px;
	}
}

/* 1281px 이상 (데스크톱) */
@media screen and (min-width: 1281px){
	#MainSwiper.swiper-section{
		margin-top: 0;
	}
}







/* ========================================
   Section 02: Portfolio Section
   ======================================== */

/* Portfolio Section Container */
#MainPortfolio.portfolio-section {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	/*height: 100vh;*/
	background-color: #000;
}

/* Portfolio Split Screen */
.portfolio-split {
	display: flex;
	flex: 1 0 0;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

/* Portfolio Left Panel */
/* Portfolio Left Panel Wrapper */
.portfolio-left-panel-wrapper {
	flex: 1 0 0;
	width: 100%;
	z-index: 1;
}
.portfolio-left-panel {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	position: relative;
}
.portfolio-left-image-wrapper{
	width: 100%;
	position: relative;
	overflow: hidden;
}

.portfolio-left-image {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.portfolio-left-image-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.portfolio-left-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

/* Portfolio Right Panel */
/* Portfolio Right Panel Wrapper */
.portfolio-right-panel-wrapper {
	flex: 1 0 0;
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}
.portfolio-right-panel {
	background-color: transparent;
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}


.portfolio-right-image-thumbs{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
}
.portfolio-right-image-wrapper {
	width: 180px;
	height: 260px;
	border-radius: 360px;
	overflow: hidden;
	position: relative;
}
.portfolio-right-image {
	position: relative;
	width: 100%;
	height: 260px;
	flex-shrink: 0;
}
.portfolio-right-image-inner{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.portfolio-right-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}


/* Portfolio Center Overlay */
.portfolio-overlay-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	z-index: 2;
	padding-bottom: 30px;
	box-sizing: border-box;
}

.portfolio-overlay {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	gap: 16px;
	flex-direction: row;
	width: 1430px;
	gap: 0;
	flex-direction: column;
	height: 104px;
	overflow: hidden;
}

/* Portfolio Text Group */
.portfolio-text-group {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1430px;
	gap: 10px;
	flex-direction: column;
	position: relative;
	flex-shrink: 0;
	height: 104px;
	box-sizing: border-box;
}

/* Portfolio Category Badge */
.portfolio-category {
	position: relative;
	overflow: hidden;
	height: 36px;
}
.portfolio-category-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #ffffff;

	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6px 20px;
	position: relative;
	border-radius: 60px;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: 100%;
}

/* Portfolio Title */
.portfolio-title-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	height: 56px;
}

.portfolio-title {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	position: relative;
	text-align: center;
	color: #ffffff;
	height: 100%;
	display: flex;
	align-items: center;
}

/* Portfolio Number */
.portfolio-number {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	height: 30px;
}

.portfolio-number-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	position: relative;
	color: #ffffff;
}

.portfolio-more-button-wrapper{
	padding: 30px 0;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.portfolio-overlay-wrapper{
		padding-bottom: 50px;
	}
	.portfolio-overlay{
		height: 117px;
	}
	.portfolio-text-group{
		height: 117px;
	}
	.portfolio-category{
		height: 40px;
	}
	.portfolio-category-text{
		padding: 8px 20px;
	}
	.portfolio-title-wrapper{
		height: 72px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	.portfolio-right-image-wrapper{
		width: 200px;
		height: 280px;
	}
	.portfolio-right-image{
		height: 280px;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	.portfolio-left-panel-wrapper{
		width: 50%;
		z-index: auto;
	}
	.portfolio-right-panel-wrapper{
		position: relative;
		left: auto;
		top: auto;
		width: 50%;
		z-index: auto;
	}
	.portfolio-right-panel{
		background-color: #000000;
	}
	.portfolio-right-image-wrapper{
		width: 250px;
		height: 340px;
	}
	.portfolio-right-image{
		height: 340px;
	}
	.portfolio-overlay-wrapper{
		align-items: center;
		padding-bottom: 0;
	}
	.portfolio-overlay{
		height: 68px;
	}
	.portfolio-text-group{
		flex-direction: row;
		height: 68px;
		gap: 0;
		justify-content: space-between;
	}
	.portfolio-category{
		height: 40px;
	}
	.portfolio-category-text{
		height: auto;
	}
	.portfolio-title-wrapper{
		height: 48px;
	}
	.portfolio-title{
		font-size: 4.8rem;
		height: 48px;
	}
	.portfolio-number{
		display: flex;
	}
}

/* 1431px 이상 (대형 데스크톱) */
@media screen and (min-width: 1431px){
	.portfolio-right-image-wrapper{
		width: 360px;
		height: 520px;
	}
	.portfolio-right-image{
		height: 520px;
	}
	.portfolio-text-group{
		width: 1430px;
	}
}











/* ========================================
   Section 03: Keyword Section
   ======================================== */

/* Keyword Section Container */
#MainKeyword.keyword-section {
	background-color: #000000;
	display: flex;
	flex-wrap: wrap;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	gap: 10px;
	align-items: center;
	justify-content: center;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 180px;
	position: relative;
	width: 100%;
	font-size: 28px;
	text-align: center;
	line-height: 1;
}

/* Keyword Section 내부 visually-hidden 요소 숨김 강화 */
#MainKeyword.keyword-section .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

/* Keyword Item Base Styles */
.keyword-item {
	position: relative;
	white-space: nowrap;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	color: #ffffff;
	/* 초기 상태: 보이지 않음 */
	opacity: 0;
	filter: blur(2.5px);
	transition: opacity 0.3s ease, filter 0.3s ease;
	display: block;
}

/* 501px 이상 (중간 모바일 ~ 데스크톱) */
@media screen and (min-width: 501px){
	#MainKeyword.keyword-section{
		font-size: 7.2rem;
		gap: 20px;
	}
	.keyword-item{
		display: inline;
	}
}





/* ========================================
   Section 04: Service Section
   ======================================== */

/* Service Section Container */
#MainService.service-section {
	position: relative;
	background-color: #000000;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	padding-bottom: 80px;
	width: 100%;
	min-height: 0;
}

/* Service Section 내부 visually-hidden 요소 숨김 강화 */
#MainService.service-section .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

#MainService{
	width: 100%;
	overflow: hidden;
	min-height: 0;
}

/* Service Fixed Text */
.service-fixed-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: 100%;
	z-index: 1;
	height: auto;
	box-sizing: border-box;
	padding-top: 160px;
	padding-bottom: 40px;
}

.service-fixed-text-row1,
.service-fixed-text-row2 {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	justify-content: center;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16rem;
	line-height: 1;
	color: #ffffff;
	position: relative;
	width: 100%;
}

.service-fixed-text-row3 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}

.service-fixed-text p {
	margin: 0;
	position: relative;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16rem;
	line-height: 1;
	color: #ffffff;
}

/* 초기 상태: 보이지 않고 blur 적용 */
.service-fixed-text-word {
	opacity: 0;
	filter: blur(5px);
}

#MainService [data-name="txt"] {
	display: flex;
	gap: 7px;
	justify-content: center;
	align-items: flex-start;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16rem;
	line-height: 1;
	color: #ffffff;
}

#MainService [data-name="txt"] p {
	font-size: 30px;
	margin: 0;
}

.service-text-row {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: flex-start;
}

.service-text-word {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16rem;
	line-height: 1;
	color: #ffffff;
}

/* Text Blur Effects */
.text--blurred {
	filter: blur(5px);
}

.text--semi-blurred {
	filter: blur(2.5px);
}

.blur-\[5px\] {
	filter: blur(5px);
}

.blur-\[2\.5px\] {
	filter: blur(2.5px);
}

/* Cards Container - display: contents 방식이 아닌 직접 배치 */
.service-cards-container {
	position: relative;
	width: unset;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	padding-left: 20px;
	margin-top: 40px;
}

/* Service Card Base Styles */
.service-card-wrapper01 {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.service-card-wrapper02 {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 0;
	gap: 20px;
}
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 15px;
	width: 280px;
	height: 373px;
	z-index: 10;
}

/* Service Card Position Variants */
.service-card--pos2 {
	margin-top: 0;
}

.service-card--pos3 {
	margin: 0 auto;
	margin-top: 0;
	transform: translateX(0);
}

.service-card--pos4 {
	margin-left: 0;
}

.service-card--pos5 {
	margin-right: 0;
	margin-top: 0;
}

/* Service Card Color Variants */
.service-card--purple {
	background-color: #ac60ff;
}

.service-card--white {
	background-color: #ffffff;
}

.service-card--dark {
	background-color: #212121;
}

.service-card--green {
	background-color: #ddf160;
}

/* Service Card Components */
.service-card-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	position: relative;
}

.service-card-top--full-width {
	width: 100%;
}

.service-card-icon {
	width: 60px;
}
.service-card-icon video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: transparent;
	mix-blend-mode: screen;
}


.service-card-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	position: relative;
	letter-spacing: -0.02em;
}

.service-card-title--white {
	color: #ffffff;
}

.service-card-title--black {
	color: #000000;
}

.service-card-title div {
	margin: 0;
}

.service-card-title-line1 {
	margin-bottom: 0;
}

.service-card-title-line2 {
	margin: 0;
}

.service-card-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

.service-card-subtitle {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	position: relative;
}

.service-card-subtitle--white {
	color: #ffffff;
}

.service-card-subtitle--black {
	color: #000000;
}

.service-card-description {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	position: relative;
}

.service-card-description--light {
	color: #cccccc;
}

.service-card-description--dark {
	color: #444444;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	#MainService [data-name="txt"]{
		gap: 15px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainService.service-section{
		padding-bottom: 120px;
	}
    #MainService [data-name="txt"] p{
        font-size: 6rem;
    }
	.service-card{
		width: 300px;
		height: 390px;
	}
	.service-card-icon{
		width: 80px;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	#MainService.service-section{
		padding-bottom: 160px;
	}
	.service-fixed-text{
		padding-top: 80px;
		padding-bottom: 0;
	}
	#MainService [data-name="txt"] p{
		font-size: 8vw;
	}
	.service-card{
		padding: 40px 30px;
		width: 360px;
		height: 430px;
		gap: 60px;
	}
	.service-card-icon{
		width: 100px;
	}
	.service-card-title{
		font-size: 2.8rem;
	}
	.service-card-subtitle{
		font-size: 2rem;
	}
	.service-card-description{
		font-size: 1.8rem;
	}
}

/* 1521px 이상 (큰 데스크톱) */
@media screen and (min-width: 1521px){
	#MainService.service-section{
		padding-bottom: 100vh;
		min-height: 2400px;
	}
	.service-fixed-text{
		justify-content: center;
		height: 100vh;
		padding-top: 0;
	}
	#MainService [data-name="txt"]{
		font-size: 16rem;
	}
	#MainService [data-name="txt"] p{
		font-size: 8.333vw;
	}
	.service-cards-container{
		width: 96%;
		display: block;
		gap: 0;
		padding-left: 0;
		margin-top: 0;
	}
	.service-card-wrapper01{
		gap: 0;
	}
	.service-card-wrapper02{
		margin-top: 30px;
		gap: 0;
	}
	.service-card{
		padding: 60px 40px;
		width: 400px;
		height: fit-content;
		gap: 80px;
	}
	.service-card--pos2{
		margin-top: 100px;
	}
	.service-card--pos3{
		margin-top: 30px;
	}
	.service-card--pos4{
		margin-left: 40px;
	}
	.service-card--pos5{
		margin-top: 130px;
		margin-right: 80px;
	}
}

/* 1921px 이상 (매우 큰 화면) */
@media screen and (min-width: 1920px){
	#MainService [data-name="txt"] p{
		font-size: 16rem;
	}
	.service-cards-container{
		width: 1504px;
	}
	.service-card-wrapper02{
		margin-top: -100px;
	}
	.service-card--pos2{
		margin-top: 245px;
	}
	.service-card--pos3{
		margin-top: -110px;
		transform: translateX(83px);
	}
	.service-card--pos4{
		margin-left: 190px;
	}
	.service-card--pos5{
		margin-top: 300px;
		margin-right: 130px;
	}
}















/* ========================================
   Video Section
   ======================================== */

/* 모바일 기본 스타일 */
#MainVideo {
    width: 100%;
    height: 300px;
    background-color: #cccccc;
    position: relative;
    overflow: hidden;
}

/* Video Section 내부 visually-hidden 요소 숨김 강화 */
#MainVideo .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
#MainVideo video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   Video Section - 반응형
   ======================================== */

/* 500px 이상 */
@media (min-width: 500px) {
    #MainVideo {
        height: 240px;
    }
}

/* 768px 이상 */
@media (min-width: 768px) {
    #MainVideo {
        height: 360px;
    }
}

/* 1024px 이상 */
@media (min-width: 1024px) {
    #MainVideo {
        height: 480px;
    }
}

/* 1280px 이상 - 기존 PC 디자인 복원 */
@media (min-width: 1280px) {
    #MainVideo {
        height: 680px;
    }
}






/* ========================================
   Section 05: Performance Section
   ======================================== */

/* Performance Section Container */
#MainPerformance.performance-section {
	background-color: #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 15px;
	position: relative;
	width: 100%;
}

/* Performance Section 내부 visually-hidden 요소 숨김 강화 */
#MainPerformance.performance-section .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

.performance-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 100%;
}

.performance-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

/* Performance Header */
.performance-header {
	display: flex;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

.performance-header-inner {
	display: flex;
	flex: 1 0 0;
	align-items: flex-end;
	position: relative;
}

.performance-title-wrapper {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}

.performance-heading {
	display: flex;
	flex-direction: column;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	align-items: center;
	position: relative;
	width: 100%;
	text-align: center;
	justify-content: center;
	padding-bottom: 40px;
}

.performance-heading-row1 {
	display: flex;
	column-gap: 7px;
	row-gap: 0;
	align-items: center;
	position: relative;
	width: 100%;
	flex-direction: column;
	justify-content: center;
}

.performance-heading-row2 {
	display: flex;
	gap: 7px;
	align-items: flex-start;
	padding-left: 0;
	position: relative;
	color: #ffffff;
}

.performance-heading p {
	margin: 0;
	position: relative;
}

/* 초기 상태: 보이지 않고 blur 적용 */
.performance-heading-word {
	color: #ffffff;
	opacity: 0;
	filter: blur(5px);
}

/* 첫 번째 단어: 녹색 유지 */
.performance-heading-green {
	color: #ddf160;
}

/* Performance Cards Layout */
.performance-cards {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	position: relative;
	width: 100%;
	flex-direction: column;
}

/* Performance Cards Column (1,3 묶음 / 2,4 묶음) */
.performance-cards-column {
	display: flex;
	flex-direction: column;
	gap: 40px;
	flex: 1;
	width: 100%;
}

/* Performance Card Base */
.performance-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	position: relative;
	width: 100%;
	flex-direction: column;
}

.performance-card--blur {
	filter: blur(6px);
}

.performance-card--semi-blur {
	filter: blur(2px);
	opacity: 0.7;
}
.performance-cards-column--1 .performance-card:nth-child(1){
	transform: translateY(0);
}
.performance-cards-column--1 .performance-card:nth-child(2){
	transform: translateY(0);
	filter: blur(0);
}
.performance-cards-column--2 .performance-card:nth-child(2){
	transform: translateY(0);
	filter: blur(0);
}


.performance-card-image {
	display: flex;
	flex-direction: column;
	height: 200px;
	align-items: flex-start;
	overflow: hidden;
	position: relative;
	width: 100%;
	flex-shrink: 0;
	background-color: rgba(255, 255, 255, 0.05);
}

.performance-card-image--gap {
	gap: 10px;
	isolation: isolate;
}

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

[data-image="performance-1"],
[data-image="performance-2"],
[data-image="performance-4"] {
	background-color: rgba(255, 255, 255, 0.05);
}

.performance-card-content {
	flex: 1 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
	align-self: stretch;
}

.performance-card-content--fixed-height {
	height: 340px;
}

.performance-card-number {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 900;
	font-size: 40px;
	line-height: 1;
	color: #999999;
	position: relative;
	margin: 0;
}

.performance-card-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	white-space: pre-wrap;
}

.performance-card-title {
	font-family: 'Paperozi', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	position: relative;
	width: 100%;
	margin: 0;
	word-break: keep-all;
}

.performance-card-title--tracking {
	letter-spacing: -0.4px;
}

.performance-card-description {
	font-family: 'Paperozi', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: #cccccc;
	position: relative;
	width: 100%;
	margin: 0;
}

.performance-card-description--multi {
	font-size: 16px;
}

.performance-card-description--multi p {
	margin: 0;
}

.performance-card-desc-line1 {
	margin-bottom: 0;
}

.performance-card-desc-line2 {
	margin: 0;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.performance-heading-row1{
		column-gap: 15px;
	}
	.performance-heading-row2{
		gap: 20px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainPerformance.performance-section{
		padding: 120px 20px;
	}
    .performance-heading{
        font-size: 6rem;
    }
    .performance-card{
		flex-direction: row;
		gap: 40px;
	}
	.performance-cards-column{
		width: auto;
	}
	.performance-card-image{
		width: 280px;
		height: 340px;
	}
	.performance-card-number{
		font-size: 6.2rem;
	}
	.performance-card-content{
		gap: 20px;
	}
	.performance-card-title{
		font-size: 2rem;
		line-height: 1.4;
	}
	.performance-card-description{
		font-size: 1.8rem;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	#MainPerformance.performance-section{
		padding: 160px 40px;
	}
	.performance-inner{
		gap: 80px;
	}
	.performance-heading{
		padding-bottom: 0;
	}
	.performance-heading-row1{
		flex-direction: row;
	}
	
	.performance-card-number{
		font-size: 8.2rem;
	}
}

/* 1281px 이상 (큰 데스크톱) */
@media screen and (min-width: 1281px){
	#MainPerformance.performance-section{
		padding: 160px 60px;
	}
	.performance-heading{
		font-size: 12rem;
		align-items: flex-start;
		text-align: left;
		justify-content: flex-start;
	}
	.performance-heading-row1{
		align-items: flex-start;
		justify-content: flex-start;
	}
	.performance-heading-row2{
		padding-left: 80px;
	}
	.performance-cards{
		flex-direction: row;
	}
	.performance-card{
		flex-direction: row;
	}
	.performance-cards-column--1 .performance-card:nth-child(1){
		transform: translateY(160px);
	}
	.performance-cards-column--1 .performance-card:nth-child(2){
		transform: translateY(440px);
		filter: blur(12px);
	}
	.performance-cards-column--2 .performance-card:nth-child(2){
		transform: translateY(160px);
		filter: blur(4px);
	}
}

/* 1921px 이상 (매우 큰 화면) */
@media screen and (min-width: 1920px){
	.performance-heading{
		font-size: 6.250vw;
	}
}




















/* ========================================
   Transition Section (Mosaic Grid)
   ======================================== */

/* Transition Section Container */
#MainTransition.transition-section {
	width: 100%;
	background-color: #000;
	position: relative;
	margin-top: -1px;
}

/* Transition Grid Container - Grid Layout */
.transition-container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(6, 1fr);
	gap: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.transition-cell {
	background: #fff;
	will-change: opacity;

	/* ✅ transform 기반 scale 제거 */
	transform: none;
	-webkit-transform: none;

	/* ✅ 셀을 살짝 "확장"해서 이웃 셀과 겹치게 만들기 */
	position: relative;
	z-index: 0;
	margin-top: -1px;
	padding: 1px;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1/1;
}

.transition-cell:nth-child(36) ~ .transition-cell {
	display: none;
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	.transition-container{
		grid-template-columns: repeat(8, 1fr);
	}
	.transition-cell:nth-child(36) ~ .transition-cell {
		display: block;
	}
	.transition-cell:nth-child(48) ~ .transition-cell {
		display: none;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	.transition-container{
		grid-template-columns: repeat(10, 1fr);
	}
	.transition-cell:nth-child(48) ~ .transition-cell {
		display: block;
	}
}








/* ========================================
   Section 06: Culture & Story Section
   ======================================== */

/* Culture Story Section Container */
#MainCultureStory.culture-story-section {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 80px 15px;
	position: relative;
	width: 100%;
	margin-top: -1px;
}

/* Top Title */
.culture-top-title {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #000000;
	width: 100%;
	margin-bottom: 40px;
}

.culture-heading {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 800;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -1.8px;
	color: #000000;
	margin: 0;
}

.culture-heading p {
	margin: 0;
	overflow: hidden;
	display: block;
	line-height: 1.2em;
}
.culture-heading p>span{
	display: block;
	clip-path: inset(0 100% 0 0);
}

.culture-heading-line1 {
	margin-bottom: 0;
}

.culture-heading-line2 {
	margin: 0;
}

.culture-description {
	font-family: 'Paperozi', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: #000000;
}

.culture-description p {
	margin: 0;
}
.culture-description p br{
	display: none;
}

.culture-desc-line1,
.culture-desc-line2 {
	margin-bottom: 0;
}

.culture-desc-line3 {
	margin: 0;
}

/* Bottom Content Layout */
.culture-bottom {
	display: flex;
	gap: 100px;
	align-items: center;
	position: relative;
	width: 100%;
	flex-direction: column;
}

/* GIF Container */
.culture-gif {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 740px;
	flex-shrink: 0;
	aspect-ratio: 1/1;
	height: auto;
}
.culture-gif img{
	width: 100%;
}

.culture-gif-placeholder {
	aspect-ratio: 800 / 800;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.05);
	position: relative;
}

/* Content Columns */
.culture-content {
	flex: 1 0 0;
	display: flex;
	gap: 100px;
	align-items: flex-start;
	position: relative;
	flex-direction: column;
	gap: 0;
}

.culture-column {
	flex: 1 0 0;
	display: flex;
	flex-direction: column;
	gap: 100px;
	align-items: flex-start;
	position: relative;
	gap: 0;
}

/* Main Title */
.culture-main-title {
	display: flex;
	height: 228px;
	align-items: flex-start;
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

.culture-main-title-text {
	flex: 1 0 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #000000;
	position: relative;
	margin: 0;
}

.culture-main-title-text p {
	margin: 0;
}

.culture-main-title-line1,
.culture-main-title-line2,
.culture-main-title-line3 {
	margin-bottom: 0;
}

/* Culture Main Title - Span Animation */
.culture-main-title-line1 {
	perspective: 1000px;
	transform-style: preserve-3d;
}

.culture-main-title-line1 span {
	display: block;
	opacity: 0;
	transform: translateY(50px) rotateX(-90deg);
	transform-origin: center bottom;
	transform-style: preserve-3d;
}

.culture-main-title-line4 {
	margin: 0;
}

/* Article */
.culture-article {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	position: relative;
	width: 100%;
	perspective: 1000px;
	transform-style: preserve-3d;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: opacity 0.3s ease;
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #DDD;
}

.culture-article:hover {
	opacity: 1;
}


/* Culture Article - Animation Elements */
.culture-article-title,
.culture-article-description,
.culture-view-more-btn {
	opacity: 0;
	transform: translateY(50px) rotateX(-90deg);
	transform-origin: center bottom;
	transform-style: preserve-3d;
}

.culture-article--fixed-height {
	height: 228px;
	height: auto;
}

.culture-article-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	line-height: 1.6;
	position: relative;
	color: #000000;
	width: 100%;
	white-space: pre-wrap;
}

.culture-article-title {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
	position: relative;
	width: 100%;
	margin: 0;
	height: unset;
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: unset;
    height: unset;
}
.culture-article-description {
	font-family: 'Paperozi', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: #000000;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.culture-column--right .culture-article:last-child{
	margin-bottom: 0;
}

/* View More Button */
.culture-view-more-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	background: none;
	border: none;
	padding: 0;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.culture-btn-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	color: #161616;
	position: relative;
	margin: 0;
}

.culture-btn-icon {
	background-color: #161616;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	width: 28px;
	height: 28px;
	position: relative;
	transition: background-color 0.3s ease-out;
}

.culture-btn-arrow {
	font-family: 'xeicon', sans-serif;
	font-size: 1.8rem;
	line-height: 1;
	color: #ffffff;
	position: relative;
	margin: 0;
}

.culture-view-more-btn:hover .culture-btn-icon {
	background-color: #000000;
}

.news-more-button-wrapper{
	background-color: transparent;
	padding-top: 40px;
	padding-bottom: 0;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.culture-description{
		font-size: 18px;
	}
	.culture-description p br{
		display: inline;
	}
	.culture-btn-text{
		font-size: 1.8rem;
	}
	.culture-btn-icon{
		width: 40px;
		height: 40px;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainCultureStory.culture-story-section{
		padding: 120px 20px;
	}
	.culture-top-title{
		gap: 40px;
		margin-bottom: 80px;
	}
    .culture-heading{
        font-size: 6rem;
    }
	.culture-article{
		gap: 20px;
		margin-bottom: 20px;
	}
	.culture-article-title{
		font-size: 2.2rem;
		line-height: 1.6;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.culture-article-description{
		font-size: 1.8rem;
		-webkit-line-clamp: 3;
	}
    .culture-main-title-text{
        font-size: 2.8rem;
    }
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	#MainCultureStory.culture-story-section{
		padding: 160px 40px;
	}
	.culture-top-title{
		margin-bottom: 120px;
	}
    .culture-description{
		font-size: 2.4rem;
	}
	.culture-gif{
		width: 80%;
	}
	.culture-column{
		gap: 60px;
	}
	.culture-article:hover{
		opacity: 0.8;
	}
    .culture-main-title-text{
        font-size: 3.4rem;
    }
}

/* 1281px 이상 (큰 데스크톱) */
@media screen and (min-width: 1281px){
	#MainCultureStory.culture-story-section{
		padding: 180px 60px;
	}
	.culture-top-title{
		margin-bottom: 160px;
	}
    .culture-heading{
		font-size: 9.375vw;
	}
	.culture-bottom{
		flex-direction: row;
		gap: 40px;
	}
	.culture-gif{
		width: 30%;
	}
	.culture-content{
		flex-direction: row;
		gap: 20px;
	}
	.culture-main-title{
		height: 200px;
		margin-bottom: 0;
	}
	.culture-article{
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.culture-article--fixed-height{
		height: 200px;
	}
	.culture-article-title{
		height: unset;
		line-height: 1.6;
	}
	.culture-column{
		gap: 60px;
	}
	.culture-column--right .culture-article:last-child{
		margin-bottom: auto;
	}
}

/* 1731px 이상 (더 큰 화면) */
@media screen and (min-width: 1731px){
	.culture-gif{
		width: 40%;
	}
	.culture-content{
		gap: 20px;
	}
	.culture-column{
		gap: 60px;
	}
}

/* 1921px 이상 (매우 큰 화면) */
@media screen and (min-width: 1920px){
	.culture-heading{
		font-size: 18rem;
	}
	.culture-bottom{
		gap: 100px;
	}
	.culture-gif{
		width: 50%;
	}
	.culture-content{
		gap: 100px;
	}
	.culture-column{
		gap: 100px;
	}
	.culture-main-title{
		height: 228px;
	}
	.culture-article--fixed-height{
		height: 228px;
	}
}









/* ========================================
   Section 07: News & WH Section
   ======================================== */

/* News Section Container */
#MainNews.news-section {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 15px;
    padding-top: 0;
	position: relative;
	width: 100%;
	margin-top: -1px;
	overflow: hidden;
}

/* News Content */
.news-content {
	width: 100%;
	max-width: 100vw;
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
}

/* News Top */
.news-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 40px;
	position: relative;
	width: 100%;
	flex-direction: column;
	gap: 20px;
}

.news-top-divider {
	position: absolute;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	inset: 0;
	pointer-events: none;
}

/* News Label (Left) */
.news-label {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	position: relative;
}

.news-label-dot {
	background-color: #000000;
	border-radius: 100px;
	width: 4px;
	height: 4px;
}

.news-label-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.6;
	color: #000000;
	margin: 0;
}

/* News Title (Center) */
.news-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 800;
	font-size: 28px;
	line-height: 1.1;
	color: #000000;
	white-space: nowrap;
	position: relative;
	margin: 0;
}

.news-title p {
	margin: 0;
	display: block;
	overflow: hidden;
}
.news-title p>span{
	display: block;
	transform: translateY(100%);;
}

.news-title-highlight {
	color: #ac60ff;
}

/* News View More Button (Right) */
.news-view-more-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.news-btn-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	color: #000000;
	margin: 0;
}

.news-btn-icon {
	background-color: #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	width: 28px;
	height: 28px;
	transition: background-color 0.3s ease-out;
}

.news-btn-arrow {
	font-family: 'xeicon', sans-serif;
	font-size: 1.8rem;
	line-height: 1;
	color: #ffffff;
	margin: 0;
}

.news-view-more-btn:hover .news-btn-icon {
	background-color: #333333;
}

/* News List */
.news-list {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	position: relative;
	width: 1410px;
}

/* News Card */
.news-card {
	flex: 1 0 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
	position: relative;
	cursor: pointer;
	width: 330px;
}

.news-card-link {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.news-card-image {
	width: 100%;
	aspect-ratio: 1/1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: hidden;
	position: relative;
	transition: transform 0.5s ease-out;
}

.news-card:hover .news-card-image {
	transform: scale(1);
}

.news-card-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

/* News Card Info */
.news-card-info {
	display: flex;
	gap: 10px;
	align-items: center;
	position: relative;
}

.news-card-source {
	font-family: 'Roboto Condensed', 'Paperozi', sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	color: #999999;
	position: relative;
	margin: 0;
}

.news-info-divider {
	width: 1px;
	height: 10px;
	background-color: #999999;
}

.news-card-date {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	color: #999999;
	position: relative;
	margin: 0;
}

/* News Card Title */
.news-card-title {
	font-family: 'Paperozi', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
	white-space: pre-wrap;
	min-width: 100%;
	width: min-content;
	position: relative;
	margin: 0;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.news-label-dot{
		width: 6px;
		height: 6px;
	}
	.news-label-text{
		font-size: 2rem;
	}
	.news-btn-text{
		font-size: 1.8rem;
	}
	.news-btn-icon{
		width: 40px;
		height: 40px;
	}
	.news-card-content{
		gap: 20px;
	}
	.news-card-info{
		gap: 15px;
	}
	.news-card-source{
		font-size: 16px;
	}
	.news-info-divider{
		height: 12px;
	}
	.news-card-date{
		font-size: 16px;
	}
	.news-card-title{
		font-size: 2rem;
	}
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainNews.news-section{
		padding: 120px 20px;
	}
	.news-content{
		gap: 60px;
	}
	.news-title{
		font-size: 6.8rem;
		line-height: 1;
	}
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	#MainNews.news-section{
		padding: 0 40px;
		padding-bottom: 160px;
	}
	.news-content{
		gap: 80px;
	}
	.news-top{
		flex-direction: row;
		gap: 0;
	}
	.news-list{
		width: 1690px;
	}
	.news-card{
		width: 400px;
	}
	.news-card:hover .news-card-image{
		transform: scale(1.05);
	}
}

/* 1920px 이상 (대형 데스크톱) */
@media screen and (min-width: 1920px){
	#MainNews.news-section{
		padding: 0 60px;
		padding-bottom: 180px;
	}
	.news-content{
		width: 1800px;
	}
	.news-list{
		width: 100%;
	}
}


















/* ============================================
   Section 08: Voucher & Certification
   ============================================ */

#MainVoucher {
	background-color: #000000;
	padding: 80px 15px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Top Title */
.voucher-top-title {
	width: 100%;
	padding-bottom: 40px;
}

.voucher-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: start;
	padding: 0;
	width: 100%;
}
.voucher-top-inner.mob-only{
	display: flex;
}
.voucher-top-inner.pc-only{
	display: none;
}
.voucher-top-heading {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	gap: 7px;
    row-gap: 0;
	align-items: flex-end;
	text-align: right;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 800;
	font-size: 28px;
	line-height: 1;
	min-height: min-content;
	min-width: min-content;
}

.voucher-top-row {
	display: flex;
	gap: 7px;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
}

.voucher-top-row.pr-60 {
	padding-right: 0;
}

.voucher-top-text {
	margin: 0;
	color: #ffffff;
	opacity: 0;
	filter: blur(5px);
	transition: opacity 0.6s ease, filter 0.6s ease;
}

.voucher-top-text-green {
	color: #ddf160;
}

/* Voucher Content Section */
.voucher-content-section,
.certification-content-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

/* Title Area */
.voucher-title-area,
.certification-title-area {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.voucher-title-left,
.certification-title-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Voucher & Certification Title Area */
.voucher-title-area,
.certification-title-area {
	perspective: 1000px;
	transform-style: preserve-3d;
}

.voucher-heading,
.certification-heading {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1;
	color: #ffffff;
	margin: 0;
	opacity: 0;
	transform: translateY(50px) rotateX(-90deg);
	transform-origin: center bottom;
	transform-style: preserve-3d;
}

.voucher-description,
.certification-description {
	perspective: 1000px;
	transform-style: preserve-3d;
}

.voucher-desc-main,
.voucher-desc-sub,
.certification-desc-main,
.certification-desc-sub {
	opacity: 0;
	transform: translateY(50px) rotateX(-90deg);
	transform-origin: center bottom;
	transform-style: preserve-3d;
}

.voucher-description,
.certification-description {
	display: flex;
	flex-direction: column;
	font-family: 'Paperozi', sans-serif;
}

.voucher-desc-main,
.certification-desc-main {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	margin: 0;
}

.voucher-desc-sub,
.certification-desc-sub {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: #cccccc;
	margin: 0;
}

.text-purple {
	color: #ac60ff;
}

/* More Button */
.voucher-more-button{
	display: flex;
}
.btn-arrow-circle-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	
	color: #000000;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	letter-spacing: 0.8px;
	font-weight: 500;
}
.voucher-more-button-text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	transition: all 0.3s ease;
	border-radius: 999px;
	background-color: #ddf160;
	height: 40px;
}
.voucher-more-button-text>span{
	line-height: 1;
}
.voucher-more-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ddf160;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-left: -6px;
	transition: all 0.3s ease;
}
.voucher-more-button:hover .voucher-more-button-text{
	background-color: #ddf160;
}
.voucher-more-button:hover .voucher-more-button-icon {
	transform: translateX(12px) rotate(45deg);
	background-color: #ddf160;
}

/* Voucher Grid */
.voucher-grid {
	width: 100%;
}

/* PC Grid */
.voucher-grid-pc {
	display: none;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

/* Mobile Swiper (기본 표시) */
.voucher-grid-mobile {
	display: block;
	width: 104%;
}
.voucher-box {
	min-height: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #111;
	width: 240px;
	height: 100%;
}
.voucher-box>div{
	width: 100%;
	height: 100%;
	border-bottom: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: relative;
}
.voucher-box:nth-child(1)>div,
.voucher-box:nth-child(2)>div,
.voucher-box:nth-child(3)>div,
.voucher-box:nth-child(4)>div{
	border-top: none;
}


.voucher-box:first-child>div::before,
.voucher-box:nth-child(5)>div::before{
	content: '';
	display: none;
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: calc(100% - 20px);
	background-color: #444;
}
.voucher-box>div::after{
	content: '';
	display: none;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: calc(100% - 20px);
	background-color: #444;
}

.voucher-box-title {
	font-family: 'Paperozi', sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	color: #ffffff;
	text-align: center;
	margin: 0;
	word-break: keep-all;
}

.voucher-logos {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.voucher-logos:has(.voucher-logo:nth-child(2)) {
	flex-direction: row;
	gap: 20px;
}

.voucher-logos-horizontal {
	flex-direction: row;
}

.voucher-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 20px;
}

.voucher-logo img {
	max-width: 100%;
	height: 100%;
}

/* Certification Logos Grid */
.cert-logos-grid {
	width: 100%;
}

/* PC Grid */
.cert-logos-grid-pc {
	display: none;
	flex-direction: column;
	gap: 60px;
	column-gap: 108px;
}

/* Mobile Swiper (기본 표시) */
.cert-logos-grid-mobile {
	display: block;
	width: 104%;
}

.cert-logos-row {
	display: flex;
	gap: 0;
	align-items: center;
	justify-content: flex-start;
	column-gap: 108px;
}

.cert-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
	height: 20px;
}

/* Keyframe Animation for cert-logo star */
@keyframes rotateStar {
	0% {
		transform: translateY(-50%) rotate(0deg) scale(1);
	}
	10% {
		/* 180도 회전하면서 커짐 */
		transform: translateY(-50%) rotate(180deg) scale(1.3);
	}
	20% {
		/* 360도 회전하면서 다시 원래 크기로 */
		transform: translateY(-50%) rotate(360deg) scale(1);
	}
	100% {
		/* 나머지 시간 대기 (360도 유지) */
		transform: translateY(-50%) rotate(360deg) scale(1);
	}
}

.cert-logo::after {
	content: '';
	position: absolute;
	right: -38px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../_img/main/ico_star.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	animation: rotateStar 2.5s linear infinite;
}

.cert-logo:nth-child(6n)::after {
	display: none;
}

.cert-logo img {
	max-height: 100%;
}

#MainVoucher .swiper-slide{
	height: 165px;
	width: 240px;
}

#MainVoucher .certification-content-section .swiper-slide{
	height: unset;
	width: fit-content;
}

#MainVoucher .swiper-slide::after{
	display: none;
}

/* 501px 이상 (중간 모바일) */
@media screen and (min-width: 501px){
	.voucher-top-row{
		gap: 15px;
	}
	.voucher-content-section,
	.certification-content-section{
		gap: 60px;
	}
	.voucher-desc-main,
	.certification-desc-main{
		font-size: 2.4rem;
	}
	.voucher-desc-sub,
	.certification-desc-sub{
		font-size: 2rem;
	}
	.voucher-more-button-text{
		height: 43px;
	}
	.voucher-more-button-icon{
		width: 43px;
		height: 43px;
	}
	.voucher-box{
		width: 340px;
	}
	.voucher-box-title{
		font-size: 2rem;
		line-height: 1;
	}
	.voucher-logo{
		height: 25px;
	}
	.cert-logo{
		height: 40px;
	}
	.cert-logo::after{
		right: -38px;
		width: 20px;
		height: 20px;
	}
    #MainVoucher .swiper-slide{
        width: 340px;
    }
}

/* 769px 이상 (태블릿) */
@media screen and (min-width: 769px){
	#MainVoucher{
		padding: 120px 20px;
		gap: 100px;
	}
	.voucher-top-title{
		padding-bottom: 0;
	}
    .voucher-top-heading{
        font-size: 6rem;
    }
	.voucher-top-inner.pc-only{
		display: flex;
	}
	.voucher-top-inner.mob-only{
		display: none;
	}
    .voucher-heading, .certification-heading{
        font-size: 4.6rem;
    }
}

/* 1025px 이상 (데스크톱) */
@media screen and (min-width: 1025px){
	#MainVoucher{
		padding: 160px 40px;
		gap: 160px;
	}
	.voucher-heading,
	.certification-heading{
		font-size: 6.8rem;
	}
	.btn-arrow-circle-filter{
		font-weight: normal;
        font-size: 16px;
	}
}

/* 1281px 이상 (큰 데스크톱) */
@media screen and (min-width: 1281px){
	#MainVoucher{
		padding: 180px 60px;
		gap: 180px;
	}
	.voucher-top-inner{
		padding: 0 60px;
	}
	.voucher-top-row.pr-60{
		padding-right: 60px;
	}
	.voucher-title-area, .certification-title-area{
		flex-direction: row;
		gap: 0;
		align-items: flex-end;
	}
	.voucher-grid-pc {
		display: grid;
	}
	.voucher-grid-mobile {
		display: none;
	}
	.cert-logos-grid-pc {
		display: flex;
	}
	.cert-logos-grid-mobile {
		display: none;
	}
	.voucher-box:first-child>div::before,
	.voucher-box:nth-child(5)>div::before{
		display: block;
	}
	.voucher-box>div::after{
		display: block;
	}
	.voucher-box>div{
		border-bottom: 1px solid #444;
	}
	.voucher-box:nth-child(1)>div,
	.voucher-box:nth-child(2)>div,
	.voucher-box:nth-child(3)>div,
	.voucher-box:nth-child(4)>div{
		border-top: 1px solid #444;
	}
	#MainVoucher .swiper-slide{
		height: auto;
		width: auto;
	}
	.voucher-box{
		background-color: transparent;
		width: 100%;
		height: auto;
		min-height: 320px;
		padding: 0 10px;
	}
	.voucher-logo{
		height: auto;
	}
	.voucher-logo img{
		height: auto;
	}
	.cert-logo{
		min-width: 210px;
		height: 60px;
	}
	#MainVoucher .certification-content-section .swiper-slide{
		height: auto;
		width: auto;
	}
	#MainVoucher .swiper-slide::after{
		display: block;
	}
	.cert-logo::after{
		right: -54px;
		width: 28px;
		height: 28px;
	}
}

/* 1921px 이상 (매우 큰 화면) */
@media screen and (min-width: 1920px){
	.voucher-top-heading{
		font-size: 5.208vw;
	}
}




























