/* =========================
   기본 스타일
========================= */
:root {
    --color-font-darkGray: #333;
    --color-primary: #173251;
    --color-secondary: #fff;
    --color-accent: #007ECC;
    --color-bg: #f5f6fa;
    --color-text: #222;
    --color-border: #ccc;
    --color-green: #44BD4A;
    --color-gray: #B2BAC2;
    --color-blue: #2968C6;
    --color-skyblue: #E7F1FF;
    --color-main_highlight: #9EFF78;
    --color-highlight-green: #41B64B;
    --color-highlight-blue: #0066C5;
    --color-bullet: #79AE8B;
    --color-navy: #004381;
}

.header {
    z-index: 1000;
    border-bottom: 1px solid #e3e3e3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

}

.header-clone {
    width: 100%;
    height: 120px;
    /* header 높이와 동일하게! */
    display: block;
    visibility: hidden;
    /* 화면에는 안 보임, 공간만 차지 */
}

.header-bg {
    width: 100%;
    background: #0b2b53;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.top-bar .top-left {
    display: flex;
}

.top-bar .top-left a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 40px;
    font-size: 16px;
    font-family: 'Pretendard GOV';
    font-weight: 800;
    border-radius: 8px 8px 0 0;
}

.top-bar .top-left a:nth-child(1) {
    background-color: #fff;
    color: var(--color-primary);
}

.top-bar .top-left a:nth-child(2) {
    background-color: var(--color-blue);
}

.top-bar .top-left a:nth-child(3) {
    background-color: var(--color-green);
}

.top-bar .top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar .top-right .sns-icon {
    display: flex;
    gap: 10px;
}

.top-bar .top-right .sns-icon img {
    width: 26px;
}

.logo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.logo-nav img {
    width: clamp(230px, 20vw, 303px);
}

nav {
    display: flex !important;
    gap: 136px;
    align-items: center;
}

nav .list-box ul {
    display: flex;
    gap: 120px;
}

nav .list-box ul li a {
    color: #000;
    font-size: 20px;
    font-weight: 800;
}

nav .list-box ul li:hover a,
nav .list-box ul li:focus a,
nav .list-box ul li a.active {
    color: #1AABB7;
}

/* 밑줄 효과도 동일하게 적용 */

nav .list-box ul li {
    position: relative;
}

nav .list-box ul li::after {
    content: '';
    position: absolute;
    bottom: -38px;
    left: 50%;
    width: 145px;
    height: 4px;
    background-color: #1AABB7;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* 상태에 따라 transform만 바꾼다 (덮어쓰지 않음!) */
nav .list-box ul li:hover::after,
nav .list-box ul li:focus-within::after,
nav .list-box ul li a:focus::after,
nav .list-box ul li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.login-signup a {
    display: flex;
    gap: 10px;
    color: white;
    font-family: 'Pretendard GOV';
    font-weight: 700;
    align-items: center;
}

/* =========================
   메뉴관련 css 시작
========================= */

.menu-toggle {
    display: inline-block;
    background-color: #1AABB7;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
    border-radius: 10px;
}

.menu-toggle .bar-box {
    position: relative;
    left: 50%;
    transform: translate(-25%, 0);
}

.menu-toggle .bar {
    display: block;
    width: 50%;
    height: 2px;
    margin: 6px 0;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle .bar:nth-child(2) {
    width: 30%;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* full-menu 높이 자동 조정 */

.header-wrapper {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    box-sizing: border-box;
}

/* 활성화된 상태에서 보이도록 설정 */
.header-wrapper.active {
    display: flex;
    opacity: 1;
    border-top:1px solid #ddd;
}


.left-area {
    width: 35vw;
    max-width: 870px;
    min-width: 280px;
    background-color: #e0f1f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-radius: 0px 0px 100px 0px;
    box-sizing: border-box;
}


.left-area .title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding: 38px 55px 0 0px;
}

.left-area h2 {
    color: #00274E;
    text-align: right;
    font-size: 35px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: -0.35px;
}

.left-area p {
    color: #8F98AD;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 10px;
}

.left-area img {
    width: 165px;
    padding-right: 20px;
    padding-bottom: 40px;
}

.right-con {
    max-width: 985px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.right-area {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 84px;
    top: 38px;
    padding-top: 38px;
}

.right-area .menu-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    /* 3개씩 한 줄에 배치 */
    gap: 20px;
    width: 100%;
}

/* menu-content가 hidden 속성이 없을 때만 보이도록 설정 */
.right-area .menu-content:not([hidden]) {
    display: grid;
    /* 숨겨지지 않은 콘텐츠만 그리드로 표시 */
    width: 100%;
}

.menu-wrapper {
    flex: 0 1 calc(33.33% - 20px);
    max-width: 285px;
    box-sizing: border-box;
}

.menu-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    width: 100%;
    border-radius: 7px;
    border: 1.5px solid #DDD;
    background: #FFF;
    text-align: left;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: "NanumSquare Neo";
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding-left: 22px;
    padding-right: 20px;
    box-sizing: border-box;
    gap: 10px;
}

.menu-button img {
    position: static;
    right: 0;
    margin-left: auto;
}

.menu-button:hover,
.menu-button:focus,
.menu-button.active {
    background-color: #00b3c7;
    color: #fff;
    outline: none;
}

.menu-button:hover img,
.menu-button:focus img {
    filter: brightness(0) invert(1);
}

.submenu {
    display: none;
    margin-top: 18px;
    border-radius: 8px;
    overflow: hidden;
    list-style-type: disc;
    padding-left: 20px;
}

.submenu li {
    padding: 0 0 3px;
    list-style-type: disc;
}

.submenu li::marker {
    color: rgba(204, 204, 204, 1);
    font-size: 14px;
    font-weight: bold;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    color: #333;
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
}

.submenu li a:hover {
    color: #00b3c7;
}

.menu-wrapper:hover .submenu {
    display: block;
}

/* backdrop 기본적으로 숨김 */
.menu-backdrop {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* 활성화된 상태에서 보이도록 설정 */
.menu-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.sitemap-container {
    position: absolute;
    left: 0;
    width: 100%;
    height: 330px;
    background: white;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 27px 20px 20px 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.sitemap-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 115px;
    box-sizing: border-box;
}

.sitemap-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sitemap-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}

.sitemap-section ul li {
    margin-bottom: 5px;
}

.sitemap-section ul li a {
    color: #333;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
}

.sitemap-section ul li a:hover {
    color: #19A8B5;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
}

.sitemap-section:first-of-type h3 {
    color: #19A8B5;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
}

.sitemap-section:not(:first-of-type) h3 {
    color: #00274E;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
}

.mb-sitemap-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    display: none;
    /* 기본적으로 숨김 */
}

.mb-sitemap-container .close-btn_wrapper {
    display: flex;
    justify-self: flex-end
}

.mb-sitemap-container .mb-sitemap-login {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
}

.mb-sitemap-container .mb-sitemap-login img {
    width: 22px;
}

.mb-sitemap-container .mb-sitemap-login a {
    font-weight: 700;
    font-size: 19px;
}

