@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

@font-face {
  font-family: "GmarketSans";
  font-weight: 300;
  src: url(../GmarketSansLight.woff2) format(woff);
}
@font-face {
  font-family: "GmarketSans";
  font-weight: 500;
  src: url(../GmarketSansMedium.woff2) format(woff);
}
@font-face {
  font-family: "GmarketSans";
  font-weight: 800;
  src: url(../GmarketSansBold.woff2) format(woff);
}



:root{
    --primary:#0f172a;
    --secondary:#334155;
    --accent:cadetblue ;
    --accent-dark:#C5A065;
    --light:#f8fafc;
    --white:#ffffff;
    --text:#1e293b;
    --line:#e2e8f0;
    --radius:18px;
    --shadow:0 16px 40px rgba(15, 23, 42, 0.08);
}

/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Pretendard-Regular', sans-serif;
    color:var(--text);
    line-height:1.7;
    word-break:keep-all;
    background:#fff;  
}

body.menu-open{
    overflow:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

ul, li{
    list-style:none;
    margin:0;
    padding:0;
}

#leadersWrap{
    overflow-x:hidden;
    overflow-y:visible;
}

.leaders-container{
    width:min(100% - 40px, 1400px);
    margin:0 auto;
}

.custom-shape-divider-bottom-1775841608 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 99
}

.custom-shape-divider-bottom-1775841608 svg {
    position: relative;
    display: block;
    width: calc(176% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1775841608 .shape-fill {
    fill: #FFFFFF;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1775841608 svg {
        width: calc(216% + 1.3px);
        height: 150px;
    }
}


/* =========================
   HEADER
========================= */
.leaders-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,0.98);
    border-bottom:1px solid rgba(226,232,240,.8);
    transition:background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.leaders-header.is-scroll{
    background:rgba(31,61,92,.92);
    backdrop-filter:blur(10px);
    border-bottom-color:rgba(255,255,255,.08);
    box-shadow:0 10px 28px rgba(15,23,42,.18);
}

.leaders-inner{
    width:min(100% - 40px, 1400px);
    margin:0 auto;
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.leaders-logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
}

.leaders-logo a{
    display:flex;
    align-items:center;
    height:88px;
    text-decoration:none;
}

.leaders-logo__imgbox{
    position:relative;
    display:block;
    width:220px;
    height:60px;
    overflow:hidden;
}

.leaders-logo .logo-img{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    max-width:220px;
    max-height:60px;
    width:auto;
    height:auto;
    display:block;
    transition:opacity .25s ease;
}

/* 기본: 검정 로고만 보이기 */
.leaders-logo .logo-black{
    opacity:1;
    z-index:2;
}

.leaders-logo .logo-white{
    opacity:0;
    z-index:1;
}

/* 스크롤 시: 흰색 로고만 보이기 */
.leaders-header.is-scroll .leaders-logo .logo-black{
    opacity:0;
}

.leaders-header.is-scroll .leaders-logo .logo-white{
    opacity:1;
}

@media (max-width:768px){
    .leaders-logo a{
        height:78px;
    }

    .leaders-logo__imgbox{
        width:170px;
        height:48px;
    }

    .leaders-logo .logo-img{
        max-width:170px;
        max-height:48px;
    }
}

/* =========================
   BUTTON
========================= */
.leaders-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 28px;
    border-radius:8px;
    background:var(--primary);
    color:#fff;
    font-size:.95rem;
    font-weight:700;
    transition:all .25s ease;
    border:1px solid var(--primary);
}

.leaders-btn:hover{
    transform:translateY(-2px);
}

.leaders-btn--line{
    background:transparent;
    border-color:rgba(255,255,255,.6);
    color:#fff;
}

.leaders-btn--line:hover{
    background:#fff;
    border-color:#fff;
    color:var(--primary);
}

.leaders-btn--header{
    min-height:46px;
    padding:0 22px;
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}

.leaders-btn--header:hover{
    background:var(--accent-dark);
    border-color:var(--accent-dark);
    color:#fff;
}

.leaders-btn--white{
    background:#fff;
    color:var(--primary);
    border-color:#fff;
}

