@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}


* {
    word-break: keep-all;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}


h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em;
}

input,
button {
    margin: 0;
    padding: 0;
    font-family: inherit !important;
}

input[type="submit"] {
    cursor: pointer;
}

button {
    cursor: pointer;
}

textarea,
select {
    font-family: inherit !important;
}

select {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}

pre {
    overflow-x: scroll;
    font-size: 1.1em;
}

a {
    color: inherit;
    text-decoration: none;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
    --primary: #F26523;
    --seconday: #666;
    --ca-color: #333;
    --full-h: calc(var(--vh, 1vh) * 100);
    --full-w: calc(var(--vw, 1vw) * 100);
    --header-h: 80px;
    --lnb-h: 48px;
    --nav-min-w: 160px;
}

@media (max-width: 991px) {
    :root {
        --header-h: 60px;
    }
}

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



/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */


/* 버튼 */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #fff;
    color: var(--primary);
    outline: 1px solid var(--primary);
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
    background-color: var(--seconday);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fff;
    color: var(--seconday);
    outline: 1px solid var(--seconday);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
    background: var(--seconday);
    color: #fff;
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary);
    outline: 1px solid var(--primary);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
    outline: none;
}

.btn-primary-outline:active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--seconday);
    outline: 1px solid var(--seconday);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
    background: var(--seconday);
    color: #fff;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
    outline: none;
}

.btn-secondary-outline:active {
    background: #fff;
    color: var(--seconday);
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
    position: relative;
    overflow: hidden;
    color: var(--primary);
    outline: 1px solid var(--primary);
}

.btn-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-animation:hover {
    color: #fff;
    outline: 0;
}

.btn-animation:hover::before {
    width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
    background: #e5e7eb !important;
    /* Tailwind gray-200 */
    color: #b0b0b0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.2);
}

.sit_icon {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.editor-content img {
    display: initial;
}

#sev_himg * {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
    display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
    position: relative;
}

.lnb {
    background: #fff;

}

.lnb .lnb_map {
    height: var(--lnb-h);
    display: flex;
    align-items: center;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    max-width: 1600px;
    margin: 0 auto;
}

.lnb .lnb_map .home {
    width: var(--lnb-h);
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lnb .lnb_map .home a {
    color: #333;
}


.lnb .lnb_map>li {

    height: 100%;
    border-right: 1px solid #ddd;

    position: relative;
}

.lnb .lnb_map li.dep a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.lnb .lnb_map li.dep a span {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #333;
}


.lnb .lnb_map li.dep ul {
    display: none;
    position: absolute;
    left: 0;
    top: var(--lnb-h);
    width: 100%;
    z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
    width: 100%;
    background: #f9f9f9;
    border-bottom: 1px solid #fff;
}



.lnb .lnb_map li.dep ul li a:hover {
    background: var(--primary);
    color: #fff;
    transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
    background: var(--primary);
    color: #fff;
}

/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
    position: static !important;
    top: 0px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    display: none !important;
}

body>.skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
    width: 100px;

}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

#google_translate_element select {
    background: transparent;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 0px;
    padding: 8px 12px
}

.notranslate {
    translate: no !important;
}

/* 해더 관련 */
#header {
    --header-foreground: #fff;
    height: var(--header-h);
    pointer-events: auto;
    transition: all ease 0.5s;
    padding-top: 10px;
    overflow: hidden;

}

#header.is-active {
    --header-foreground: #000;
    background: #fff;
    padding-top: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: 0;
}

#header.menu-hover {
    padding-top: 0px;
    height: 450px;
    background-color: #fff;
    color: #000;
    overflow: visible;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

#link-logo {
    background-image: url('../img/logo_clip_w.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#header #logo {
    background-image: url('../img/w_logo.png');
}

#header.is-active #logo,
#header.menu-hover #logo {
    background-image: url('../img/logo_origin.png');
}

#header.is-active #link-logo,
#header.menu-hover #link-logo {
    background-image: url('../img/logo_clip_mobile.png');
}

#blog-logo {
    background-image: url('../img/icons/blog.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

#header.is-active #blog-logo,
#header.menu-hover #blog-logo {
    background-image: url('../img/icons/blog_color.png');
}

#header.menu-hover:after {
    content: '';
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;


}

