@charset "UTF-8";

/* ---------- Visual Section ---------- */
/* ---------- Visual Section ---------- */
.visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.visual .content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 90px 170px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 122px;
}

.visual .content h3 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
}

/* 모바일 대응 */
@media (max-width: 1024px) {
	.visual { margin-top: 70px; }
}

@media (max-width: 768px) {
    .visual {
        height: auto; /* 100vh 제거 */
        aspect-ratio: 16/9; /* 비디오 비율에 맞춤 (필요시 조정) */
    }
    
    .video-background video {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .visual .content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 60px 20px 0;
        gap: 60px;
        text-align: center;
        z-index: 2;
    }
    
    .visual .content h3 {
        font-size: 24px;
        line-height: 1.4;
    }
}

/* 더 작은 모바일 화면 */
@media (max-width: 480px) {
    .visual .content {
        padding: 0 15px;
        gap: 40px;
    }
    
    .visual .content h3 {
        font-size: 20px;
        line-height: 1.3;
    }
}

.section01 {
    height: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 40px;
    background: var(--sub-bgc);
}

.section01 p {
    color: var(--main-green);
    font-size: 24px;
    font-weight: 700;
}

.section01 h3 {
    font-size: 70px;
    font-weight: 700;
    line-height: 121px;
    letter-spacing: -2.8px;
    overflow: hidden;
}

/* 기본 span 스타일 (배경이 있는 강조 텍스트) */
.section01 h3 span:not(.char):not(.highlight-bg) {
    display: inline-block;
    background: var(--main-green);
    color: #fff;
    padding: 5px;
    line-height: 1;
}

/* 애니메이션용 배경 span */
.section01 h3 .highlight-bg {
    display: inline-block;
    background: var(--main-green);
    color: #fff;
    padding: 5px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

/* 기본 문자 스타일 */
.section01 h3 .char {
    display: inline-block;
}

.section02 {
	height: 1100px;
}

.section02 > div {
	height: 100%;
	padding-left: 170px;
	display: flex;
	align-items: center;
	gap: 150px;
}

.section02 > div > div:first-child img {
	display: block;
	margin-bottom: 15px;
	max-width: 120px;
}

.section02 > div > div:first-child span {
	color: var(--main-green);
	font-size: 24px;
	font-weight: 700;
	display: block;
	margin-bottom: 40px;
}

.section02 > div > div:first-child h3 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 110px;
}

.section02 > div > div:last-of-type {
	width: calc(100% - 492px);
}

.section02 > div > div:last-of-type .swiper-slide {
	position: relative;
}

.section02 > div > div:last-of-type .swiper-slide img {
	width: 100%;
	object-fit: cover;
}

.section02 > div > div:last-of-type .swiper-slide p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	font-weight: 700;
	font-family: "FuturaBT-Medium", sans-serif;
}

.section02 > div > div:last-of-type .swiper-slide p.white {
	color: #fff;
}

.section02 > div > div:last-of-type .eboceraSlider .swiper-wrapper {
	padding-bottom: 30px;
}

.section02 > div > div:last-of-type .eboceraSlider .swiper-scrollbar {
	top: unset;
	bottom: 0;
	height: 8px;
}

.section02 > div > div:last-of-type .eboceraSlider .swiper-scrollbar .swiper-scrollbar-drag {
	background: var(--main-green);
}

.section03 {
	height: 1300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 240px;
	text-align: center;
}

.section03 > span {
	color: var(--main-green);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 40px;
}

.section03 > h3 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 90px;
}

.section03 .eboJournalSlider {
	max-width: 100%;
	position: relative;
	padding-top: 60px;
}

.section03 .eboJournalSlider .swiper-btn-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 20px;
	padding-right: 40px;
}

.section03 .eboJournalSlider .swiper-btn-wrapper > div {
	position: static;
	width: 56px;
	height: 56px;
	background: var(--main-green);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	cursor: pointer;
}

.section03 .eboJournalSlider .swiper-btn-wrapper > div svg path {
	stroke: #ffffff;
}

.section03 .eboJournalSlider .swiper-btn-wrapper > div.swiper-button-disabled {
	background: var(--sub-gray);
}

.section03 .eboJournalSlider .swiper-btn-wrapper > div.swiper-button-disabled svg path {
	stroke: #6a6a6a;
}

.section03 .eboJournalSlider .swiper-slide {
	padding: 40px;
	text-align: left;
	border-radius: 22px;
	transition: all 0.3s ease;
}

.section03 .eboJournalSlider .swiper-slide {
    border-left: 0;
    border-right: 0;
    transition: border 0.3s ease;
}

.section03 .eboJournalSlider .swiper-slide.center-slide {
    /*border-left: 1px solid #D7D7D7;
    border-right: 1px solid #D7D7D7;*/
}

.section03 .eboJournalSlider .swiper-slide:hover {
	background: var(--sub-bgc);
}

.section03 .eboJournalSlider .swiper-slide .img-area {
	width: 100%;
	height: 300px;
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.section03 .eboJournalSlider .swiper-slide .img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section03 .eboJournalSlider .swiper-slide .ctg {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: var(--main-green);
	padding-bottom: 20px;
}

.section03 .eboJournalSlider .swiper-slide .tit {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 70px;
}

.section03 .eboJournalSlider .swiper-slide .date {
	font-size: 20px;
	font-weight: 500;
	color: #ABABAB;
}

.section03 .ctm-btn {
	margin: 90px auto 0;
}

.section04 {
	padding: 200px 290px 150px;
	background: linear-gradient(180deg, #F2F1EC 16.83%, #5A6857 71.15%);
}

.section04 > span {
	color: var(--main-green);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 40px;
	display: block;
	text-align: center;
}

.section04 > h3 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 90px;
	text-align: center;
}

.section04 .flex {
	gap: 20px;
}

.section04 .flex > div {
	flex: 1;
}

.section04 .flex > div img {
	width: 100%;
}

.section04 .flex > div > div {
	background: #fff;
	padding: 20px;
	border-radius: 0 0 20px 20px; 
}

.section04 .flex > div > div span {
	font-size: 16px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;	
}

.section04 .flex > div > div p {
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 88px;
    height: 88px;
}

.section04 .ctm-btn.white {
	width: 530px;
	height: 85px;
	margin: 70px auto 0;
}

@media(max-width: 1024px) {
	.section01 { height: auto; padding: 100px 0 50px; }
	.section01 h3 { font-size: 36px; line-height: 1.8; }
	
	.section02 { height: auto; padding: 100px 0; }
	.section02 > div { height: auto; padding-left: 0; padding: 0 20px; flex-direction: column; text-align: center; }
	.section02 > div > div:last-of-type { width: 100%; }
	.section02 > div > div:first-child img { margin: 0 auto 15px; }
	.section02 > div > div:first-child h3 { margin-bottom: 50px; font-size: 32px; }
	
	.section03 { height: auto; padding: 100px 20px 100px; }
	.section03 > h3 { font-size: 32px; }
	.section03 .eboJournalSlider .swiper-slide { padding: 20px 0; }
	.section03 .eboJournalSlider .swiper-btn-wrapper { padding-right: 0px; width: 100%; justify-content: space-between; }
	
	.section04 { padding: 100px 20px; }
	.section04 > h3 { font-size: 32px; }
	.section04 .ctm-btn.white { width: 360px; height: 60px; font-size: 18px; }
}

@media(max-width: 699px) {
	.section04 .flex > div { flex: unset; width: 100%; }	
}

@media(max-width: 500px) {
	.section04 .ctm-btn.white { font-size: 16px; width: 100%; gap: 10px; }
}