.mb-sitemap-container .icon-goto-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.mb-sitemap-container .icon-goto-wrap .icon-goto {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.mb-sitemap-container .icon-goto-wrap .icon-goto img {
    width: 44px;
}

.mb-sitemap-container .icon-goto-wrap .icon-goto p {
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.accordion {
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    padding-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 16px 17px;
    text-align: left;
    font-weight: 800;
    background-color: white;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.accordion-item.active .accordion-header {
    background-color: #19A8B5;
    color: #fff;
}

.accordion-item.active .accordion-header::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url('/images/layout/up-arrow.png');
    /* 아래쪽 화살표 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
}

.accordion-header::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url('/images/layout/down-arrow.png');
    /* 아래쪽 화살표 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
}

.accordion-body {
    background-color: #e8f7fc;
    padding: 14px 40px;
    display: none;
    list-style: disc;
    border-radius: 0px 0px 10px 10px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body li:first-child {
    padding-top: 4px;
}

.accordion-body li {
    margin-bottom: 12px;
    list-style: disc;
}

.accordion-body li::marker {
    color: #464A51;
}

.accordion-body li a {
    color: #464A51;
    font-weight: 600;
    font-size: 15px;
}

.accordion-item.remove-bottom {
    border-bottom: none;
}

.accordion-body li a.active {
    color: #19A8B5;
    text-decoration: underline;
    text-decoration-color: #19A8B5;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* =========================
   메뉴관련 css 끝
========================= */

/* =========================
  메인배너 시작
========================= */
.main-visual {
    overflow: hidden;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* .main-visual img {
    width: 100%;
} */

.main-visual .banner-box {
    position: relative;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.main-visual .main-text {
    position: absolute;
    top: clamp(10%, 8.8vw, 25%);
    color: white;
    width: 730px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-visual .main-text h1 {
    font-size: clamp(30px, 4.4vw, 57px);
    letter-spacing: -2px;
    font-weight: 900;
    margin-bottom: 27px;
    line-height: clamp(38px, 6vw, 80px);
}

.main-visual .main-text p {
    line-height: clamp(160%, 4vw, 170%);
    font-family: "Pretendard GOV";
    font-weight: 500;
    font-size: clamp(13px, 2vw, 19px);
    margin-bottom: 36px;
}

.main-visual .highlight {
    color: var(--color-main_highlight);
}

.main-visual .swiper-control {
    position: absolute;
    top: clamp(45%, 40vw, 68%);
    left: 0;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    flex-direction: column;
}

.main-visual .swiper-control .btn-link01{
    top: 250px;
    width: 250px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 98px;
    height: 55px;
    margin-bottom: 20px;
}
.main-visual .swiper-control .btn-link01 a{
    color: white;
    font-size: 15.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.main-visual .swiper-control .btn-link02{
    top: 250px;
    width: 250px;
    height: 55px;
    margin-bottom: 20px;
}

.main-nav {
    display: flex;
    gap: 10px;
}

.main-visual .swiper-control button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.main-visual .swiper-control .control-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual .swiper-control .control-box .swiper-prev img,
.main-visual .swiper-control .control-box .swiper-next img {
    width: clamp(34px, 4.4vw, 58px);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.main-visual .swiper-control .control-box .right-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual .swiper-control .control-box .right-control .swiper-pagination {
    position: relative;
    text-align: center;
    transition: .3s opacity;
    transform: translate(10px, 10px);
    z-index: 10;
    width: 100% !important;
    display: flex;
}

.main-visual .swiper-control .control-box .right-control .swiper-pagination-bullet {
    width: 18px !important;
    height: 8px !important;
    display: inline-block;

    border-radius: 8px !important;
    background: #ffffff6e;
    opacity: 1;
    transition: width 0.3s, background 0.3s;
}

.main-visual .swiper-control .control-box .right-control .swiper-pagination-bullet-active {
    width: 100px !important;
    height: 8px !important;
    border-radius: 8px !important;
    background: #fff !important;

}

.main-visual .swiper-control .control-box .right-control .swiper-playpause {
    width: 20px;
    height: 20px;
    border: none;
    background: no-repeat center center / contain;
    cursor: pointer;
    text-indent: -9999px;
    margin-left: 25px;
}

.main-visual .swiper-control .control-box .right-control .swiper-playpause.pause {
    background-image: url('/images/layout/paused.png');
}

.main-visual .swiper-control .control-box .right-control .swiper-playpause.play {
    background-image: url('/images/layout/play.png');
}

.main-visual .swiper-control .control-box .right-control .swiper-control button {
    background: transparent;
    height: 40px;
    cursor: pointer;
    border: none;
}

/* =========================
  메인배너 끝
========================= */

/* =========================
   중간영역 css 시작
========================= */
.center .center-text h2 {
    font-size: clamp(24px, 5vw, 46px);
    letter-spacing: -3px;
    font-weight: 800;
    color: #001222;
    padding-top: 64px;
    line-height: clamp(40px, 6vw, 62px);
}

.center .center-text .highlight-green {
    color: var(--color-highlight-green);
}

.center .center-text .highlight-blue {
    color: var(--color-highlight-blue);
}

.center .center-text {
    display: flex;
    align-items: end;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}

.center .center-text h2 {
    white-space: nowrap;
    min-width: 0;
    margin: 0;
}

.center .center-text span {
    background-color: white;
}

.center .center-text .line {
    position: relative;
    z-index: -1;
}

.center .center-text .sns-icon {
    width: 100%;
    position: relative;
    display: flex;
    gap: 8px;
}

.center .center-text .center-right {
    display: flex;
    align-items: center;
    gap: 39px;
    position: relative;
    bottom: 20px;
    justify-content: flex-end;
    overflow: hidden;
}

/* =========================
   중간영역 css 끝
========================= */

/* =========================
   sns관련 스와이퍼 시작
========================= */
.sns-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 29px;
}

.sns-row {
    display: flex;
    gap: 32px;
    width: 1039px;
    flex-direction: row-reverse;
}


.sns-swiper {
    min-width: 0;
}

.sns-title {
    background-color: var(--color-accent);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 325px;
    width: 100%;
    min-width: 0;
}

.sns-title button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.sns-title a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-align: start;
}

.sns-title .title-box {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-self: start;
    gap: 14px;
    position: relative;
}

.sns-title .title-box h3 {
    font-size: 32px;
    font-weight: 900;
}
.sns-title .title-box h3 img{
    width: 32px;
    padding-left: 10px;
}
.sns-nav {
    position: absolute;
    bottom: 35px;
    display: flex;
    width: 120px;
    right: 32px;
    gap: 20px;
}

.sns-nav .sns-swiper-button-prev img,
.sns-nav .sns-swiper-button-next img {
    cursor: pointer;
}

.sns-nav .sns-swiper-button-prev,
.sns-nav .sns-swiper-button-next {
    background: none;
    border: none;
    box-shadow: none;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}


.sns-nav .sns-swiper-button-prev::after,
.sns-nav .sns-swiper-button-next::after {
    display: none;
}

.sns-swiper .swiper-wrapper {
    display: flex;
}

.sns-swiper .swiper-slide {
    display: flex;
    gap: 32px;
}

.card-box {
    width: calc((1039px - 32px) / 3);
    height: 300px;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 1px solid #ccc;
    border: 1px solid #ccc;

}

.card-box iframe,
.card-box blockquote.instagram-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.card-box img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.card-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #19569f;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.card-box p {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}

.card-box span {
    font-size: 13px;
    color: #999;
}

/* =========================
    sns관련 스와이퍼 끝
========================= */

/* =========================
  뉴스 스와이퍼 + banner-swiper css 시작
========================= */
.news-wrap {
    padding-top: 30px;
}

.news-wrap,
.banner-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 29px;
    align-items: flex-end;

}

.news-row {
    display: flex;
    gap: 32px;
    width: 1039px;
}

.banner-row {
    display: flex;
    gap: 32px;
    width: 100%;
    padding-top: 29px;
}

.news-swiper,
.banner-swiper {
    min-width: 0;
}

.news-title {
    background-color: #2FBD61;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 325px;
    width: 100%;
    min-width: 0;
    height: 300px;

}
.news-title,
.news-card,
.sns-title,
.card-box,
.banner-con,
.banner-card{
    border-radius: 25px;
}

.banner-title {
    background-color: #1A41A3;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((1039px - 32px) / 1.4);
    max-width: 685px;
    min-width: 0;
    height: 300px;
}

.news-title a,
.banner-title a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-align: start;
}

.news-title button,
.banner-title button {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 5px;
}

.news-title .title-box,
.banner-title .title-box {
    display: flex;
    padding: 39px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.news-title .title-box h3,
.banner-title .title-box h3 {
    font-size: 32px;
    font-weight: 900;

}

.news-card {
    background: #F1F5F9;
    padding: 32px;
    width: calc((1039px - 32px) / 3);
    box-sizing: border-box;
    width: 325px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.news-card .desc {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.news-card .desc h3 {
    white-space: normal;
    font-size: 19px;
    font-weight: 800;
    line-height: 33px;
    letter-spacing: -1.32px;
}

.news-card .desc time {
    color: #888;
    font-size: 15px;
    font-weight: 800;
}

.banner-card {
    background: #F1F5F9;
    padding: 32px;
    width: calc((1039px - 32px) / 3);
    box-sizing: border-box;
    width: 325px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-header h3 {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 24px;
    font-weight: 800;
}

.news-card-header .expand-btn {

    cursor: pointer;
}


.card-con {
    display: flex;
    gap: 32px;
}

.banner-wrap .card-con .banner-card {
    background-color: #173251;
}

.banner-wrap .card-con .banner-card .banner-card-header .card-title {
    display: flex;
    justify-self: flex-start;
    align-items: center;
    gap: 8px;
}

.banner-wrap .card-con .banner-card .banner-card-header .card-title img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.banner-wrap .card-con .banner-card .banner-card-header .card-title h3 {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.banner-wrap {
    padding-bottom: 99px;
    display: flex;
    gap: 32px;
}

.banner-con {
    display: flex;
    background-color: #003C9D;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 685px;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
    color: white;
    height: 300px;
}

/* 왼쪽 영역 */
.banner-left {
    flex: 1 1 150px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
}

.banner-left,
.banner_swiper-box {
    flex: 1 1 45%;
    min-width: auto;
}


.banner-left h3 {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
}

.banner-nav {
    position: absolute;
    bottom: 60px;
    display: flex;
    width: 120px;
    /* width: clamp(100px, 8vw, 120px); */
    left: 32px;
    gap: 20px;
}

.banner-nav .swiper-button-prev::after,
.banner-nav .swiper-button-next::after {
    display: none;
}

/* 오른쪽 Swiper */
.banner_swiper-box {
    flex: 1 1 100%;
    max-width: 430px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.main-image {
    height: 650px !important;
    width: 100% !important;
    display: block !important;
    max-width: 1550px;
    border-radius: 25px;
    margin: 0 auto;
}
.banner-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
}

.banner-controls .swiper-pagination {
    flex: 1;
    text-align: center;
}

.banner-controls .swiper-pagination-bullet {
    background-color: white;
}

.banner-controls .swiper-pagination-bullet-active {
    background-color: white;
    opacity: 1;
}

.banner-controls .banner-playpause {
    width: 13px;
    height: 14px;
    background: url('/images/layout/pause-white.png') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
}

.banner-controls .banner-playpause.pause {
    background-image: url('/images/layout/pause-white.png');
}

.banner-controls .banner-playpause.play {
    background-image: url('/images/layout/play-white.png');
}

.banner-controls .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: auto !important;
}

.banner-nav .swiper-button-prev img,
.banner-nav .swiper-button-next img {
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.banner-card-content iframe {
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-card-content p {
    color: white;
    font-size: 18px;
    font-weight: 800;
    padding-top: 19px;
}

.bottom {
    height: 170px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #3B79EC 50%, #00B09B 50%);
    z-index: -1;
}

.bottom .bt-con {
    width: 100%;
    display: flex;
    height: 100%;
}

.bottom .youth {
    position: relative;
    width: 50%;
    background-color: #3B79EC;
    height: 100%;
}
.bottom .youth,
.bottom .teenager{
    cursor: pointer;
}

.title01,
.title02 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    padding-top: 50px;
}

.title02 {
    padding-left: 45px;
}

.title01 p,
.title02 p {
    font-size: 16px;
    font-weight: 700;
}

.title01 .title-btn,
.title02 .title-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.title01 .title-btn h2,
.title02 .title-btn h2 {
    font-size: 30px;
    font-weight: 900;
}

.bottom .youth .bg-img {
    position: absolute;
    right: 5%;
    top: 10%;
    width: auto;
    max-width: 100%;
}

.bottom .teenager {
    width: 50%;
    background-color: #00B09B;
    height: 100%;
    position: relative;
}


/* .bottom .teenager img */
.bottom .teenager .bg-img {
    position: absolute;
    right: 5%;
    top: 10%;
    width: auto;
    max-width: 100%;
}


/* =========================
  뉴스 스와이퍼 + banner-swiper css 끝
========================= */
.footer {
    background-color: #3b3e4a;
    color: #ccc;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    /* height: 265px; */
}

.footer-box {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    background-color: #2E3545;
}

.footer-links ul {
    display: flex;
    gap: 50px;
    padding: 0;
    height: 45px;
    align-items: center;
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.32px;
}

.footer-links a {
    color: #FFF;
    font-family: "Pretendard GOV";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.footer-links a.active {
    color: #90f08b;
    font-weight: 700;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding-top: 38px;
}

.footer-menu {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #232936;
    padding: 0 24px;
    gap: 104px;
    cursor: pointer;
}

.footer-menu p {
    color: #FFF;
    font-family: "Pretendard GOV";
    font-size: 17px;
    font-weight: 500;
    line-height: 150%;
}

.footer-link-popup {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    gap: 16px;
    background: #232936;
    border-radius: 12px 12px 0 0;
    z-index: 1000;
    align-items: flex-start;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
}

.footer-link-popup a {
    color: #FFF;
    font-family: "Pretendard GOV";
    font-size: 16.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding-left: 24px;
}

.footer-link-popup a img {
    padding-left: 5px;
}

.footer-link-popup a:hover {
    color: #3DCDD9;
    text-decoration: underline;
}

.footer-menu {
    position: relative;
    z-index: 101;
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 27px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.32px;
}
.business-info .business-info-box{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.business-info .business-info-box p,
.business-info .business-info-box span,
.business-info .business-info-box strong,
.business-info .business-info-box .cell,
.contact-info p,
.contact-info strong{
    font-family: "Pretendard GOV";
    color: white;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-left p {
    margin: 3px 0;
    line-height: 1.5;
    font-family: "Pretendard GOV";
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left strong {
    color: #fff;
    font-weight: 700;
    width: 70px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sns-icons a {
    margin-right: 6px;
}

.copyright {
    color: #FFF;
    font-family: "Pretendard GOV";
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.32px;
    opacity: 0.5;
}

.mb-mascot {
    display: none;
}

/* =============================================================
*************** 공지/알림 서브페이지 css 시작 ***************
============================================================= */
.sub-banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1800px;
    padding-top: 1px;
}

.sub-banner img {
    width: 100%;
    display: block;
    border-radius: 25px;
}

.sub-banner-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sub-banner-inner .title {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.sub-banner-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
    color: #222;
}

.sub-banner-text p {
    color: rgba(29, 29, 29, 0.67);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.sub-banner-text h1 {
    font-size: 52px;
    font-weight: 800;
}

.breadcrumb {
    font-size: 14px;
    color: #1e1e1e;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.breadcrumb li:not(:first-child) .arrow {
    margin: 0 6px;
    width: 20px;
}

.breadcrumb a {
    color: #1e1e1e;
    text-decoration: none;
}

.breadcrumb img {
    vertical-align: middle;
}

.custom-tab-wrap {
    width: 100%;
}

.custom-tab-list {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    list-style: none;
    background-color: white;
    position: relative;
    top: -30px;
}

.custom-tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    background: #fff;
    color: #333;
    transition: all 0.3s;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

.custom-tab.active {
    background: linear-gradient(100deg, #2466C1 0%, #009EB5 55.24%, #05B781 100%);
    color: #fff;
    font-weight: 800;
    border-radius: 8px;
}

.custom-tab a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    /* 부모(li)의 글자색 상속 */
    text-decoration: none;
    /* 밑줄 제거 */
    display: flex;
    /* 기존 탭처럼 중앙 정렬 유지 */
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

.custom-tab.active a {
    color: #fff;
    /* 활성화 시 글자색 하얀색 유지 */
    font-weight: 800;
    /* 강조 */
}

.custom-tab-content {
    display: none;
    margin-bottom: 80px;
    position: relative;
    /**서브03 때문에 추가 **/
}

.custom-tab-content h2 {
    text-align: center;
    color: #1D1D1D;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -1.8px;
    margin-top: 75px;
    font-family: "NanumSquare Neo";
}


/* 페이지네이션 스타일 */
#prevPage,
#nextPage {
    background: #fff;
    padding: 10px 18px;
    margin: 0 2px;
    font-size: 16px;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 24px 0 40px 0;
}

.page-btn {
    background: #fff;
    padding: 10px 18px;
    margin: 0 2px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.page-btn.active,
.page-btn:hover:not(:disabled) {
    color: #003675;
    font-weight: 900;
}

#prevPage:disabled img,
#nextPage:disabled img {
    opacity: 0.2;
}

/* 서브페이지 :  게시판 */
.noticeSpan {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 2px 8px;
    background-color: #031c5c;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    margin-right: 8px;
}

.noticeTable.table,
.inquiryTable.table {
    word-break: keep-all;
}

.noticeTable.table.responsive tbody td:nth-child(2),
.inquiryTable.table.responsive tbody td:nth-child(3) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ======================================== */
/* 테이블(table) */
/* ======================================== */
caption {
    overflow: hidden;
    width: 1px;
    height: 1px;
    line-height: 0;
    font-size: 0;
}

.table {
    table-layout: fixed;
    width: 100%;
    margin: 20px 0 30px;
    word-break: normal;
}

.table thead th {
    padding: 18px 20px;
    background: #0b2b53;
    color: white;
    font-family: Pretendard;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.1px;
}

.table tbody th {
    background: #0b2b53;
}

.table thead th:first-child {
    border-radius: 10px 0 0 10px;
}

.table thead th:last-child {
    border-radius: 0 10px 10px 0;
}

.noticeTable.table tbody tr:nth-child(even),
.inquiryTable.table tbody tr:nth-child(even) {
    background-color: #f8fafd;
}

.noticeTable.table tbody tr.fixed-notice {
    background: linear-gradient(100deg, rgba(36, 102, 193, 0.20) 0%, rgba(0, 158, 181, 0.20) 55.24%, rgba(5, 183, 129, 0.20) 100%);
}

.noticeTable.table tbody tr.fixed-notice {
    border-bottom: 1px solid #707070cc;
}

.noticeTable.table tbody tr.last-fixed-notice {
    border-bottom: none !important;
}

.noticeTable.table tbody tr:not(.fixed-notice):nth-child(even),
.inquiryTable.table tbody tr:not(.fixed-notice):nth-child(even) {
    background-color: #f8fafd;
}

.noticeTable.table tbody tr.fixed-notice th:first-child,
.noticeTable.table tbody tr.fixed-notice td:first-child {
    border-radius: 0 !important;
}

.noticeTable.table tbody tr.fixed-notice th:last-child,
.noticeTable.table tbody tr.fixed-notice td:last-child {
    border-radius: 0 !important;
}

.noticeTable.table tbody tr.fixed-notice span {
    background-color: #179543;
    color: white;
    border: none;
    font-weight: 800;
}

.noticeTable.table tbody tr.fixed-notice th:first-child,
.noticeTable.table tbody tr.fixed-notice td {
    font-weight: 800;
}

.noticeTable.table tbody tr.fixed-notice td[data-content="제목"] a {
    font-weight: 800;
    color: #222;
}

.noticeTable.table tbody tr.fixed-notice td[data-content="작성자"],
.noticeTable.table tbody tr.fixed-notice td[data-content="작성일"] {
    font-weight: 600;
    color: #444;
}

.table tbody th,
.table tbody td {
    overflow: hidden;
    color: #444;
    vertical-align: middle;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.1px;
    height: 58px;
}

.table tbody td[data-content="제목"] {
    text-align: start;
}

.table tbody td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table tbody td img {
    width: 20px;
}

.table tbody th,
.table tbody td:first-child {
    border-radius: 10px 0 0 10px;
}

.table tbody td:last-child {
    border-radius: 0 10px 10px 0;
}

.table tbody td a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.table tfoot th,
.table tfoot td {
    padding: 12px 20px;
    border-bottom: 1px solid #dedede;
    background: #f7f8f9;
}

.table tbody td .subject {
    overflow: hidden;
    display: block;
    color: #222;
    font-size: 18px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table tbody th,
.table tbody td span {
    border-radius: 30px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    font-size: 14px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 스크롤 테이블 */
.table-scroll-wrap {
    width: 100%;
    height: fit-content;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.table-scroll-wrap .table,
.table-scroll-wrap .board-foot {
    width: 100%;
    min-width: 1000px;
    margin: 0;
}

.table-scroll-wrap.w-1200 .table,
.table-scroll-wrap.w-1200 .board-foot {
    min-width: 1200px;
}

.table-scroll-wrap.w-1400 .table,
.table-scroll-wrap.w-1400 .board-foot {
    min-width: 1400px;
}

.table-scroll-wrap.w-1600 .table,
.table-scroll-wrap.w-1600 .board-foot {
    min-width: 1600px;
}

.table-scroll-wrap .table colgroup col {
    width: revert-layer !important;
}

.table-scroll-wrap .table td {
    padding: 10px 20px !important;
}

.indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.indicator .count strong {
    font-weight: 800;
    color: #179543;
}

.board-filter {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.board-filter .search-group {
    display: flex;
    gap: 8px;
    flex: 1 1 240px;
}

.board-filter .search-group input[type="text"] {
    max-width: 220px;
    width: 100%;
}

.board-filter select,
.board-filter input[type="text"] {
    padding: 10px 20px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 15px;
}

.board-filter input[type="text"] {
    flex: 1 1 0;
    min-width: 0;
}

.board-filter button[type="submit"] {
    padding: 11px 20px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    flex: 0 0 auto;
}

.board-filter button[type="submit"]:hover {
    background: #0051a8;
}

.board-filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url('/images/layout/arrow-down.png') no-repeat right 12px center/14px 14px;
    padding-left: 15px;
    padding-right: 36px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 15px;
    min-width: 110px;
    cursor: pointer;
}

.board-filter select.open {
    background-image: url('/images/layout/arrow-up.png');
}

.board-filter select::-ms-expand {
    display: none;
}

/* =============================================================
*************** 공지/알림 서브페이지 css 끝 ***************
============================================================= */

/* =============================================================
*************** 게시판 디테일 페이지 css 시작 ***************
============================================================= */
.detail-banner .title {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.detail-cont-body {
    margin-top: 20px;
}

.detail-cont-body .detail-content h2 {
    font-weight: 800;
}

.detail-cont-body .detail-content ul {
    display: flex;
    gap: 40px;
    padding-top: 20px;
}

.sidebar-menu {
    width: 280px;
    display: flex;
    flex-direction: column;
}

.sidebar-menu__title {
    font-size: 20px;
    color: #43781a;
    margin-bottom: 20px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.accordion-button::after {
    content: '▼';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.accordion-button[aria-expanded="true"] {
    background: #43781a;
    color: #fff;
}

.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
    color: #fff;
}

.accordion-submenu {
    background: #f5f5f5;
    padding: 10px 20px;
    font-size: 14px;
}

.accordion-submenu__item {
    margin: 6px 0;
}

.accordion-submenu__item a {
    text-decoration: none;
    color: #333;
}

.accordion-submenu__item a strong {
    font-weight: bold;
}

.accordion-item--link>a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.accordion-item--link>a:hover {
    background-color: #f0f0f0;
}

.detail-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-banner-box {
    width: 100%;
}

.detail-banner .sub-banner-text h1 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
}

#detail-content .post-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

#detail-content ul li {
    display: flex;
}

#detail-content .attachment-list {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: row;
    gap: 12px;
    padding-top: 0;
    padding-left: 0;
}

#detail-content .attachment-list li {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

#detail-content h2 {
    padding-top: 20px;
    font-weight: 800;
}

#detail-content strong {
    padding-right: 5px;
}

.detail-cont-body button p {
    font-size: 20px;
    display: flex;
    justify-content: center;
    width: 100px;
    margin: 0 auto;
    padding: 14px 16px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    background: linear-gradient(100deg, #2466C1 0%, #009EB5 55.24%, #05B781 100%);
}

#detail-content .detail-body p {
    white-space: unset;
    white-space: unset;
    font-weight: 600;
    line-height: 1.5;
}

.detail-body img {
    width: 100%;
}

.post-meta .meta-box {
    display: flex;
    gap: 20px;
}

/* =============================================================
*************** 게시판 디테일 페이지 css 끝 ***************
============================================================= */

/* =============================================================
*************** 재단소개 - 연혁 css 시작 ***************
============================================================= */
.sub02-bg02 {
    position: absolute;
    z-index: -1;
    top: 300px;
    height: 100%;
    width: 100%;
}

.history-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 76px;
    margin-bottom: 61px;
    color: #1D1D1D;
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -1.8px;
}

.history-title-wrap {
    margin-bottom: 74px;
}

.history-box {
    margin-bottom: 74px;
    display: flex;
    align-items: center;
    gap: 197px;
}

.history-title-main {
    color: #000;
    font-size: 42px;
    font-family: "Pretendard GOV";
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.84px;
}

.history-title-main strong {
    color: #000;
    font-family: "Pretendard GOV";
    font-size: 42px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.84px;
}

.history-title-sub {
    display: flex;
    align-items: center;
    margin-top: 4px;
    gap: 40px;
}

.history-title-sub .highlight {
    color: #005EB8;
    font-family: "Pretendard GOV";
    font-size: 42px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.84px;
}

.history-title-sub::after {
    content: '';
    height: 1px;
    background-color: #dcdcdc;
    margin-top: 4px;
    width: 60%;
}

.history-group {
    margin-bottom: 48px;
}

.history-section .history-group .history-year {
    color: #00A936;
    font-family: "Pretendard GOV";
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: start;
}

.history-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.history-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
}

.history-item:last-child::after {
    content: none;
}

.history-item::before {
    content: '';
    position: absolute;
    left: 7px;
    width: 13px;
    height: 13px;
    background-image: url(/images/layout/dot.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.history-item::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 12px;
    width: 2px;
    background-color: #d9d9d9;
    z-index: 1;
    height: 40px;
}

.history-date {
    color: #111;

    font-family: "Pretendard GOV";
    font-size: 18px;
    font-weight: 800;
    line-height: 48px;
    width: 99px;
}

.history-desc {
    color: #333;
    font-family: "Pretendard GOV";
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding-left: 35px;
}

/* =============================================================
*************** 주요사업 소개 - 청년사업업 css 시작 ***************
============================================================= */
.quote-box {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: left;
    margin-top: 51px;
}

.quote-box .quote-mark {
    position: absolute;
    font-size: 60px;
    color: #ccc;
    font-family: serif;
    top: 0;
    left: 0;
}

.quote-box .quote-mark.right {
    top: 0;
    right: 0;
    left: auto;
}

.quote-box p {
    margin: 0;
    color: #111;
    text-align: center;
    font-family: "Pretendard GOV";
    font-weight: 400;
    line-height: 140%;
    white-space: unset;
    font-size: clamp(15px, 3vw, 33px);
}

.quote-box strong {
    color: #111;
    font-family: "Pretendard GOV";
    font-weight: 700;
    line-height: 140%;
    font-size: clamp(15px, 3vw, 33px);
}


.quote-box .highlight {
    color: #00A936;
    font-family: "Pretendard GOV";
    font-weight: 700;
    line-height: 140%;
    font-size: clamp(15px, 3vw, 33px);
}

.circle-green-bg {
    position: absolute;
    left: 50%;
    top: 120px;
    max-width: 90vw;
    height: auto;
    z-index: 0;
    z-index: -1;
    transform: translate(-50%, -50%);
}


.sub03-card-con .card-item:nth-child(1) {
    background: url('/images/layout/card-img01.png') center center/cover no-repeat;
}

.sub03-card-con .card-item:nth-child(2) {
    background: url('/images/layout/card-img02.png') center center/cover no-repeat;
}

.sub03-card-con .card-item:nth-child(3) {
    background: url('/images/layout/card-img03.png') center center/cover no-repeat;
}

.sub03-card-con .card-item:nth-child(4) {
    background: url('/images/layout/card-img04.png') center center/cover no-repeat;
}

.sub03-card-con .card-item:nth-child(odd) {
    margin-top: -40px;
}

.sub03-card-con .card-item .icon-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.sub03-card-con .card-item .icon-box .card-icon {
    padding: 32px 33px;
}

.sub03-card-con .card-item .card-inner-text {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 35px;
    left: 33px;
}

.sub03-card-con .card-item .card-inner-text span {
    color: #38B800;
    font-size: 15px;
    font-weight: 900;
}

.sub03-card-con .card-item .card-inner-text p {
    color: #FFF;
    font-size: 26px;
    font-weight: 900;
    line-height: 35px;
    letter-spacing: -0.52px;
}

.sub03-card-con {
    display: flex;
    gap: 30px;
    margin-bottom: 196px;
    margin-top: 87px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sub03-card-con .card-item {
    width: 100%;
    max-width: 300px;
    min-width: 220px;
    height: 350px;
    flex: 1 1 220px;
    border-radius: 15px;
    position: relative;
    z-index: 9;
    box-sizing: border-box;
}

.info-card-wrap {
    color: #000;
    font-family: "Pretendard GOV";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.72px;
    margin-bottom: 107px;
}

.info-card-con {
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.info-card-con .info-card-box {
    flex: 1 1 calc(33.333% - 18px);
    min-width: 320px;
    box-sizing: border-box;
    display: flex;
    gap: 27px;
}

.info-card-box .title-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-title {
    color: #000;
    font-family: "Pretendard GOV";
    font-size: 36px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.72px;
    margin-bottom: 54px;
    white-space: nowrap;
}

.tab-title {
    color: #000;
    font-family: "Pretendard GOV";
    font-size: 36px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.72px;
    margin-bottom: 54px;
}

.info-card-con .info-card-box .title-box .title {
    color: #004381;
    font-family: "Pretendard GOV";
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
}

.info-card-con .info-card-box .title-box .desc {
    color: #272727;
    font-family: "Pretendard GOV";
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}

.banner-info-content {
    margin-bottom: 87px;
}

.banner-info-content .img-wrap {
    width: 100%;
    min-height: 330px;
    background: url('/images/layout/sub03-content-banner.png') center center/cover no-repeat;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 49px;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 85px 40px;
    box-sizing: border-box;
}

.banner-info-content .banner-inner-card {
    border-radius: 12px;
    border: 1px solid #DCDCDC;
    background: #FFF;
    height: 330px;
    width: 100%;
    max-width: 350px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    box-sizing: border-box;
}

.banner-info-content .banner-inner-card .banner-inner-icon {
    width: 74.653px;
    height: 85px;
    flex-shrink: 0;
    aspect-ratio: 74.65 / 85.00;
}

.banner-info-content .banner-inner-card .card-desc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.banner-info-content .banner-inner-card .card-desc-box .card-title {
    color: #00A936;
    text-align: center;
    font-family: "Pretendard GOV";
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.72px;
}

.banner-info-content .banner-inner-card .card-desc-box p {
    text-align: center;
    color: #272727;
    text-align: center;
    font-family: "Pretendard GOV";
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}

.youth-project-wrapper {
    margin-top: 119px;
}

.youth-project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 111px;
}

.youth-project-card {
    display: flex;
    gap: 20px;
    width: calc(50% - 20px);
    align-items: center;
}

.youth-project-card img {
    object-fit: cover;
    flex-shrink: 0;
    /* width: 35%; */
}

.youth-project-content h3 {
    color: #005EB8;
    font-family: "Pretendard GOV";
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.78px;
    margin-bottom: 24px;
}

.youth-project-content p {
    padding-left: 25px;
    position: relative;
    color: #272727;
    font-family: "Pretendard GOV";
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    padding-bottom: 16px;
    white-space: pre-wrap;
}

.youth-project-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url('/images/layout/icon/check-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.youth-support-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 111px;
}

.youth-support-wrapper .card-container {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
}

.support-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 175px;
    box-sizing: border-box;
    margin-bottom: 0;
    width: 100%;
    min-width: 0;
    transition: padding 0.2s;
}


.support-card h3 {
    color: #004381;
    font-family: "Pretendard GOV";
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: -0.72px;
    padding-bottom: 15px;
}

.support-card p {
    color: #272727;
    font-family: "Pretendard GOV";
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 160%;
}

.support-card img {
    width: clamp(40px, 8vw, 80px);
    height: auto;
    margin-left: 16px;
    flex-shrink: 0;
}

.institution-wrapper {
    width: 100%;
    /* height: 330px; */
    flex-shrink: 0;
    background: #F2F5FA;
    padding-top: 96px;
    padding-bottom: 86px;
}

.institution-wrapper .institution-con {
    display: flex;
    gap: 180px;
}

.institution-wrapper .institution-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    flex-direction: column;
}
.institution-wrapper .institution-box img{
    width: 300px;
}
.institution-wrapper .institution-title {
    color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 600;
}

.institution-wrapper .institution-box-container {
    display: flex;
    gap: 59px;
    width: 100%;
    justify-content: flex-end;
}

/* =========================================================
*********** 주요사업 소개 - 청소년 사업 css 시작 ************
========================================================= */
.quote-box .highlight-blue {
    color: #005EB8;
    font-family: "Pretendard GOV";
    font-size: 33px;
    font-weight: 700;
    line-height: 140%;
    font-size: clamp(15px, 3vw, 33px);
}

.quote-box span {
    color: #111;
    font-family: "Pretendard GOV";
    font-size: 33px;
    font-weight: 700;
    line-height: 140%;
}

.card-item02 {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex: 1 1 220px;
    min-width: 140px;
    transition: width 0.2s;
}

.card-item02:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/layout/card02-img01.png') center center/cover no-repeat;
}

.card-item02:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/layout/card02-img02.png') center center/cover no-repeat;
}

.card-item02:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/layout/card02-img03.png') center center/cover no-repeat;
}

.card-item02 .txt-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    height: 80%;
}

.card-item02 .txt-box span {
    padding-bottom: 13px;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 900;
}

.card-item02 .txt-box p {
    color: #FFF;
    text-align: center;
    font-family: "NanumSquare Neo";
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.52px;
    padding-bottom: clamp(8px, 2vw, 19px);
    word-break: keep-all;
}

.card-item02 .card-icon02 {
    width: clamp(32px, 25%, 80px);
    height: auto;
    margin-top: 10px;
    display: block;
    transition: width 0.2s;
}

.specialized-youth-program {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.program-card {
    flex: 1 1 calc(25% - 20px);
    padding: 31px 34px;
    border-radius: 10px;
    box-sizing: border-box;
    min-width: 240px;
    height: 212px;
}

.program-card h4 {
    color: #000;
    font-family: "Pretendard GOV";
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.66px;
    padding-bottom: 12px;
}

.program-card ul {
    padding-left: 10px;
}

.program-card li {
    color: #272727;
    font-family: "Pretendard GOV";
    font-size: 16.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: disc;
}

.program-card li::marker {
    font-size: 11px;
}

/* 1줄째 (1~4): 홀수 초록 / 짝수 파랑 */
.program-card:nth-child(1),
.program-card:nth-child(3) {
    background-color: #e4f7e7;
}

.program-card:nth-child(2),
.program-card:nth-child(4) {
    background-color: #e7f0fd;
}

/* 2줄째 (5~8): 홀수 파랑 / 짝수 초록 */
.program-card:nth-child(5),
.program-card:nth-child(7) {
    background-color: #e7f0fd;
}

.program-card:nth-child(6),
.program-card:nth-child(8) {
    background-color: #e4f7e7;
}

.program-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.camp-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.camp-card {
    position: relative;
    flex: 1 1 45%;
    max-width: 670px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.camp-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.camp-info {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 36px;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.camp-info h3 {
    font-size: 26px;
    font-weight: 900;
    line-height: 35px;
}

.camp-info p {
    font-family: "Pretendard GOV";
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.camp-address {
    background: linear-gradient(100deg, #2466C1 0%, #009EB5 55.24%, #05B781 100%);
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    bottom: 0;
    width: 100%;
    position: absolute;
    height: 60px;
    padding-left: 36px;
    font-family: "Pretendard GOV";
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    gap: 10px;
}

.camp-address .icon {
    margin-right: 8px;
}

.img1 {
    background-image: url('/images/layout/camp01.png');
}

.img2 {
    background-image: url('/images/layout/camp02.png');
}

/* ==========================================================================
************************ 재단소개 - 조직도 css 시작 *************************
========================================================================== */
.organization {
    position: relative;
}

.aside-title a, .aside-btn a{
    color : white;
}

.chair {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 18%;
    font-size: 20px;
    height: 60px;
    background: linear-gradient(100deg, #2466C1 0%, #009EB5 55.24%, #05B781 100%);
    color: white;
    border-radius: 50px;
    align-items: center;
    font-weight: 700;
}

.chair::before {
    content: "";
    width: 1px;
    height: 46.7%;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    top: 35%;
    left: 50%;
    z-index: -1;
}

.chair-container {
    max-width: 1400px;
    width: 100%;
    padding-top: 20px;
    margin: 0 auto;
}

.chair-container .chair-box {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.chair-container .aside-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.chair-container .aside-box .aside-title {
    display: flex;
    justify-content: center;
    width: 200px;
    font-size: 14px;
    height: 50px;
    color: white;
    border-radius: 50px;
    align-items: center;
    font-weight: 700;
    background-color: var(--color-blue);
    margin-bottom: 20px;
}

.chair-container .aside-box .aside-btn {
    font-size: 13px;
    text-align: center;
    background-color: #0480b2;
    margin-bottom: 8px;
    color: white;
    padding: 13px 10px;
    width: 200px;
    height: 45px;
}

.chair-container .bottom-box {
    position: relative;
}

.chair-container .tab-con01 {

    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin: 0 auto;
}

.chair-container .tab-btn,
.chair-container .btn-ceo {
    display: flex;
    justify-content: center;
    width: 18%;
    font-size: 18px;
    height: 55px;
    color: #1c1c1c;
    border-radius: 50px;
    align-items: center;
    font-weight: 700;
    background-color: white;
    border: 1px solid #ccc;
    margin-top: 25px;
}

.chair-container .tab-btn {
    color: #1c1c1c;
    background-color: white;
    border: 1px solid #ccc;
}

.chair-container .btn-ceo {
    background-color: #474747;
    color: white;
    margin: 0 auto;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.tab-con01::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 70%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    z-index: -1;
    transform: translateX(-50%);
}

.ceo-container {
    display: flex;
    padding-top: 20px;
}

.ceo-container .left-con {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.ceo-container .left-con .management-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.ceo-container .left-con .management-list .list {
    width: 250%;
    border: 1px solid;
    height: 45px;
    font-size: 15px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.ceo-container .right-con .list {
    width: 35%;
    border: 1px solid;
    height: 45px;
    font-size: 15px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.ceo-container .left-con .management {
    width: 30%;
    border: 1px solid;
    height: 45px;
    font-size: 18px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15%;
    background-color: white;
}

.ceo-container .right-con {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ceo-container .right-con .list-box {
    width: 100%;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

.bottom-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 80px;
}

.bottom-box .left,
.bottom-box .right {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.bottom-box .left .btn-title,
.bottom-box .right .btn-title {
    width: 100%;
    background-color: black;
    color: white;
    height: 50px;
    font-size: 18px;
}

.bottom-box .left .youth-headquarters,
.bottom-box .right .youth-retreat {
    display: flex;
    gap: 8px;
    padding-top: 20px;
}

.bottom-box .left .youth-headquarters .list-box,
.bottom-box .right .youth-retreat .list-box {
    width: calc((100% - 4 * 8px) / 5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.bottom-box .left .youth-headquarters .list-box button,
.bottom-box .right .youth-retreat .list-box button {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: aliceblue;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.management::after {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    position: absolute;
    z-index: -1;
    right: 0;
}

.management-list::after {
    content: "";
    width: 1px;
    height: 75%;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    top: 13%;
    left: 285%;
    z-index: -1;
}

.management-list .list {
    position: relative;
}

.management-list .list.line01::after {
    content: "";
    width: 80px;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    position: absolute;
    left: 126px;
    top: 50%;
    z-index: -1;
}

.management-list .list.line03::after {
    content: "";
    width: 80px;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    position: absolute;
    left: 126px;
    top: 52%;
    z-index: -1;
}

.right-con .list.line04::after {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    position: absolute;
    top: 18%;
    z-index: -1;
    left: 0;
}

.right-con .list.line05::after {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    position: absolute;
    top: 83%;
    z-index: -1;
    left: 0;
}

.chair-container .bottom-box::before {
    content: "";
    position: absolute;
    top: 18.5%;
    left: 50%;
    width: 50.7%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin-top: -1px;
    z-index: -1;
    transform: translateX(-50%);
}

.bottom-box .left .btn-title,
.bottom-box .right .btn-title {
    position: relative;
}

.bottom-box .left .btn-title::before {
    content: "";
    width: 1px;
    height: 116px;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    bottom: -33px;
    left: 50%;
    z-index: -1;
}

.bottom-box .right .btn-title::before {
    content: "";
    width: 1px;
    height: 80px;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    bottom: 4px;
    right: 50%;
    z-index: -1;
}

.bottom-box .youth-headquarters .list-box,
.bottom-box .youth-retreat .list-box {
    position: relative;
}

.bottom-box .youth-headquarters .list-box.line06::after,
.bottom-box .youth-headquarters .list-box.line07::after,
.bottom-box .youth-headquarters .list-box.line09::after,
.bottom-box .youth-headquarters .list-box.line10::after {
    content: "";
    width: 1px;
    height: 116px;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
}

.bottom-box .youth-retreat .list-box.line11::after,
.bottom-box .youth-retreat .list-box.line12::after,
.bottom-box .youth-retreat .list-box.line13::after,
.bottom-box .youth-retreat .list-box.line14::after,
.bottom-box .youth-retreat .list-box.line15::after,
.bottom-box .youth-retreat .list-box.line16::after {
    content: "";
    width: 1px;
    height: 116px;
    border-right: 1px dashed #ddd;
    margin-left: -1px;
    position: absolute;
    bottom: 20px;
    right: 50%;
    z-index: -1;
}

.organization h2 {
    color: #1D1D1D;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -1.8px;
    margin-top: 75px;
    font-family: "NanumSquare Neo";
}

.org-tab-content-area section {
    display: none;
    margin-top: 10px;
}

.org-tab-content-area section.active {
    display: block;
}

.org-tab-btn.active {
    background: #1c90fb !important;
    color: #fff !important;
}

.org-tab-btn a {
    color: white
}

.bottom-box .left .youth-headquarters .list-box.org-tab-btn.active button,
.bottom-box .right .youth-retreat .list-box.org-tab-btn.active button {
    color: #fff;
    font-weight: 700;
    background: none;
}


.org-table-wrap {
    margin: 20px 0;
}

.org-title {
    background-color: #0066b3;
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    display: flex;
    justify-content: center;
}

.org-subtitle {
    color: #0066b3;
    font-size: 16px;
    font-weight: 800;
    margin: 30px 0 10px;
    border-left: 4px solid #0066b3;
    padding-left: 10px;
}

.org-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 14px;
}

.org-table thead th {
    background-color: #e6e6e6;
    text-align: center;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #ccc;
}

.org-table tbody td {
    border: 1px solid #ccc;
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
}

.org-table tbody td:nth-child(1),
.org-table tbody td:nth-child(2),
.org-table tbody td:nth-child(4) {
    text-align: center;
    white-space: normal;
}

.org-table tbody li{
    text-align: left;
}

.org-table tbody li:nth-child(n+2){
    margin-top: 2px;
}

.org-table tbody li::before {
    content: "-";
    margin-right: 2px;
}

.org-table.active-table {
    box-shadow: 0 0 5px rgba(28, 144, 251, 0.5);
    border-radius: 8px;
}

.org-tab-scroll-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: max-content;
    padding: 0 20px;
}

.scroll-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 16px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.scroll-tab:hover,
.scroll-tab.active {
    background: #1C90FB;
    color: white;
    border-color: #1C90FB;
}

.org-tab-scroll-wrap {
    position: sticky;
    top: 12%;
    z-index: 9;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    max-width: 1400px;
    overflow-x: auto;
    margin: 30px auto;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* =============================================================
*************** 재단소개 - 인사말 css 시작 ***************
============================================================= */

.greeting-container {
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 80px;
}

.greeting-container .img-box {
    flex: 1 1 450px;
    max-width: 450px;
}

.greeting-container .img-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.greeting-container .text-box {
    /* flex: 1 1 500px; */
    width: 60%;
}

.greeting-container .text-box h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    font-weight: 800;
}

.greeting-container .text-box h2 {
    font-size: 32px;
    display: inline-block;
    margin-bottom: 38px;
    font-weight: 800;
    line-height: 1.4;
    text-align: start;
    width: 100%;
    margin-top: 0;
}
.greeting-container .text-box h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #cccc;
    margin-top: 32px;
    border-radius: 2px;
}
.greeting-container .text-box strong{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;

    color: #1d1d1d;
}
.greeting-container p,
.greeting-container strong,
.greeting-container h2,
.greeting-container span{
    font-family: 'Pretendard GOV';
}
.greeting-container .text-box .welcome-txt{
    font-size: 26px;
    color: #0b2b53;
    font-weight: 800;
}
.greeting-container .text-box p {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    padding-top: 14px;
    display: flex;
    margin-bottom: 40px;
}
.greeting-container .text-box p img{
    width: 24px;
    height: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
.greeting-container .highlight-navy{
    color: #0b2b53;
}
.greeting-container .text-box p:last-of-type {
    margin-bottom: 32px;
}

.greeting-container .signature {
    font-weight: bold;
    margin-top: 24px;
    font-family: 'Pretendard GOV';
    font-size: 22px;
}
/* .greeting-container .sign{
        font-size: 30px;
        font-weight: 300;
        padding-left: 8px;
} */
/* =========================
   미디어쿼리
========================= */
@media (max-width: 1420px) {
    .logo-nav{
        max-width: none;
        width: auto;
    }
}
@media (max-width: 1400px) {
    nav {
        gap: 100px;
    }

    nav .list-box ul {
        gap: 90px;
    }

    nav .list-box ul li::after {
        bottom: -35px;
    }

    .main-visual .main-text h1 {
        margin-bottom: 18px;
    }

    .main-visual .main-text p {
        margin-bottom: 30px;
    }

    .center .center-text .center-right .sns-icon img {
        width: 39px;
    }

    .title01 {
        padding-left: 45px;
    }

    .bottom .youth .bg-img {
        width: 200px;
        top: 20%;
    }

    .bottom .teenager .bg-img {
        width: 200px;
        top: 30%;
    }

    .sitemap-content {
        max-width: 1010px;
    }

    .sitemap-section:first-of-type h3 {
        font-size: 20px;
    }

    .sitemap-section:not(:first-of-type) h3 {
        font-size: 20px;
    }

    .sitemap-section ul li a {
        font-size: 17px;
    }

    .sitemap-section ul {
        gap: 13px;
        padding-top: 17px;
    }

    /**공지/알림 서브페이지**/
    .sub-banner .sub-bg {
        width: 100%;
        display: block;
        border-radius: 0;
    }

    .sub-banner-inner .title {
        gap: 38px;
    }

    .sub-banner-inner .title .sub-banner-text {
        gap: 14px;
    }

    .sub-banner-inner .title .sub-banner-text p {
        font-size: 18px;
    }

    .sub-banner-inner .title .sub-banner-text h2 {
        font-size: 48px;
    }

    /* ================================================
*********** 게시판 상세페이지 css 시작 *****************
================================================ */
    .detail-banner {
        padding-top: 40px;
    }

    /* ================================================
*********** 주요사업소개 - 청년사업 css 시작 *****************
================================================ */
    .youth-project-card {
        flex-direction: column;
    }

    .youth-project-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ================================================
*********** 재단소개 - 조직도 css 시작 *****************
================================================ */
    .bottom-box .left .youth-headquarters .list-box button,
    .bottom-box .right .youth-retreat .list-box button {
        font-size: 12px;
        padding: 0;
    }

    .org-tab-scroll-wrap {
        top: 15.4%;
    }
}

@media (max-width: 1350px) {
    nav .list-box ul li a {
        font-size: 19px;
    }

    .center h2 {
        font-size: 36px;
        letter-spacing: -2px;
        line-height: 50px;
    }

    /**공지/알림 서브페이지**/
    .custom-tab {
        font-size: 18px;
    }

    /* ================================================
*********** 재단소개 - 조직도 css 시작 *****************
================================================ */
    .org-tab-scroll-wrap {
        top: 11%;
    }
}

@media(max-width:1280px) {

    /* ================================================
*********** 주요사업소개 - 청년사업 css 시작 *****************
================================================ */
    .specialized-youth-program {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    .specialized-youth-program>* {
        flex: 1 1 48%;
        max-width: 48%;
        min-width: 220px;
        box-sizing: border-box;
    }
}

@media(max-width:1250px) {

    .title01 .title-btn h2,
    .title02 .title-btn h2 {
        font-size: 28px;
    }

    .title01 p,
    .title02 p {
        font-size: 14px;
    }

    nav .list-box ul li::after {
        bottom: -32px;
    }

    .sitemap-content {
        max-width: 870px;
    }

    .mascot {
        display: none;
    }

    /**공지/알림 서브페이지**/
    .custom-tab-content h2 {
        margin-top: 50px;
    }

    .sub-cont-body {
        margin-top: 68px;
    }

    .institution-wrapper .institution-con {
        display: flex;
        gap: 0;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .institution-wrapper .institution-box-container {
        justify-content: center;
        gap: 0;
    }

    .institution-wrapper .institution-box img {
        width: 90%;
    }
    .main-visual .swiper-control .btn-link01,
    .main-visual .swiper-control .btn-link02{
        width: 200px;
        height: 50px;
    }

    .main-visual .swiper-control .btn-link01 a{
        font-size: 13.5px;
    }
    .main-visual .swiper-control .btn-link01 a img{
        width: 20px;
    }
}

@media(max-width:1200px) {
    .sub-banner .sub-bg {
        height: 320px;
    }

    /* =============================================================
*************** 재단소개- 연혁 css 시작 ***************
============================================================= */
    .history-box {
        gap: 100px;
    }

    .history-title-sub::after {
        width: 40%;
    }

    .history-bg {
        width: 85%;
    }
}

@media (max-width: 1150px) {
    .history-box {
        gap: 50px;
    }

    .history-title {
        margin-bottom: 48px;
    }

    .history-title-main {
        font-size: 37px;
    }

    .history-title-main strong {
        font-size: 37px;
    }

    .history-title-sub {
        gap: 30px;
    }

    .history-title-sub .highlight {
        font-size: 37px;
    }

    .history-section .history-group .history-year {
        font-size: 33px;
        margin-bottom: 0;
    }

    .history-section .history-group .history-date {
        font-size: 17px;
    }

    .history-section .history-group .history-desc {
        font-size: 17px;
        padding-left: 28px;
    }

    /* =============================================================
*************** 주요사업 소개 - 청년사업 css 시작 ***************
============================================================= */
    .sub03-card-con .card-item {
        width: 100%;
        max-width: 300px;
        min-width: 220px;
        flex: 1 1 220px;
        border-radius: 15px;
        position: relative;
        z-index: 9;
        box-sizing: border-box;
        height: 150px;
    }

    .sub03-card-con .card-item:nth-child(odd) {
        margin: 0;
    }

    .sub03-card-con .card-item .icon-box .card-icon {
        width: 16%;
    }

    .sub03-card-con .card-item .card-inner-text p {
        font-size: 20px;
        line-height: 28px;
    }

    .info-card-con .info-card-box .title-box .title {
        font-size: clamp(19px, 3vw, 24px);
    }

    .info-card-con .info-card-box .title-box .desc {
        font-size: clamp(14px, 1.8vw, 17px);
    }

    /* =============================================================
*************** 재단소개 - 조직도 css 시작 ***************
============================================================= */
    .org-tab-scroll-wrap {
        top: 11%;
    }
}

@media (max-width: 1120px) {
    .sub03-card-con {
        justify-content: center;
        gap: 24px;
    }

    .sub03-card-con .card-item {
        max-width: 48%;
        flex: 1 1 48%;
        min-width: 220px;
        width: 100%;
    }

    .sub03-card-con .card-item .icon-box .card-icon {
        width: auto;
    }

    /* =============================================================
*************** 주요사업 소개 - 청소년사업 css 시작 ***************
============================================================= */
    .card-item02 {
        flex: 1 1 38%;
        max-width: 38%;
        min-width: 140px;
    }

    /* =================================================
**************** 재단소개- 조직도 css 시작 ****
================================================= */
    .chair {
        font-size: 18px;
        height: 55px;
    }

    .ceo-container .left-con .management {
        margin-right: 9%;
    }

    .ceo-container .left-con .management {
        font-size: 16px;
    }

    .ceo-container .left-con .management-list .list,
    .ceo-container .right-con .list {
        font-size: 14px;
    }

    .bottom-box .left .btn-title,
    .bottom-box .right .btn-title {
        font-size: 15px;
    }

    .chair-container .tab-btn,
    .chair-container .btn-ceo {
        font-size: 16px;
    }

    .chair-container .aside-box .aside-title {
        width: 23%;
        height: 50px;
        font-size: 16px;
    }

    .chair-container .aside-box .aside-btn {
        font-size: 13px;
        width: 23%;
    }

    .org-title {
        padding: 16px;
        font-size: 16px;
    }

    .chair-container .bottom-box::before {
        top: 11%;
    }

    .chair::before {
        height: 40.7%;
        top: 29.2%;
    }

    .tab-con01::before {
        top: 38.5%;
    }

    .bottom-box .left .youth-headquarters,
    .bottom-box .right .youth-retreat {
        width: 100%;
        flex-direction: column;
    }

    .bottom-box .left .youth-headquarters .list-box,
    .bottom-box .right .youth-retreat .list-box {
        width: 100%;
        height: 40px;
    }

    .management-list::after {
        left: 301%;
    }
    /**인사말**/
    .greeting-container .img-box{
        margin: 0 auto;
    }
    .greeting-container .text-box{
        width: 100%;
        display: flex
    ;
        flex-direction: column;
    }
}

@media (max-width:1085px) {
    nav .list-box ul {
        gap: 75px;
    }

    nav .list-box ul li a {
        font-size: 18px;
    }

    .news-card {
        width: 300px;
    }

    .sns-row {
        width: 100%;
    }

    .card-box {
        width: calc((1039px - 32px) / 2);
    }

    .news-wrap {
        width: 100%;

    }

    .news-wrap .news-row {
        width: 100%;
        gap: 32px;
        display: flex;
    }

    .card-con {
        width: 100%;
        display: flex;
        gap: 32px;
    }

    .news-card {
        flex: 1 1 0;
        min-width: 0;
        box-sizing: border-box;
    }

    .banner-card {
        width: 100%;
    }

    .banner-wrap .card-con {
        width: 60%;
        display: flex;
        gap: 32px;
    }

    .bottom {
        height: 160px;
    }

    .bottom .youth .bg-img {
        width: 160px;
        top: 30%;
    }

    .bottom .teenager .bg-img {
        width: 160px;
        top: 38%;
    }

    /* =================================================
**************** 주요사업소개- 청년사업 css 시작 ****
================================================= */
    .banner-info-content .img-wrap {
        gap: 18px;
    }

    .banner-info-content .content-title .img-wrap {
        padding: 85px 80px;
    }

    .banner-info-content .content-title .img-wrap .banner-inner-card {
        flex-direction: row;
        gap: 120px;
        height: 250px;
    }

    /* =================================================
**************** 주요사업소개- 청소년사업 css 시작 ****
================================================= */

    .camp-image {
        height: 300px;
    }

    .camp-info h3 {
        font-size: 24px;
        line-height: 33px;
    }

    .camp-info p {
        font-size: 15px;
        line-height: 120%;
    }

    .camp-address {
        font-size: 15px;
        height: 57px;
    }

}

/* 1050px 이하 */
@media (max-width: 1050px) {
    .logo-nav {
        padding: 15px 0;
    }

    nav .list-box ul {
        display: none;
    }

    .main-visual .main-text h1 {
        margin-bottom: 18px;
    }

    .main-visual .main-text p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .news-card-list li {
        font-size: 16px;
    }

    .center .center-text .center-right .sns-icon img {
        width: 36px;
    }


    .main-visual .swiper-control .control-box {
        padding-left: 20px;
    }

    .sitemap-content {
        justify-content: center;
    }

    .footer .footer-box:nth-child(1) {
        padding: 0 35px;
    }

    .footer-inner {
        justify-content: space-around;
    }

    .footer-links ul {
        gap: 40px;
    }

    /* =============================================================
*************** 재단소개- 연혁 css 시작 ***************
============================================================= */
    .history-box .left {
        width: 40%;
    }

    .history-group {
        margin-bottom: 0;
    }

    .history-section .history-group .history-desc {
        font-size: 14px;
        padding-left: 14px;
    }
    .main-visual .swiper-control .btn-link01,
    .main-visual .swiper-control .btn-link02{
        margin-left: 20px;
    }
}

@media (max-width: 1020px) {
    .sns-row {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .sns-title,
    .sns-swiper {
        width: 100%;
        min-width: 0;
    }

    .sns-title {
        height: auto;
        padding: 0;
    }

    .sns-wrap {
        flex-direction: column;
        width: 100%;
    }

    .sns-swiper {
        width: 100%;
    }

    .sns-title {
        width: 100%;
        height: auto;
        padding: 0;
        max-width: 100%;
    }

    .sns-title p {
        padding: 20px 35px;
    }

    .card-box iframe,
    .card-box blockquote.instagram-media {
        max-width: none !important;
        margin: 0 !important;
    }

    .card-box {
        width: calc((1039px - 32px) / 2);
    }

    .news-wrap .news-row {
        flex-direction: column;
    }

    .news-wrap .news-row .news-title {
        width: 100%;
        height: auto;
        padding: 0;
        max-width: 100%;
    }

    .news-title .title-box,
    .banner-title .title-box {
        padding: 30px 28px;
    }

    .news-title .title-box h3,
    .banner-title .title-box h3,
    .sns-title .title-box h3 {
        font-size: 28px;
    }

    .news-wrap .news-row .card-con .news-card {
        gap: 52px;
    }

    .news-wrap .news-row .card-con .news-card .news-card-list {
        padding: 0 20px;
    }

    .news-wrap .news-row .card-con .news-card .news-card-list li {
        font-weight: 800;
        font-size: 16px;
    }

    .banner-wrap {
        flex-direction: column;
    }

    .banner-wrap .card-con {
        width: 100%;
    }

    /* =================================================
**************** 주요사업소개- 청년사업 css 시작 ****
================================================= */
    .banner-info-content .img-wrap {
        padding: 55px 20px;
        gap: 24px;
    }

    .banner-info-content .content-title h2 {
        font-size: 36px;
    }

    .banner-info-content .content-title p {
        font-size: 18px;
    }

    .banner-info-content .banner-inner-card {
        height: 300px;
    }

    .banner-info-content .banner-inner-card .card-title {
        font-size: 22px;
    }

    .banner-info-content .banner-inner-card .card-desc-box p {
        font-size: 15px;
    }

    /* =================================================
**************** 주요사업소개- 청소년사업 css 시작 ****
================================================= */
    .program-card {
        flex: 1 1 calc(50% - 20px);
    }

}

@media(max-width:1000px) {
    .footer .footer-box:nth-child(1) {
        padding-left: 20px;
    }

    .footer-left {
        padding-left: 20px;
    }

    .footer-right {
        display: none;
    }

    .footer-inner {
        justify-content: flex-start;
        padding-top: 10px;
    }

    .business-info {
        padding-top: 20px;
        gap: 6px;
    }

    .table thead th {
        font-size: 18px;
    }

    .table tbody th,
    .table tbody td {
        font-size: 16px;
    }

    .table tbody th,
    .table tbody td a {
        padding-left: 20px;
    }

    .table tbody th,
    .table tbody td span {
        font-size: 13px;
        padding: 6px 8px;
    }

    .noticeTable.table tbody tr.fixed-notice th:first-child,
    .noticeTable.table tbody tr.fixed-notice td a {
        padding-left: 20px;
    }

    .info-card-con .info-card-box {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
}

@media(max-width:938px) {

    /* =================================================
**************** 재단소개- 조직도 css 시작 ****
================================================= */
    .ceo-container .left-con .management {
        font-size: 15px;
    }

    .chair-container .aside-box .aside-title {
        font-size: 14px;
    }

    .chair-container .aside-box .aside-btn {
        font-size: 12px;
    }

    .ceo-container .left-con .management-list .list,
    .ceo-container .right-con .list {
        font-size: 13px;
    }

    .management-list .list.line01::after,
    .management-list .list.line03::after {
        left: 110px;
    }
}

@media (max-width: 875px) {
    .center .center-text {
        flex-direction: column;
        align-items: start;
    }

    .center .center-text .center-right {
        gap: 15px;
        flex-direction: row-reverse;
        width: 100%;
        margin-top: 40px;
    }

    .center .center-text .sns-icon {
        display: flex;
        gap: 10px;
    }

    .bottom {
        height: auto;
    }

    .bottom .bt-con {
        display: flex;
        flex-direction: column;
    }

    .bottom .youth {
        width: 100%;
    }

    .bottom .teenager {
        width: 100%;
    }

    .bottom .title01,
    .bottom .title02 {
        height: 100px;
    }

    .bottom .youth .bg-img,
    .bottom .teenager .bg-img {
        width: 200px;
        top: 20%;
    }

    .mb-mascot {
        display: block;
        position: absolute;
        right: 0;
        bottom: 80px;
    }

    /* =============================================================
*************** 재단소개 - 연혁 css 시작 ***************
============================================================= */
    .history-box {
        flex-direction: column;
    }

    .history-box .left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .history-title-wrap {
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .history-bg {
        width: fit-content;
    }

    .history-box .right {
        width: 100%;
    }

    .history-section .history-group .history-desc {
        font-size: 17px;
        padding-left: 30px;
    }

    /* ======================================================================
    *****************주요사업 소개 - 청년사업업 css 시작 *****************
    ====================================================================== */
    .banner-info-content .banner-inner-card {
        max-width: 48%;
    }

    .youth-project-card {
        width: 100%;
    }

    .institution-wrapper .institution-con {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 800px) {

    /* ======================================================================
    *****************주요사업 소개 - 청년사업 css 시작 *****************
    ====================================================================== */
    .youth-support-wrapper .card-container {
        flex-direction: column;
    }

    .support-card img {
        width: clamp(70px, 8vw, 80px);
    }

    .chair {
        width: 100%;
        height: 50px;
        font-size: 17px;
    }

    .chair::before {
        height: 43.7%;
        top: 27.4%;
    }

    .chair-container .tab-con01 {
        padding-top: 0;
    }

    .chair-container .tab-con01 {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .chair-container .tab-btn,
    .chair-container .btn-ceo {
        border-radius: 30px;
        height: 50px;
        width: 100%;
    }

    .tab-con01::before {
        display: none;
    }

    .management::after {
        width: 90%;
    }

    .ceo-container .left-con {
        flex-direction: column-reverse;
    }

    .management-list {
        width: 90%;
    }

    .ceo-container .left-con .management-list .list,
    .ceo-container .right-con .list {
        width: 90%;
    }

    .ceo-container .left-con .management {
        width: 90%;
        margin: 0;
        margin-bottom: 20px;
    }

    .ceo-container .left-con .management-list {
        align-items: center;
    }

    .management-list .list.line01::after {
        content: "";
        width: 1px;
        height: 350%;
        border-right: 1px dashed #ddd;
        margin-left: -1px;
        position: absolute;
        top: -40%;
        left: 50%;
        z-index: -1;
    }

    .management-list .list.line03::after {
        display: none;
    }

    .bottom-box .left .btn-title,
    .bottom-box .right .btn-title {
        width: 100%;
        height: 50px;
    }
}

@media (min-width: 768px) {
    .support-message {
        flex-wrap: nowrap;
    }

    .divider-line {
        display: block;
        flex: 1;
        margin: 0 20px;
        height: 1px;
    }
}

@media (max-width: 767px) {
    .support-message {
        flex-direction: column;
        align-items: flex-start;
    }

    .divider-line {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .right-box {
        align-self: flex-start;
    }

    .top-bar .top-left a {
        border-radius: 0;
    }

    .top-bar .top-right {
        display: none;
    }

    .noticeTable.table.responsive tbody th:before,
    .noticeTable.table.responsive tbody td:before,
    .inquiryTable.table.responsive tbody th:before,
    .inquiryTable.table.responsive tbody td:before {
        display: none;
    }

    .noticeSpan {
        font-size: 12px;
        padding: 1px 6px;
    }

    .noticeTable.table.responsive tbody td:nth-child(2),
    .noticeTable.table.responsive tbody td:nth-child(4),
    .noticeTable.table.responsive tbody td:nth-child(5),
    .inquiryTable.table.responsive tbody td:nth-child(1),
    .inquiryTable.table.responsive tbody td:nth-child(2) {
        display: none;
    }

    .noticeTable.table.responsive tbody td:nth-child(2),
    .inquiryTable.table.responsive tbody td:nth-child(3) {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 4px;
        padding: 0 20px !important;
    }

    .noticeTable.table.responsive tbody td:nth-child(2) a,
    .inquiryTable.table.responsive tbody td:nth-child(3) a {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .noticeTable.table.responsive tbody td:nth-child(2) {
        margin-bottom: 16px;
    }

    .inquiryTable.table.responsive tbody td:nth-child(4) {
        font-size: 15px;
        margin-top: 6px;
        margin-bottom: 16px;
        color: #555;
    }

    .noticeTable.table.responsive tbody td:nth-child(3),
    .inquiryTable.table.responsive tbody td:nth-child(5) {
        color: #777;
        font-size: 16px;
    }

    .table tbody td[data-content="No"] {
        display: none;
    }

    .table thead th,
    .table tbody th,
    .table tbody td,
    .table tfoot th,
    .table tfoot td {
        padding: 4px 20px !important;
        word-break: break-word !important;
        height: auto !important;
    }

    .table tbody th,
    .table tbody td span {
        padding: 4px 8px;
    }

    .table colgroup col {
        width: auto !important;
    }

    table.responsive thead {
        display: none;
    }

    table.responsive colgroup {
        display: none;
    }

    table.responsive tbody tr {
        display: block;
        position: relative;
        border-bottom: 1px solid #dedede;
        padding: 18px 0 14px 0;
    }

    table.responsive tbody tr:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        height: 0;
    }

    table.responsive tbody tr:nth-child(odd) {
        background: #f8f8f8;
    }

    table.responsive tbody th,
    table.responsive tbody td {
        display: block;
        padding: 4px 3%;
        border: none;
        background-color: transparent;
        text-align: left;
        box-sizing: border-box;
        font-size: 15px;
    }

    table.responsive tbody td .subject {
        font-size: 15px;
        font-weight: 600;
        white-space: normal;
        display: inline;
    }

    table.responsive tbody td[data-content="제목"] {
        font-size: 17px;
        font-weight: 600;
    }

    table.responsive tbody th {
        font-weight: 600;
    }

    table.responsive tbody tr:last-child td,
    table.responsive tbody tr:last-child th {
        border-top: none;
    }

    table.responsive tbody th:before,
    table.responsive tbody td:before {
        content: attr(data-content) " : ";
        display: inline;
        font-weight: 500;
        margin-right: 4px;
    }

    table.responsive tfoot tr {
        position: relative;
        display: block;
        border-bottom: 1px solid #dedede;
        padding: 10px 0;
    }

    table.responsive tfoot tr:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        height: 0;
    }

    table.responsive tfoot tr:nth-child(odd) {
        background: #f7f8f9;
    }

    table.responsive tfoot th,
    table.responsive tfoot td {
        display: block;
        padding: 4px 3%;
        border: none;
        background-color: transparent;
        text-align: left;
        box-sizing: border-box;
        font-size: 14px;
    }

    table.responsive tfoot th {
        font-weight: 600;
    }

    table.responsive tfoot tr:last-child td,
    table.responsive tfoot tr:last-child th {
        border-top: none;
    }

    .table tbody th,
    .table tbody td a {
        padding-left: 0;
    }

    .noticeTable.table tbody tr.fixed-notice th:first-child,
    .noticeTable.table tbody tr.fixed-notice td a {
        padding-left: 0;
    }

    .noticeTable.table.responsive tbody td[data-content="작성자"],
    .noticeTable.table.responsive tbody td[data-content="작성일"] {
        display: inline-block;
        width: auto;
        margin-right: 4px;
        font-size: 14px;
        font-weight: 400 !important;
        color: #444;
        vertical-align: middle;
        text-align: left;
    }

    .noticeTable.table.responsive tbody td[data-content="작성일"] {
        margin-right: 0;
        position: relative;
    }

    /* 스크롤 테이블 */
    .table-scroll-wrap .table thead th {
        padding: 18px 20px !important;
    }

    .table-scroll-wrap .responsive {
        min-width: 100% !important;
    }

    .table-scroll-wrap .responsive th,
    .table-scroll-wrap .responsive td {
        text-align: left !important;
    }

    .grid .text .subject,
    .grid .table .subject {
        font-size: 14px;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.1px;
        margin: 0;
        padding: 2px 0;
    }

    /* =============================================================
*************** 주요사업 소개 - 청년사업 css 시작 ***************
============================================================= */
    .info-card-box .title-box {
        justify-content: center;
    }

    .program-card li {
        font-size: 15px;
    }

    .camp-card {
        flex: 1 1 100%;
    }

    /* =================================================
**************** 재단소개- 조직도 css 시작 ****
================================================= */
    .org-tab-content-area section {
        padding: 0;
        border: none;
    }

    .org-table thead {
        display: none;
    }

    .org-table,
    .org-table tbody,
    .org-table tr,
    .org-table td {
        display: block;
    }

    .org-table tr {
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 12px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .org-table td {
        text-align: left !important;
        padding: 8px 10px;
        border: none;
        position: relative;
        font-size: 14px;
        line-height: 1.5;
        border: none;
    }

    .org-table td .name {
        font-weight: bold;
        margin-right: 10px;
    }

    .org-table td .position {
        color: #888;
    }

    .org-table td .name,
    .org-table td .position {
        display: inline-block;
        margin-bottom: 0;
    }

    .org-table tbody td {
        border: none;
    }

    .chair-container .aside-box .aside-title,
    .chair-container .aside-box .aside-btn {
        width: 100%;
    }

    .chair-container .aside-box .aside-btn {
        font-size: 14px;
    }
}


/* 700px 이하 */
@media (max-width: 700px) {
    .top-bar .top-left a {
        font-size: 14px;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
    }

    .main-visual {
        padding: 0;
    }
    .main-visual .main-image {
        height: 280px !important;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        display: block;
    }
    .news-wrap .news-row .card-con .news-card .news-card-list li {
        font-size: 15px;
    }

    .news-wrap .news-row .card-con .news-card {
        height: auto;
    }

    .business-info p {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footer {
        height: auto;
        flex-direction: column;
    }

    .footer-links {
        padding: 0 20px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-links ul {
        height: 55px;
        padding: 10px 20px;
        width: 100%;
    }

    .footer .footer-left .business-info {
        padding-top: 10px;
        font-size: 14px;
    }

    .footer .copyright {
        font-size: 13px;
    }

    .footer-box {
        max-width: none;
        width: auto;
        margin: 0;
        padding: 0 20px;
        flex-direction: column;
    }

    .footer .footer-box:nth-child(1) {
        padding: 0;
    }

    .footer-menu {
        width: 100%;
        height: 55px;
    }

    .footer-menu img {
        width: 20px;
    }

    .footer-menu p {
        font-size: 15px;
    }

    .footer-left {
        padding-left: 0;
    }

    .footer-inner {
        justify-content: flex-start;
    }

    /**공지/알림 서브페이지**/
    .sub-banner .sub-bg {
        height: 250px;
    }

    .sub-banner-inner .title {
        padding-left: 20px;
        gap: 25px;
    }

    .sub-banner-inner .title .sub-banner-text {
        gap: 10px;
    }

    .sub-banner-inner .title .sub-banner-text p {
        font-size: 14px;
    }

    .sub-banner-inner .title .sub-banner-text h2 {
        font-size: 38px;
    }

    .custom-tab {
        height: 50px;
    }
    .custom-tab a{
        font-size: 14px;
    }
    .custom-tab-content h2 {
        margin-top: 28px;
        font-size: 34px;
    }

    .breadcrumb li {
        font-size: 14px;
    }

    .breadcrumb img {
        width: 20px;
    }

    .indicator {
        width: 100%;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .indicator .count {
        text-align: start;
        width: 100%;
        font-size: 14px;
    }

    .board-filter {
        flex-wrap: wrap;
        width: 100%;
        gap: 6px;
        flex-direction: row;
        margin-bottom: 24px;
    }

    .board-filter select {
        min-width: 0;
        flex: 1 1 120px;
        width: 100%;
        box-sizing: border-box;
    }

    .board-filter .search-group {
        flex: 1 1 100%;
        width: 100%;
        display: flex;
        gap: 6px;
    }

    .board-filter .search-group input[type="text"] {
        max-width: initial;
        width: 100%;
    }

    .board-filter input[type="text"] {
        flex: 1 1 0;
        min-width: 0;
        width: 0;
    }

    .board-filter button[type="submit"] {
        flex: 0 0 auto;
        width: auto;
    }

    .noticeTable.table tbody tr.fixed-notice span,
    .table tbody th,
    .table tbody td span {
        font-size: 12px;
        padding: 2px 8px;
    }

    .noticeTable.table.responsive tbody td:nth-child(2) {
        margin-bottom: 12px;
    }

    .page-btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    #prevPage,
    #nextPage {
        padding: 10px 14px;
        font-size: 14px;

    }

    /* =================================================================
****************** 주요사업소개 - 청년사업 css **************
================================================================= */
    .info-card-con {
        gap: 18px;
    }

    .info-card-con .info-card-box {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    .sub03-card-con {
        gap: 18px;
        justify-content: center;
    }

    .sub03-card-con .card-item {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }



    .program-card li {
        font-size: 15px;
    }

    .institution-wrapper .institution-box-container {
        flex-direction: column;
        gap: 50px;
    }

    .youth-project-wrapper {
        margin-top: 80px;
    }

    .youth-project-container {
        margin-bottom: 86px;
    }

    .youth-support-wrapper {
        margin-bottom: 86px;
    }

    .institution-wrapper {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .youth-project-card img {

        flex: 1 1 80%;
        max-width: 80%;
        min-width: 0;
    }

    /* =================================================================
****************** 재단소개 - 조직도 css **************
================================================================= */
    .chair::before {
        top: 27%;
    }

    .org-tab-scroll-wrap {
        padding: 10px 0;
    }
    /**인사말**/
    .greeting-container{
        padding-top: 20px;
    }
    .greeting-container .text-box h2{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .greeting-container .text-box .welcome-txt{
        font-size: 22px;
    }
    .greeting-container .text-box p img{
        width: 18px;
        height: 16px;
    }
    .greeting-container .text-box strong{
        font-size: 20px;
    }
    .greeting-container .text-box p{
        font-size: 16px;
    }
    /* 커스텀 내비게이션 숨김 */
    .main-visual .swiper-control .main-nav,
    .banner-nav,
    .sns-nav {
        display: none !important;
    }
    /* Swiper 기본 버튼 보이게 */
    .swiper-button-next,
    .swiper-button-prev {
        display: block !important;
    }
    .swiper-button-prev,
    .swiper-button-next {
        background-color: rgba(0, 0, 0, 0.6) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 10;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px !important;
        color: #fff !important;
        position: static !important;
        transform: none !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    .main-visual .swiper-control{
        display: none;
    }
}

@media (max-width: 640px) {
    .news-wrap .news-row .card-con {
        flex-direction: column;
    }

    .news-wrap .news-row .card-con .news-card {
        width: 100%;
    }

    .bottom .youth .bg-img,
    .bottom .teenager .bg-img {
        width: 150px;
        top: 20%;
    }

    /* =================================================================
****************** 재단소개 - 조직도 css **************
================================================================= */
    .chair::before,
    .management::after,
    .management-list .list.line01::after,
    .management-list .list.line03::after,
    .right-con .list.line04::after,
    .right-con .list.line05::after,
    .chair-container .bottom-box::before,
    .bottom-box .left .btn-title::before,
    .bottom-box .right .btn-title::before,
    .bottom-box .youth-retreat .list-box.line11::after,
    .bottom-box .youth-retreat .list-box.line12::after,
    .bottom-box .youth-retreat .list-box.line13::after,
    .bottom-box .youth-retreat .list-box.line14::after,
    .bottom-box .youth-retreat .list-box.line15::after,
    .bottom-box .youth-retreat .list-box.line16::after,
    .bottom-box .youth-headquarters .list-box.line06::after,
    .bottom-box .youth-headquarters .list-box.line07::after,
    .bottom-box .youth-headquarters .list-box.line09::after,
    .bottom-box .youth-headquarters .list-box.line10::after {
        display: none;
    }

    .ceo-container {
        flex-direction: column;
    }

    .ceo-container .left-con,
    .chair-container .aside-box {
        width: 100%;
        margin-bottom: 40px;
    }

    .ceo-container .left-con .management,
    .ceo-container .right-con,
    .ceo-container .left-con .management-list .list,
    .ceo-container .right-con .list,
    .bottom-box .left,
    .bottom-box .right,
    .bottom-box .left .btn-title,
    .bottom-box .right .btn-title {
        width: 100%;
        font-size: 16px;
    }

    .ceo-container .right-con .list-box {
        gap: 20px;
    }

    .chair-container .bottom-box {
        flex-direction: column;
        width: 100%;
    }

    .management-list,
    .chair-container .aside-box .aside-btn,
    .chair-container .aside-box .aside-title {
        width: 100%;
    }

    .chair-container .aside-box .aside-btn {
        font-size: 14px;
    }

    .ceo-container .left-con .management,
    .ceo-container .right-con .list {
        background-color: #0b2b53;
        color: white;
    }

    .bottom-box {
        padding-top: 40px;
    }

    .bottom-box .left .youth-headquarters .list-box button,
    .bottom-box .right .youth-retreat .list-box button {
        font-size: 15px;
    }

    .bottom-box .left .youth-headquarters .list-box,
    .bottom-box .right .youth-retreat .list-box {
        height: 45px;
    }
}

@media(max-width : 600px) {
    .top-bar .top-left {
        width: 100%;
    }

    .card-box {
        height: auto;
    }

    .news-wrap .news-row .card-con .news-card {
        flex: none;
        min-width: 0;
        height: auto;
        box-sizing: border-box;
        width: 100%;
    }

    .banner-con {
        flex-direction: column;
    }

    .banner-nav {
        display: none;
    }

    .banner-controls {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .sns-swiper .swiper-slide {
        display: flex;
        gap: 20px;
    }

    /* ====================================================
****************** 게시판 디테일 페이지****************
==================================================== */
    .post-meta .meta-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* =============================================================
*************** 재단소개 - 연혁 css 시작 ***************
============================================================= */
    .history-bg {
        width: 100%;
    }

    /* =============================================================
*************** 주요사업소개 - 청년사업 css 시작 ***************
============================================================= */
    .tab-title {
        margin-bottom: 0;
    }

    .banner-info-content .img-wrap {
        gap: 30px;
        padding: 30px 30px;
    }

    .banner-info-content .banner-inner-card {
        max-width: 100%;
        flex: 1 1 100%;
        min-width: 0;
        height: 300px;
    }

    .sub03-card-con {
        gap: 18px;
        justify-content: center;
    }

    .sub03-card-con .card-item {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        flex: 1 1 100%;
    }

    .youth-project-content p {
        font-size: 16px;
    }

    .support-card img {
        width: clamp(70px, 8vw, 80px);
        margin-left: 0;
        margin-top: 10px;
    }

    .sub03-card-con {
        margin-bottom: 90px;
    }

    .youth-project-content p {
        text-align: center;
    }

    .custom-tab-content h2 {
        font-size: 34px;
    }

    /* =============================================================
*************** 주요사업 소개 - 청소년사업 css 시작 ***************
============================================================= */
    .card-item02 {
        flex: 1 1 50%;
        max-width: 50%;
        min-width: 0;
    }

    .content-title {
        font-size: 34px;
    }

    .program-card {
        flex: 1 1 100%;
    }

    .specialized-youth-program>* {
        max-width: 100%
    }

}

@media (max-width: 500px) {
    .nav-buttons button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .news-card-header h3 {
        font-size: 19px;
    }

    .news-card .desc h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .news-card .desc time {
        font-size: 13px;
    }

    .news-wrap .news-row .card-con .news-card {
        gap: 12px;
    }

    .sns-nav {
        display: none;
    }

    .news-title .title-box,
    .banner-title .title-box {
        gap: 1px;
    }

    .sns-title .title-box {
        gap: 1px;
    }

    .bottom .title01,
    .bottom .title02 {
        padding-left: 35px;
    }

    .footer {
        height: auto;
    }

    .business-info {
        padding-top: 20px;
    }

    /* =======================================================
    ****************** 게시판 디테일 페이지 css **************
    ======================================================= */
    .detail-banner .sub-banner-text h1 {
        font-size: 38px;
        padding-bottom: 42px;
    }

    #detail-content h2 {
        padding-top: 10px;
        white-space: unset;
        line-height: 1.3;
    }

    #detail-content .post-meta {
        padding-bottom: 40px;
        margin-bottom: 35px;
    }

    #detail-content ul li {
        font-size: 14px;
    }

    #detail-content .detail-body p {
        font-size: 14px;
    }

    .detail-cont-body button p {
        font-size: 18px;
    }

    /* =============================================================
*************** 재단소개 - 연혁 css 시작 ***************
============================================================= */
    .history-section .history-group .history-date {
        font-size: 14px;
    }

    .history-section .history-group .history-desc {
        font-size: 15px;
        padding-left: 10px;
    }

    /* =============================================================
*************** 주요사업소개 - 청년사업 css 시작 ***************
============================================================= */
    .sub03-card-con {
        margin-top: 47px;
    }

    .quote-box {
        margin-top: 0;
    }

    .quote-box .quote-mark {
        font-size: 40px;
    }


}

/* 390px 이하 */
@media (max-width: 450px) {
    nav {
        gap: 0;
    }

    .logo-nav {
        height: 60px;
        padding: 0 20px;
        max-width: none;
        width: auto;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }

    .menu-toggle .bar-box {
        width: 50%;
        left: 37%;
    }

    .menu-toggle .bar {
        width: 100%;
        margin: 4px 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle .bar:nth-child(2) {
        width: 60%;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .top-bar .top-left {
        width: 100%;
    }

    .top-bar .top-left a {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        padding: 9px 0;
        font-size: 13px;
    }

    .main-visual .main-image {
        height: 440px;
    }

    .main-visual .goto-btn img {
        width: 20px;
    }

    .main-visual .swiper-control .control-box .right-control .swiper-playpause {
        margin-left: 15px;
    }

    .main-visual .swiper-control .control-box .right-control .swiper-pagination-bullet {
        width: 10px !important;
        height: 6px !important;
    }

    .main-visual .swiper-control .control-box .right-control .swiper-pagination-bullet-active {
        width: 26px !important;
        height: 6px !important;
    }

    .news-card-header h3 {
        font-size: 19px;
    }

    .news-title button,
    .banner-title button {
        align-items: center;
    }

    .news-title a,
    .banner-title a,
    .sns-title a {
        font-size: 12px;
    }

    .news-title .title-box,
    .sns-title .title-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 11px 21px;
        box-sizing: border-box;
        height: 55px;
    }

    .news-title .title-box h3,
    .banner-title .title-box h3,
    .sns-title .title-box h3 {
        font-size: 22px;
    }

    .news-title a,
    .banner-title a,
    .sns-title a {
        margin: 0;
    }
    .news-title,
    .news-card,
    .card-box,
    .sns-title,
    .banner-con,
    .banner-card{
        border-radius: 12px;
    }
    .sns-title .title-box h3 img{
        width: 24px;
    }
    .card-box{
        height:350px;
        width:100%;
        border: 1px solid #ccc;
        box-sizing: border-box;

    }
    .news-wrap .news-row,
    .sns-wrap .sns-row {
        gap: 11px;
    }

    .news-wrap .news-row .card-con {
        gap: 22px;
    }

    .news-wrap .news-row .card-con .news-card {
        gap: 15px;
        padding: 15px 24px;
    }

    .news-card-list {
        gap: 14px;
    }

    .news-card-list li:nth-child(n+4) {
        display: none;
    }

    .center .center-text .sns-icon {
        gap: 4px;
    }

    .center .center-text .center-right .sns-icon img {
        width: 26px;
    }

    .center .center-text h2 {
        font-size: 24px;
        line-height: 32px;
        padding-top: 43px;
    }

    .sns-nav {
        display: none;
    }

    .sns-swiper {
        width: 100%;
    }

    .sns-swiper .swiper-slide {
        gap: 9px;
        flex-direction: column;
    }

    .banner-left,
    .banner_swiper-box {
        min-width: auto;
    }

    .banner-left h3 {
        font-size: 22px;
    }

    .banner-wrap {
        padding-top: 22px;
        gap: 22px;
    }

    .banner-wrap .card-con .banner-card .banner-card-header .card-title h3 {
        font-size: 22px;
    }
    .banner-con{
        height: auto;
    }
    .banner-card-content p{
        font-size: 14px;
    }

    .bottom .bt-con .title01,
    .bottom .bt-con .title02 {
        padding-left: 24px;
        padding-top: 41px;
    }

    .bottom .bt-con .youth .bg-img {
        width: 170px;
        top: 19%;
        right: -5%;
    }

    .bottom .bt-con .teenager .bg-img {
        width: 170px;
        top: 20%;
        right: -11%;
    }

    .bottom .bt-con .title01,
    .title02 {
        gap: 8px;
    }

    .bottom .bt-con .title01 .title-btn h2,
    .title02 .title-btn h2 {
        font-size: 23px;

    }

    .bottom .bt-con .title01 p,
    .title02 p {
        font-size: 12px;
    }

    .mb-sitemap-container .mb-sitemap-login img {
        width: 20px;
    }

    .mb-sitemap-container .mb-sitemap-login a {
        font-size: 17px;
    }

    .mb-sitemap-container .icon-goto-wrap .icon-goto p {
        font-size: 13px;
    }

    .footer {
        height: auto;
    }

    .footer-box {
        display: flex;
        align-items: center;
    }

    .footer-box ul {
        gap: 15px;
        height: 55px;
    }

    .footer-box ul li a {
        font-size: 14px;
    }

    .footer-right {
        display: none;
    }

    .footer-left .business-info p {
        gap: 3px;
        font-size: 13px;
    }

    .footer-left .contact-info .contact-item {
        gap: 15px;
        font-size: 13px;
    }

    .footer-left .contact-info .contact-item p {
        font-size: 13px;
    }

    .footer-menu p {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
    }

    .mb-mascot {
        bottom: 50px;
    }

    .sub-banner-text h1 {
        font-size: 38px;
    }

    /* ============================================================
******************  게시판 상세페이지 css시작 *****************
============================================================ */
    .detail-banner {
        gap: 16px;
        padding-top: 40px;
    }

    #detail-content .post-meta {
        gap: 10px;
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    #detail-content ul li {
        display: flex;
        font-size: 12px;
        align-items: center;
    }

    .detail-cont-body button p {
        font-size: 16px;
    }

    /* =============================================================
***************재단소개 - 연혁 css 시작 ***************
============================================================= */
    .history-title {
        margin-top: 10px;
    }

    .history-title-wrap {
        margin-bottom: 30px;
    }

    .history-box {
        gap: 10px;
    }

    .history-section .history-group .history-desc {
        font-size: 13px;
        padding-left: 10px;
        width: 200px;
    }

    .history-title-main,
    .history-title-main strong,
    .history-title-sub .highlight {
        font-size: 30px;
    }

    .history-bg {
        width: 80%;
    }

    .history-section .history-group .history-year {
        margin-top: 28px;
    }

    /* =============================================================
*************** 주요사업소개 - 청년사업 css 시작 ***************
============================================================= */
    .info-card-con .info-card-box .info-card-icon {
        width: 80px;
        height: 80px;
    }

    /* .youth-project-card img {
        width: 50%;
    } */

    .youth-project-content h3 {
        font-size: 24px;
    }

    .youth-project-content p {
        font-size: 15px;
        padding-bottom: 0;
    }

    .sub03-card-con {
        margin-bottom: 90px;
        margin-top: 40px;
    }

    .content-title {
        margin-bottom: 30px;
    }

    .info-card-wrap {
        margin-bottom: 90px;
    }

    .banner-info-content {
        margin-bottom: 90px;
    }

    .banner-info-content .banner-inner-card .banner-inner-icon {
        width: 65px;
        height: auto;

    }

    .youth-project-container {
        margin-bottom: 90px;
    }

    .support-card {
        padding: 0 20px;
        height: 150px;
    }

    .support-card img {
        width: clamp(40px, 8vw, 80px);
    }

    .institution-box img {
        width: 320px;
    }

    .institution-wrapper {
        padding-top: 70px;
    }

    /* =============================================================
*************** 주요사업 소개 - 청소년사업 css 시작 ***************
============================================================= */
    .card-item02 {
        flex: 1 1 80%;
        max-width: 80%;
        min-width: 0;
    }

    .camp-image {
        height: 250px;
    }

    .camp-info {
        padding: 35px 28px;
    }

    .camp-info h3 {
        font-size: 22px;
        line-height: 29px;
    }

    .camp-info p {
        font-size: 13px;
    }

    .camp-address {
        font-size: 13px;
        height: 50px;
    }

    .camp-address .location {
        width: 16px;
    }

    /* =============================================================
***************재단소개 - 조직도 css 시작 ***************
============================================================= */
    .org-tab-scroll-wrap {
        top: 14%;
    }
    /**인사말**/
    .greeting-container .text-box h2{
        font-size: 26px;
    }
    .greeting-container .text-box h2::after{
        margin-top: 25px;
    }
    .greeting-container .text-box .welcome-txt{
        font-size: 18px;
    }
    .greeting-container .text-box p img{
        padding-left: 18px;
        padding-right: 18px;
    }
    .greeting-container .text-box strong{
        font-size: 17px;
    }
    .greeting-container .text-box p{
        font-size: 14px;
    }
    .greeting-container .signature{
        font-size: 17px;
    }
    .greeting-container .sign{
        font-size: 17px;
    }
    .greeting-container .img-box {
        flex: 1 1 280px;
        max-width: 280px;
    }
    .main-visual .swiper-control .btn-link01,
    .main-visual .swiper-control .btn-link02{
        width: 190px;
        height: 47px;
    }
    .main-visual .swiper-control .btn-link01 a {
        font-size: 12px;
    }
    .main-visual .swiper-control .btn-link01 a img{
        width: 20px;
    }
    .main-visual .main-image{
        height: 200px !important;
        border-radius: 0;
    }
}

/* =========================
   미디어쿼리 (큰 화면 → 작은 화면 순)
========================= */
@media (max-width: 1720px) and (min-width: 1420px) {
    .main-visual .swiper-control {
        transform: translate(-46%, 10px);
    }
}


@media (max-width: 1420px) and (min-width: 700px) {
    .main-visual .swiper-control {
        transform: translate(-41%, 10px);
    }
}


@media (max-width: 1250px) and (min-width: 701px) {
    .sub-banner .sub-bg {
        height: 350px;
    }
    .banner_swiper-box{
        flex: 1 1 120%;
    }
}
@media (max-width: 1020px) and (min-width: 501px) {
    .banner-con {
        width: 100%;
        max-width: none;
        padding: 35px 34px;
        height: auto;
    }
    .banner_swiper-box{
        max-width: 530px;
    }
}

@media (max-width: 1000px) and (min-width: 701px) {
    .main-visual .swiper-slide img {
        height: auto !important;
    }
}


@media (max-width: 1000px) and (min-width: 500px) {

    .banner-con {
        width: 100%;
        max-width: none;
        padding: 35px 34px;
        height: auto;
    }

    .banner_swiper-box {
        max-width: none;
        flex: 1 1 95%;
    }

    .banner-wrap .card-con {
        width: 100%;
    }

    .banner-card-content iframe{
        height: auto;
    }
}

@media (max-width: 700px) and (min-width: 550px) {
    .main-visual .main-text h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .main-visual .main-text p {
        font-size: 16px;
    }

}

@media (max-width: 699px) and (min-width: 630px) {
    .main-visual .swiper-control {
        transform: translate(-50%, -60px);
    }

}
