@charset "utf-8";

/* =========================================================
   KCAP 뉴스룸 서브 Hero
   ---------------------------------------------------------
   소개 subhero.css 기준 복사본
   변경:
   - 갈등분석 CSS 전체를 원본 그대로 복사
   - 배경 이미지만 02_newsroom.png로 교체
========================================================= */

.kcap-sub-hero{
    position:relative;
    overflow:hidden;
    min-height:420px;
    color:#fff;
    font-family:'Nanum Gothic', sans-serif;
    background-color:#0B3B70;
    background-image:url('/kcap/images/subhero/02_newsroom.png');
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
}

.kcap-sub-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(90deg,
        rgba(8,44,88,.68) 0%,
        rgba(8,44,88,.46) 36%,
        rgba(8,44,88,.16) 58%,
        rgba(8,44,88,.04) 78%,
        rgba(8,44,88,0) 100%
    );
}

.kcap-sub-hero-inner{
    position:relative;
    z-index:2;
    width:1220px;
    max-width:calc(100% - 48px);
    margin:0 auto;
    padding:76px 0 74px;
}

.kcap-sub-kicker{
    display:block;
    margin-bottom:14px;
    font-size:22px;
    line-height:1.35;
    font-weight:700;
    letter-spacing:-.4px;
    color:rgba(255,255,255,.92);
}

.kcap-sub-title{
    margin:0;
    font-size:56px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-2px;
    color:#fff;
    word-break:keep-all;
}

.kcap-sub-title::after{
    content:"";
    display:block;
    width:72px;
    height:4px;
    margin:24px 0 26px;
    border-radius:10px;
    background:#F4B62A;
}
.kcap-sub-desc{
    margin:0;
    max-width:560px;
    font-size:20px;
    line-height:1.85;
    font-weight:300;
    letter-spacing:-.2px;
    color:rgba(255,255,255,.96);
    word-break:keep-all;
}
.kcap-sub-breadcrumb{
    display:inline-flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:38px;
    padding:13px 22px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:12px;
    background:rgba(5,31,68,.32);
    font-size:15px;
    line-height:1.3;
    font-weight:700;
    color:rgba(255,255,255,.88);
}
.kcap-sub-breadcrumb .current{
    color:#F4B62A;
}
.kcap-sub-breadcrumb .sep{
    color:rgba(255,255,255,.45);
}

@media (max-width:768px){
    .kcap-sub-hero{
        min-height:360px;
        background-position:64% center;
    }
    .kcap-sub-hero::before{
        background:linear-gradient(90deg,
            rgba(3,25,56,.72) 0%,
            rgba(3,25,56,.48) 58%,
            rgba(3,25,56,.18) 100%
        );
    }
    .kcap-sub-hero-inner{
        max-width:calc(100% - 32px);
        padding:58px 0 58px;
    }
    .kcap-sub-kicker{
        margin-bottom:12px;
        font-size:17px;
    }
    .kcap-sub-title{
        font-size:38px;
        letter-spacing:-1.2px;
    }
    .kcap-sub-title::after{
        width:54px;
        height:3px;
        margin:18px 0 20px;
    }
    .kcap-sub-desc{
        max-width:520px;
        font-size:16px;
        line-height:1.65;
        white-space:normal;
    }
    .kcap-sub-breadcrumb{
        gap:9px;
        margin-top:28px;
        padding:11px 15px;
        font-size:13px;
    }
}

@media (max-width:480px){
    .kcap-sub-hero{
        min-height:330px;
        background-position:68% center;
    }
    .kcap-sub-hero-inner{
        padding:48px 0 48px;
    }
    .kcap-sub-title{
        font-size:34px;
    }
    .kcap-sub-desc{
        font-size:16px;
        white-space:normal;
    }
}


/* 2026-07-22 서브히어로 밝기 보정: 확정된 청색 기준 */
.kcap-sub-hero{background-color:#0D4F8B}
.kcap-sub-hero::before{
    background:linear-gradient(90deg,
        rgba(13,79,139,.56) 0%,
        rgba(15,87,151,.36) 36%,
        rgba(18,96,163,.12) 58%,
        rgba(18,96,163,.03) 78%,
        rgba(18,96,163,0) 100%
    );
}
@media (max-width:768px){
    .kcap-sub-hero::before{
        background:linear-gradient(90deg,
            rgba(10,65,119,.62) 0%,
            rgba(13,82,145,.40) 58%,
            rgba(15,91,158,.14) 100%
        );
    }
}