#mobileMenuList li {
    opacity: 0;
    transform: translateX(-50%);
    transition: all 1s ease;
}

body.open-mobile-menu #mobileMenuList li {
    opacity: 1;
    transform: translateX(0);
}

body.open-mobile-menu #mobileMenuList li:nth-child(1) {
    transition-delay: 0.2s;
}

body.open-mobile-menu #mobileMenuList li:nth-child(2) {
    transition-delay: 0.3s;
}

body.open-mobile-menu #mobileMenuList li:nth-child(3) {
    transition-delay: 0.4s;
}

body.open-mobile-menu #mobileMenuList li:nth-child(4) {
    transition-delay: 0.5s;
}

#header a {
    pointer-events: auto;
    cursor: pointer;
}

.dep1-item {
    position: relative;
}

.dep1-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary);
    z-index: 1;
    transition: all 0.5s ease;
}

.dep1-item:hover:after {
    width: 100%;
}

.dep2-list li {
    overflow: hidden;
}

.dep2-list li a {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

#header.menu-hover .dep2-list li a {
    opacity: 1;
    transform: translateY(0);

}




#pcUserMenuDropdown {
    position: fixed;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    pointer-events: none;
    top: var(--header-h);
}

#pcUserMenuDropdown.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 모바일 언어 선택 selectbox */
#mobileLangSelect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    padding-right: 2rem;

}

#mobileLangSelect option {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

#header.is-active #mobileLangSelect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #000;
}

#header.menu-hover #mobileLangSelect option {
    background-color: #fff;
    color: #000;
}

/* 메인 */


.fixed-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    color: #fff;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 20;
}

.main-swiper .swiper-button-next:hover,
.main-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* 커스텀 pagination */
.custom-pagination {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    pointer-events: auto;
}

.custom-pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 10px;
}

.custom-pagination-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: "Pretendard", sans-serif;
    transition: all 0.3s ease;
}