.leaders-btn--white:hover{
    background:transparent;
    color:#fff;
    border-color:#fff;
}

.leaders-btn--mobile{
    margin-top:16px;
    width:100%;
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}

.leaders-btn--mobile:hover{
    background:var(--accent-dark);
    border-color:var(--accent-dark);
}

/* =========================
   HEADER ACTIONS
========================= */
.leaders-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex:0 0 auto;
}

/* =========================
   PC MENU
========================= */
.leaders-nav{
    margin-left:auto;
    position:relative;
    display:flex;
    align-items:center;
    height:100%;
}

.leaders-gnb{
    display:flex;
    align-items:center;
    height:100%;
    gap:42px;
    margin:0;
    padding:0;
}

.leaders-gnb-item{
    position:relative;
    display:flex;
    align-items:center;
    height:100%;
}

.leaders-gnb-item > a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:88px;
    line-height:1;
    padding:0;
    font-size:1.15rem;
    font-weight:800;
    color:#111;
    transition:color .2s ease;
    white-space:nowrap;
    position:relative;
    z-index:2;
    box-sizing:border-box;
}

.leaders-gnb-item > a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:18px;
    width:0;
    height:3px;
    background:var(--accent);
    transition:width .25s ease;
}

.leaders-gnb-item:hover > a{
    color:var(--accent);
}

.leaders-gnb-item:hover > a::after{
    width:100%;
}

.leaders-header.is-scroll .leaders-gnb-item > a{
    color:#fff;
}

.leaders-header.is-scroll .leaders-gnb-item:hover > a{
    color:var(--accent);
}

.leaders-header.is-scroll .leaders-gnb-item > a::after{
    background:var(--accent);
}

#leadersHeader .leaders-inner{
    display:flex;
    align-items:center;
}

/* =========================
   SUB DROPDOWN
========================= */
.leaders-sub-wrap{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    padding-top:8px;
    opacity:0;
    visibility:hidden;
    transition:all .22s ease;
    z-index:1005;
}

.leaders-gnb-item:hover .leaders-sub-wrap{
    opacity:1;
    visibility:visible;
    padding-top:0;
}

.leaders-submenu{
    min-width:180px;
    background:#fff;
    border:1px solid var(--accent);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    padding:6px 0;
    border-radius:0;
}

.leaders-submenu li{
    display:block;
}

.leaders-submenu a{
    display:block;
    padding:10px 16px;
    font-size:15px;
    font-weight:500;
    color:#111;
    line-height:1.5;
    transition:all .18s ease;
    white-space:nowrap;
}

.leaders-submenu a:hover{
    background:var(--accent);
    color:#fff;
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.leaders-menu-btn{
    width:46px;
    height:46px;
    border:0;
    background:transparent;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    padding:0;
}

.leaders-menu-btn span{
    display:block;
    width:24px;
    height:2px;
    background:#111;
    margin:0 auto;
    transition:all .25s ease;
}

.leaders-header.is-scroll .leaders-menu-btn span{
    background:#fff;
}

/* =========================
   MOBILE NAV
========================= */
.leaders-dim{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.45);
    opacity:0;
    visibility:hidden;
    transition:all .25s ease;
    z-index:1001;
}

.leaders-dim.is-open{
    opacity:1;
    visibility:visible;
}

.leaders-mobile-nav{
    position:fixed;
    top:0;
    right:-340px;
    width:min(86vw, 320px);
    height:100dvh;
    background:#fff;
    z-index:1002;
    padding:22px 22px 30px;
    box-shadow:-10px 0 30px rgba(0,0,0,.12);
    transition:right .28s ease;
    overflow-y:auto;
}

.leaders-mobile-nav.is-open{
    right:0;
}

.leaders-mobile-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:24px;
    padding-bottom:16px;
    border-bottom:1px solid var(--line);
}

.leaders-mobile-top strong{
    color:var(--primary);
    font-size:1rem;
}

.leaders-mobile-close{
    border:0;
    background:transparent;
    font-size:32px;
    line-height:1;
    cursor:pointer;
    color:var(--primary);
}

.leaders-mobile-links{
    display:flex;
    flex-direction:column;
    gap:0;
}

.leaders-mobile-menu > li{
    border-bottom:1px solid #e5e7eb;
}

.leaders-mobile-item > a{
    display:block;
    padding:14px 4px;
    font-size:17px;
    font-weight:700;
    color:#111827;
}

.leaders-mobile-item > a:hover{
    color:var(--accent);
}

.leaders-mobile-submenu{
    padding:0 0 10px 12px;
}

.leaders-mobile-submenu li a{
    display:block;
    padding:9px 4px;
    font-size:15px;
    color:#475569;
    font-weight:500;
}

.leaders-mobile-submenu li a:hover{
    color:var(--accent);
}

/* =========================
   CONTAINER
========================= */
#leadersContainer{
    padding-top:38px;
}

.subbbs_title { width: 100%; text-align: center; color: #333; font-size: 35px; font-family: 'Paperozi'; font-weight: 500  }
.subbbs_title span { font-size: 16px}

/* =========================
   HERO
========================= */
.leaders-hero{
    position:relative;
    min-height:calc(100vh - 88px);
    display:flex;
    align-items:center;
    background:var(--primary);
}

.leaders-hero-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(15,23,42,.55), rgba(15,23,42,.50)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    transform:scale(1.03);
}

.leaders-hero__content{
    position:relative;
    z-index:1;
    color:#fff;
    padding:120px 0 110px;
    max-width:900px;
}

.leaders-hero__eyebrow{
    display:inline-block;
    margin-bottom:18px;
    color:#e2e8f0;
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:700;
}

.leaders-hero h2{
    font-size:clamp(2.3rem, 5vw, 4.5rem);
    line-height:1.18;
    font-weight:900;
    letter-spacing:-1.8px;
    margin-bottom:24px;
}

.leaders-hero h2 span{
    color:var(--accent);
}

.leaders-hero p{
    font-size:clamp(1rem, 2vw, 1.25rem);
    color:#e2e8f0;
    font-weight:300;
    margin-bottom:38px;
}

.leaders-hero__buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* =========================
   PARTNERS
========================= */
.leaders-partners{
    padding:56px 0;
    background:#fff;
    border-bottom:1px solid #f1f5f9;
}

.leaders-sec-mini{
    text-align:center;
    font-size:.84rem;
    color:#94a3b8;
    letter-spacing:2px;
    font-weight:800;
    margin-bottom:24px;
}

.leaders-partner-list{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}

.leaders-partner-item{
    padding:12px 22px;
    border:1px solid var(--line);
    border-radius:999px;
    font-size:1rem;
    font-weight:700;
    color:#64748b;
    background:#fff;
    transition:all .2s ease;
}

.leaders-partner-item:hover{
    border-color:var(--accent);
    color:var(--accent);
    background:#fffaf5;
}

/* =========================
   SECTION TITLE
========================= */
.leaders-features,
.leaders-projects{
    padding:80px 0 10px;
}

.leaders-features{
    background:var(--light);
}

.leaders-sec-title{
    text-align:center;
    margin-bottom:64px;
}

.leaders-sec-title h2{
    font-size:clamp(2rem, 3vw, 3rem);
    line-height:1.2;
    color:var(--primary);
    font-weight:900;
    letter-spacing:-1px;
    margin-bottom:14px;
}

.leaders-sec-title p{
    color:var(--secondary);
    font-size:1.08rem;
}

.leaders-photo { width: 100%; }

/* =========================
   FEATURE CARD
========================= */
.leaders-feature-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
}

.leaders-feature-card{
    position:relative;
    padding:42px 34px;
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    overflow:hidden;
    transition:all .25s ease;
}

.leaders-feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:var(--accent);
    opacity:0;
    transition:opacity .25s ease;
}

.leaders-feature-card:hover{
    transform:translateY(-8px);
}

.leaders-feature-card:hover::before{
    opacity:1;
}

.leaders-feature-no{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border-radius:50%;
    background:#fff7ed;
    color:var(--accent);
    font-weight:900;
    margin-bottom:22px;
    border:1px solid #fed7aa;
}

.leaders-feature-card h3{
    font-size:1.45rem;
    line-height:1.35;
    color:var(--primary);
    font-weight:800;
    margin-bottom:14px;
}