.custom-pagination-bullets {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.custom-pagination-bullet {
    font-size: 0;
    background: none;
    border: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
}

@keyframes rotateDots {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.custom-pagination-bullet.active:after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation: rotateDots linear 4s infinite;
    animation: rotateDots linear 4s infinite;
}


@keyframes sun-icon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sun-icon {
    animation: sun-icon 4s linear infinite;
}



.main-text {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.main-text text {
    animation: stroke 4s 1 forwards;
    stroke-width: 1;
    stroke: #fff;
    font-size: 70px;
    font-weight: 700;
}


@media (min-width: 1024px) {
    .main-text text {
        font-size: 60px;
    }
}

.main-swiper .slide-2 .image-container,
.main-swiper .slide-3 .image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    transform: scale(1.2);

    transition: all ease 4s 1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-swiper .slide-2.swiper-slide-active .image-container,
.main-swiper .slide-3.swiper-slide-active .image-container {
    transform: scale(1);
}

@keyframes stroke {
    0% {
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }



    80% {
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 1);
        stroke-width: 2;
    }

    100% {
        fill: rgba(255, 255, 255, 1);
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.scroll-down {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.scroll-down .line-bar {
    width: 1px;
    height: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.4);

    overflow: hidden;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

.scroll-down .line-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;

    background-color: #fff;
    animation: scrollLine 2s linear infinite;
    will-change: transform;
    height: 2rem;
}

@media (min-width: 992px) {
    .scroll-down .line-bar {
        height: 3rem;
    }

    .scroll-down .line-bar::after {
        height: 3rem;
    }
}

/* 재생 버튼 삼각형 */
.clip-path-play {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.fade-up {
    overflow: hidden;
}

.fade-up span {
    display: block;
}

@keyframes char-up {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    30% {
        transform: translateX(40px);
        opacity: 1;
    }
}

/* splitting css */
/* .section-3-title .char {
    opacity: 0;
    transform: translateX(40px);
} */



.banner-scale {
    transform: scale(1.25);
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transform: scale(1.25);
    transition: opacity 0.8s ease, transform 3s ease;
    pointer-events: none;
}

.image-slider img.on {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.image-slider-text {
    position: relative;
    padding: 1.5rem;
    background-color: rgba(241, 101, 35, 0.8);
    width: 100%;
    color: #fff;
    z-index: 3;

}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeUpInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-slider-text-swiper .swiper-slide h3,
.image-slider-text-swiper .swiper-slide p {
    opacity: 0;
    transform: translateY(30px);
}

.image-slider-text-swiper .swiper-slide h3.animate-fade-up {
    animation: fadeUpInContent 0.8s ease forwards;
}

.image-slider-text-swiper .swiper-slide p.animate-fade-up {
    animation: fadeUpInContent 0.8s ease forwards;
}


@media (min-width: 1024px) {
    .image-slider-text {
        position: absolute;
        right: 0;
        bottom: -53px;
        padding: 85px 70px;
        width: 670px;
    }
}

.image-slider-text .swiper-button-next,
.image-slider-text .swiper-button-prev {
    position: relative;
    width: 28px;
    height: 28px;
    margin-top: 0;
    color: #fff;
    z-index: 10;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
}

@media (min-width: 1024px) {

    .image-slider-text .swiper-button-next,
    .image-slider-text .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}



.image-slider-text .swiper-button-next::after,
.image-slider-text .swiper-button-prev::after {
    font-size: 16px;
    font-weight: light;
}

@media (min-width: 1024px) {

    .image-slider-text .swiper-button-next::after,
    .image-slider-text .swiper-button-prev::after {
        font-size: 24px;
    }
}

.image-slider-text-swiper {
    position: relative;
}

.image-slider-text-swiper .swiper-slide h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #fff;
}

.image-slider-text-swiper .swiper-slide p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1024px) {
    .image-slider-text-swiper .swiper-slide h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .image-slider-text-swiper .swiper-slide p {
        font-size: 1rem;
    }
}

/* 파일 첨부 커스텀 스타일 */
.custom-file-upload {
    margin-bottom: 1.5rem !important;
}

.custom-file-wrapper {
    margin-bottom: 0.75rem !important;
}

.custom-file-label {
    display: block !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875rem !important;
}

.custom-file-label i {
    margin-right: 0.25rem !important;
    color: var(--primary) !important;
}

.custom-file-input {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px dashed #d1d5db !important;
    border-radius: 0.5rem !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.custom-file-input:hover {
    border-color: var(--primary) !important;
    background-color: rgba(242, 101, 35, 0.05) !important;
}

.custom-file-description {
    margin-bottom: 0.75rem !important;
}

.custom-file-desc-label {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
}

.custom-file-desc-label i {
    margin-right: 0.25rem !important;
    color: var(--primary) !important;
}

.custom-file-desc-input {
    width: 100% !important;
    padding: 0.5rem 0.75rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    margin-top: 0 !important;
    transition: border-color 0.2s ease !important;
}

.custom-file-desc-input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
}

.custom-file-delete {
    margin-top: 0.75rem !important;
    padding: 0.75rem !important;
    background-color: #f9fafb !important;
    border-radius: 0.5rem !important;
    border: 1px solid #e5e7eb !important;
}

.custom-file-delete-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.custom-file-delete-checkbox {
    width: 1rem !important;
    height: 1rem !important;
    color: var(--primary) !important;
    border-color: #d1d5db !important;
    border-radius: 0.25rem !important;
}

.custom-file-delete-checkbox:focus {
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px !important;
}

.custom-file-delete-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.875rem !important;
    color: #374151 !important;
    cursor: pointer !important;
}

.custom-file-delete-label i {
    color: var(--primary) !important;
}

/* 카카오맵 지도 컨테이너가 부모 높이를 모두 차지하도록 */
.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
}

.root_daum_roughmap_landing {
    width: 100% !important;
    height: 100% !important;
}

/* section6-link hover 효과만 유지 */
.section6-link .list__wrap::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 101, 35, 0.7);
    -webkit-transition: all ease .8s;
    transition: all ease .8s;
}

.section6-link .list__wrap::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all ease .8s;
    transition: all ease .8s;
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .section6-link .list__wrap:hover i {
        animation: fadeInUp .7s forwards;
    }

    .section6-link .list__wrap:hover::before {
        top: 0;
    }

    .section6-link .list__wrap:hover::after {
        opacity: 0;
    }

    .section6-link .list__wrap:hover {
        padding-bottom: 100px;
    }
}