.leaders-feature-card p{
    color:#64748b;
    font-size:1rem;
}

/* =========================
   PROJECTS
========================= */
.leaders-category-head{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin:58px 0 24px;
    padding-bottom:14px;
    border-bottom:2px solid var(--primary);
}

.leaders-category-head h3{
    font-size:1.7rem;
    color:var(--primary);
    font-weight:900;
    letter-spacing:-.5px;
}

.leaders-category-head span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:var(--accent);
    color:#fff;
    font-size:.82rem;
    font-weight:700;
}

.leaders-project-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
}

.leaders-project-card{
    border:1px solid var(--line);
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    transition:all .22s ease;
}

.leaders-project-card:hover{
    transform:translateY(-6px);
    border-color:var(--accent);
    box-shadow:0 16px 32px rgba(15,23,42,.07);
}

.leaders-project-body{
    padding:28px 26px;
}

.leaders-client-badge{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    border-radius:8px;
    background:#fff7ed;
    color:var(--accent);
    font-size:.82rem;
    font-weight:800;
    margin-bottom:14px;
    border:1px solid #fed7aa;
}

.leaders-project-body h4{
    font-size:1.18rem;
    line-height:1.45;
    letter-spacing:-.4px;
    color:var(--text);
    font-weight:800;
    margin-bottom:10px;
}

.leaders-project-body p{
    color:#64748b;
    font-size:.96rem;
}

/* =========================
   SUB VISUAL
========================= */
.leaders-sub-visual{
    position:relative;
    height:240px;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
    overflow:hidden;
    margin-top:88px;
}

.leaders-sub-visual__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.leaders-sub-visual__inner{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.leaders-sub-visual__inner h2{
    font-size:48px;
    font-weight:800;
    color:#fff;
    letter-spacing:-1px;
}

/* =========================
   SUB TABS
========================= */
.leaders-sub-tabs-wrap{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
}

.leaders-sub-tabs{
    min-height:84px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    padding:18px 0;
}

.leaders-sub-tabs li a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 24px;
    border:1px solid #dcdfe4;
    border-radius:999px;
    background:#fff;
    color:#222;
    font-size:17px;
    font-weight:600;
    transition:all .2s ease;
}

.leaders-sub-tabs li a:hover{
    border-color:#0d57a1;
    color:#0d57a1;
}

.leaders-sub-tabs li.active a{
    background:#0d57a1;
    border-color:#0d57a1;
    color:#fff;
}

/* 서브페이지 본문 */
.leaders-sub-visual + .leaders-sub-tabs-wrap + #leadersContainer,
.leaders-sub-visual + #leadersContainer{
    padding-top:0;
}

/* =========================
   FOOTER
========================= */
.leaders-footer{
    padding:90px 0 72px;
    background:var(--primary);
    color:#fff;
}

.leaders-footer-cta{
    text-align:center;
}

.leaders-footer-cta h2{
    font-size:clamp(1.8rem, 3vw, 2.7rem);
    line-height:1.35;
    font-weight:900;
    margin-bottom:28px;
    letter-spacing:-1px;
}

.leaders-footer-info{
    margin-top:56px;
    padding-top:34px;
    border-top:1px solid rgba(255,255,255,.14);
    text-align:center;
    color:#cbd5e1;
    font-size:.96rem;
}

.leaders-footer-info strong{
    color:#fff;
    font-weight:800;
}

.leaders-footer-info a{
    color:olive;
    
}

.leaders-copy{
    margin-top:16px;
    color:#94a3b8;
    font-size:.85rem;
}

/* =========================
   ANCHOR OFFSET
========================= */
#about,
#projects,
#contact{
    scroll-margin-top:110px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px){
    .leaders-gnb{
        gap:28px;
    }

    .leaders-gnb-item > a{
        font-size:1.02rem;
    }
}

@media (max-width: 1180px){
    .leaders-feature-grid,
    .leaders-project-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .leaders-gnb-item > a{
        font-size:.96rem;
    }
}

@media (max-width: 1024px){
    #leadersHeader .leaders-nav{
        display:none !important;
    }

    #leadersHeader .leaders-request-btn{
        display:none !important;
    }

    #leadersHeader .leaders-menu-btn{
        display:flex !important;
    }

    #leadersHeader .leaders-actions{
        margin-left:auto;
    }

    .leaders-inner{
        min-height:78px;
    }

    #leadersContainer{
        padding-top:78px;
    }

    .leaders-hero{
        min-height:calc(100vh - 78px);
    }

    .leaders-hero__content{
        padding:100px 0 90px;
    }

    .leaders-sub-visual{
        height:180px;
        margin-top:78px;
    }

    .leaders-sub-visual__inner h2{
        font-size:34px;
    }

    .leaders-sub-tabs{
        justify-content:flex-start;
        gap:10px;
        padding:16px 0;
    }

    .leaders-sub-tabs li a{
        min-height:42px;
        padding:0 18px;
        font-size:15px;
    }
}

@media (max-width: 768px){
    .leaders-container,
    .leaders-inner{
        width:min(100% - 28px, 1400px);
    }

    .leaders-logo img{
        max-height:44px;
    }

    .leaders-hero h2{
        letter-spacing:-1px;
    }

    .leaders-hero p br{
        display:none;
    }

    .leaders-feature-grid,
    .leaders-project-grid{
        grid-template-columns:1fr;
    }

    .leaders-features,
    .leaders-projects{
        padding:82px 0;
    }

    .leaders-feature-card,
    .leaders-project-body{
        padding:24px 22px;
    }

    .leaders-category-head h3{
        font-size:1.35rem;
    }

    .leaders-footer{
        padding:76px 0 60px;
    }

    .leaders-sub-visual{
        height:150px;
    }

    .leaders-sub-visual__inner h2{
        font-size:28px;
    }

    .leaders-sub-tabs{
        overflow-x:auto;
        flex-wrap:nowrap;
        justify-content:flex-start;
        padding:14px 0;
        white-space:nowrap;
    }

    .leaders-sub-tabs::-webkit-scrollbar{
        height:6px;
    }

    .leaders-sub-tabs::-webkit-scrollbar-thumb{
        background:#d1d5db;
        border-radius:999px;
    }

    .leaders-sub-tabs li a{
        padding:0 16px;
        font-size:14px;
    }
}

@media (max-width: 480px){
    .leaders-btn{
        width:100%;
    }

    .leaders-hero__buttons{
        flex-direction:column;
    }

    .leaders-partner-item{
        width:100%;
        text-align:center;
        border-radius:14px;
    }

    .leaders-mobile-nav{
        width:min(92vw, 320px);
    }
}

/* 게시판만 최대 1400px */
#bo_list,
#bo_v,
#bo_w,
#fboardlist,
#faq_wrap,
#inq_write,
#new_sch,
#cop_search_rlt,
#search_result{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}
@media (max-width:768px){
    #bo_list,
    #bo_v,
    #bo_w,
    #fboardlist,
    #faq_wrap,
    #inq_write,
    #new_sch,
    #cop_search_rlt,
    #search_result{
        padding-left:14px;
        padding-right:14px;
    }
.idx_text { width:100%; height:auto; position: absolute; text-align: center; top: 50%; z-index:9; font-size: 20px; font-weight: bold;  color: #fff; }    
}

.leaders-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.leaders-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.leaders-request-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:176px;
    height:60px;
    background:#101a33;
    color:#fff;
    font-size:17px;
    font-weight:800;
    text-decoration:none;
    border-radius:4px;
    letter-spacing:-0.3px;
    white-space:nowrap;
    transition:all .25s ease;
}

.leaders-request-btn:hover{
    background:#1a274a;
    color:#fff;
}

.leaders-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.idx_text { position:absolute; width:100%; height:auto; text-align: center;left: 50%; top: 50%; transform: translate(-50%, -50%); z-index:9; font-size: 80px; font-weight: bold;   color: #fff; }

@media (max-width:768px){
.idx_text { width:100%; height:auto; position: absolute; text-align: center; top: 50%; z-index:9; font-size: 30px; font-weight: bold;  color: #fff; }    
}


.sermon-page {
/*  min-height: 100vh;*/
}

.sermon-hero {
  position: relative;
  overflow: hidden;
/*  min-height: 100vh;*/
  padding: 18px 22px 46px;
/* background:
    linear-gradient(180deg, rgba(61, 51, 47, 0.7), rgba(55, 45, 41, 0.8)),
    linear-gradient(135deg, #5e5552 0%, #423937 38%, #544c49 100%);*/
}

.sermon-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.12) 0 0.35%, transparent 0.36%),
    radial-gradient(circle at 24% 14%, rgba(255, 255, 255, 0.12) 0 0.35%, transparent 0.36%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.1) 0 0.38%, transparent 0.39%),
    radial-gradient(circle at 90% 62%, rgba(255, 255, 255, 0.1) 0 0.32%, transparent 0.33%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  background-size: 260px 260px, 320px 320px, 300px 300px, 260px 260px, auto;
  filter: grayscale(1);
  opacity: 0.9;
}

.sermon-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  margin: 0 auto;
}

.sermon-hero__header {
  text-align: center;
  margin-bottom: 28px;
}

.sermon-hero__header h1 {
  margin: 0;
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.sermon-poster {
  position: relative;
  max-width: 1390px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 62%, rgba(255, 246, 207, 0.98) 0 9%, rgba(255, 231, 174, 0.75) 10%, transparent 28%),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.52) 0 10%, transparent 32%),
    radial-gradient(circle at 26% 36%, rgba(248, 221, 162, 0.42) 0 12%, transparent 34%),
    linear-gradient(180deg, rgba(110, 155, 177, 0.72), rgba(248, 206, 116, 0.46) 58%, rgba(76, 101, 126, 0.68) 100%),
    linear-gradient(135deg, #6aa0b0 0%, #d6d5c5 48%, #f0c47d 74%, #766151 100%);
  box-shadow: var(--shadow);
}

.sermon-poster::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background:
    radial-gradient(circle at 16% 88%, rgba(66, 85, 111, 0.46) 0 16%, transparent 17%),
    radial-gradient(circle at 34% 92%, rgba(71, 88, 108, 0.52) 0 18%, transparent 19%),
    radial-gradient(circle at 54% 96%, rgba(58, 72, 95, 0.52) 0 20%, transparent 21%),
    radial-gradient(circle at 76% 100%, rgba(52, 65, 85, 0.44) 0 19%, transparent 20%);
}

.sermon-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.68) 0 8%, transparent 20%),
    radial-gradient(circle at 60% 12%, rgba(255, 255, 255, 0.24) 0 10%, transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 22%);
  pointer-events: none;
}

.sermon-poster__topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-size: clamp(0.95rem, 1vw, 1.2rem);
  font-weight: 700;
}

.sermon-poster__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 126px;
}

.sermon-poster__subtitle {
  position: relative;
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.sermon-poster__subtitle::before,
.sermon-poster__subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(70px, 10vw, 140px);
  height: 3px;
  background: var(--navy-soft);
}

.sermon-poster__subtitle::before {
  right: 100%;
  margin-right: 18px;
}

.sermon-poster__subtitle::after {
  left: 100%;
  margin-left: 18px;
}

.sermon-poster h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.2rem, 8vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.09em;
  font-weight: 700;
}

.sermon-poster__play {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 22px 0 18px;
  border: 0;
  border-radius: 50%;
  background: rgba(58, 56, 53, 0.82);
  cursor: pointer;
}

.sermon-poster__play::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

.sermon-poster__meta {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.sermon-poster__meta strong {
  font-weight: 700;
}

.sermon-poster__cross {
  position: absolute;
  right: 88px;
  bottom: 92px;
  width: 42px;
  height: 310px;
  background: linear-gradient(180deg, rgba(72, 31, 78, 0.9), rgba(92, 43, 83, 0.68));
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(255, 199, 152, 0.18);
}

.sermon-poster__cross::before {
  content: "";
  position: absolute;
  left: -68px;
  top: 66px;
  width: 178px;
  height: 38px;
  background: linear-gradient(90deg, rgba(92, 43, 83, 0.74), rgba(85, 53, 96, 0.9));
  border-radius: 4px;
}

.sermon-hero__cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.live-tag {
  display: inline-block;
  padding: 12px 20px;
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1;
  font-weight: 700;
}

.sermon-hero__copy {
  margin: 26px 0 28px;
  text-align: center;
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.sermon-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sermon-menu a {
  display: inline-block;
  padding: 14px 22px;
  background: var(--gold);
  color: #4b3a3a;
  text-decoration: none;
  font-size: clamp(1rem, 1.1vw, 1.28rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  border: 1px solid #999    
}

.sermon-menu .is-accent {
  background: var(--red);
}

@media (max-width: 1180px) {
  .sermon-hero {
    padding: 20px 16px 34px;
  }

  .sermon-poster {
    min-height: 620px;
  }

  .sermon-poster__body {
    padding-top: 92px;
  }

  .sermon-poster__cross {
    right: 34px;
    bottom: 58px;
    height: 250px;
  }

  .sermon-poster__cross::before {
    left: -58px;
    width: 152px;
  }
}

@media (max-width: 760px) {
  .sermon-hero__header {
    margin-bottom: 18px;
  }

  .sermon-poster {
    min-height: 470px;
    padding: 18px 16px 28px;
  }

  .sermon-poster__topline {
    flex-direction: column;
    gap: 6px;
    font-size: 0.88rem;
  }

  .sermon-poster__body {
    padding-top: 42px;
  }

  .sermon-poster__subtitle {
    margin-bottom: 16px;
  }

  .sermon-poster__subtitle::before,
  .sermon-poster__subtitle::after {
    width: 42px;
  }

  .sermon-poster__play {
    width: 64px;
    height: 64px;
    margin: 16px 0 14px;
  }

  .sermon-poster__play::before {
    left: 27px;
    top: 21px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .sermon-poster__cross {
    right: 18px;
    bottom: 34px;
    width: 24px;
    height: 150px;
  }

  .sermon-poster__cross::before {
    left: -36px;
    top: 36px;
    width: 96px;
    height: 20px;
  }

  .sermon-hero__copy {
    margin: 20px 0 22px;
  }

  .sermon-menu {
    gap: 10px 8px;
  }

  .sermon-menu a {
    padding: 12px 16px;
  }
}


.online-page {
  max-width: 1450px;
  margin: 0 auto;
  padding: 56px 24px 76px;
}

.online-service__header {
  margin-bottom: 32px;
}

.online-service__header h1 {
  margin: 0 auto 50px;
  font-size: clamp(3rem, 2vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 800;
 text-align: center
}

.online-service__header p {
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  line-height: 1.3;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.online-service__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.service-tile {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  box-shadow: var(--shadow);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;    
  border:solid 1px #ccc
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

.service-tile__label {
  text-align: center;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.service-tile__icon {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%); font-size: 50px; font-weight: bold
}

.service-tile__icon--book {
  width: 56px;
  height: 46px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  border-top-width: 6px;
}

.service-tile__icon--book::before,
.service-tile__icon--book::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 22px;
  height: 30px;
  border: 4px solid #ffffff;
  border-top: 0;
  border-bottom: 0;
}

.service-tile__icon--book::before {
  left: 4px;
}

.service-tile__icon--book::after {
  right: 4px;
}

.service-tile__icon--sprout {
  width: 56px;
  height: 60px;
}

.service-tile__icon--sprout::before {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 4px;
  height: 34px;
  background: #ffffff;
  border-radius: 999px;
}

.service-tile__icon--sprout::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 48px;
  height: 34px;
  background:
    radial-gradient(circle at 12px 22px, transparent 0 9px, #ffffff 9px 11px, transparent 12px),
    radial-gradient(circle at 35px 18px, transparent 0 9px, #ffffff 9px 11px, transparent 12px);
}


.service-tile--bulletin .service-tile__label,
.service-tile--offering .service-tile__label {
  padding-top: 90px;
}

@media (max-width: 1280px) {
  .online-service__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .online-page {
    padding: 34px 16px 44px;
  }

  .online-service__header {
    margin-bottom: 24px;
  }

  .online-service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-tile {
    min-height: 170px;
    border-radius: 18px;
  }

  .service-tile__icon {
    top: 34px;
  }
}

@media (max-width: 480px) {
  .online-service__grid {
    grid-template-columns: 1fr;
  }
}


/* 오른쪽 상단 배치 */
.hd_login_quick{
	display: block;
    position:absolute;
    top:18px;
    right:20px;
    z-index:100;
}

/* 전체 pill */
.hd_login_quick_box{
    display:inline-flex;
    align-items:center;
    background:#fff;
    border:1.5px solid #8ba43c;
    border-radius:999px;
    padding:4px 6px;
    box-sizing:border-box;
    box-shadow:0 1px 3px rgba(0,0,0,0.05);
}

/* 버튼 공통 */
.hd_login_quick_box a{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    height:38px;
    padding:0 16px;
    color:#666;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    line-height:1;
    border-radius:999px;
    white-space:nowrap;
    transition:all .2s ease;
    box-sizing:border-box;
}

/* 가운데 구분선 */
.hd_login_quick_box a + a:before{
    content:"";
    position:absolute;
    left:-3px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:14px;
    background:#d9d9d9;
}

/* 아이콘 */
.hd_login_quick_box a i{
    font-size:13px;
    color:#6f8231;
}

/* hover */
.hd_login_quick_box a:hover{
    background:#f7faef;
    color:#222;
}

/* 태블릿 */
@media (max-width:768px){
    .hd_login_quick{
		display: none;
        top:14px;
        right:14px;
    }

    .hd_login_quick_box a{
        height:34px;
        padding:0 12px;
        font-size:14px;
        gap:6px;
    }

    .hd_login_quick_box a i{
        font-size:12px;
    }
}

/* 모바일 */
@media (max-width:480px){
    .hd_login_quick{
		display: none;
        top:10px;
        right:10px;
    }

    .hd_login_quick_box{
        padding:3px 5px;
    }

    .hd_login_quick_box a{
        height:30px;
        padding:0 10px;
        font-size:13px;
        gap:5px;
    }

    .hd_login_quick_box a i{
        font-size:11px;
    }

    .hd_login_quick_box a + a:before{
        height:12px;
    }
}

/* =========================================
   서브메뉴 대분류 글자 잘림 보정 - 실제 출력 기준
========================================= */

/* 기존 .ld-subnav 관련 보정은 삭제하고 이것만 사용 */
.leaders-subnav-align,
.leaders-subnav-align *{
    box-sizing:border-box;
}

.leaders-subnav-align{
    overflow:visible !important;
}

/* 실제 보이는 버튼/링크/현재값/셀렉트 전부 강제 보정 */
.leaders-subnav-align a,
.leaders-subnav-align button,
.leaders-subnav-align select,
.leaders-subnav-align .current,
.leaders-subnav-align .dropdown-toggle,
.leaders-subnav-align .leaders-subnav-current,
.leaders-subnav-align .subnav-current{
    font-family:'Noto Sans KR','GmarketSans',sans-serif !important;
    font-size:16px !important;
    font-weight:600 !important;
    line-height:1.5 !important;
    min-height:56px !important;
    height:auto !important;
    padding-top:15px !important;
    padding-bottom:15px !important;
    overflow:visible !important;
    display:flex !important;
    align-items:center !important;
}

/* 텍스트 자체 잘림 방지 */
.leaders-subnav-align a span,
.leaders-subnav-align button span,
.leaders-subnav-align .current span,
.leaders-subnav-align .dropdown-toggle span,
.leaders-subnav-align .leaders-subnav-current span,
.leaders-subnav-align .subnav-current span,
.leaders-subnav-align strong,
.leaders-subnav-align em{
    display:inline-block !important;
    line-height:1.5 !important;
    padding-top:2px !important;
    overflow:visible !important;
}

/* 부모 박스 잘림 방지 */
.leaders-subnav-align > div,
.leaders-subnav-align ul,
.leaders-subnav-align li{
    overflow:visible !important;
}

/* 드롭다운 select 화살표 영역 */
.leaders-subnav-align select{
    -webkit-appearance:none;
    appearance:none;
    padding-right:42px !important;
    background-position:right 14px center !important;
}