
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('../../fonts/Pretendard-Light.eot');
    src: url('../../fonts/Pretendard-Light.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Pretendard-Light.woff2') format('woff2'),
    url('../../fonts/Pretendard-Light.woff') format('woff'),
    url('../../fonts/Pretendard-Light.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: normal;
    font-style: normal;
    src: url('../../fonts/Pretendard-Regular.eot');
    src: url('../../fonts/Pretendard-Regular.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Pretendard-Regular.woff2') format('woff2'),
    url('../../fonts/Pretendard-Regular.woff') format('woff'),
    url('../../fonts/Pretendard-Regular.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('../../fonts/Pretendard-Medium.eot');
    src: url('../../fonts/Pretendard-Medium.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Pretendard-Medium.woff2') format('woff2'),
    url('../../fonts/Pretendard-Medium.woff') format('woff'),
    url('../../fonts/Pretendard-Medium.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: bold;
    font-style: normal;
    src: url('../../fonts/Pretendard-Bold.eot');
    src: url('../../fonts/Pretendard-Bold.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Pretendard-Bold.woff2') format('woff2'),
    url('../../fonts/Pretendard-Bold.woff') format('woff'),
    url('../../fonts/Pretendard-Bold.ttf') format("truetype");
    font-display: swap;
}
*{word-break:break-all;word-wrap:break-word;}
html, body, div, dl, dt, dd, ul, ol, li, p, h1, h2, h3, h4, h5, a {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    list-style: none;
    word-break: keep-all;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
}

body {
    width:100%;
    font-size:12px;
}
.profsr-wrap {
    width: 100%;
    background-image: url(/images/kor2016/common/bg-logo2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 96% 90%;
    min-height: 100vh;
}
.inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
.header-wrap {
    height: 71px;
    padding: 21px 0;
    box-sizing: border-box;
    background: #004094;
    margin-bottom: 40px;
}
.name-box {
    text-align: center;
    padding-bottom: 30px;
    margin: 0 0 25px;
    border-bottom: 1px solid #333;
}
.name-box h4 {
    font-size: 39px;
    font-weight: 400;
    padding-bottom: 20px;
    background: linear-gradient(35deg, #004094, #0077c8, #00b398, #2cd5c4);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 40px;
}
.name-box p {
    color: #63666A;
    width: 60%;
    margin: 0 auto;
    line-height: 24px;
}
.header {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 50px;
}
.header img {
    width: 180px;
}
.prof-box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.prof-img {
    width: 250px;
    height: 315px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}


.prof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prof-info > ul > li {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.prof-info > ul > li > span {
    flex: 0 0 130px;
    font-weight: bold;
}
.prof-info > ul > li > span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 14px;
    background: #005eb8;
    margin-right: 8px;
    vertical-align: -2px;
}
.prof-info > ul > li > a {
    text-decoration: none;
    /*background: url('/images/kor2016/common/link-icon.png') no-repeat center center;*/
}
.prof-info > ul > li > a:hover {
    text-decoration: none;
    color: #005eb8;
    /*background: url('/images/kor2016/common/link-icon.png') no-repeat center center;*/
}
.qr-icon {
    float: right;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.qr-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.qr-icon a {
    display: block;
    width: 18px;
    height: 18px;
    background: url('/images/kor2016/common/qr-icon.png') no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
    transition: transform 0.3s ease;
}
.qr-icon:hover a {
    transform: rotate(15deg);
}
.prof-info {
    position: relative;
    height: 315px;
}
.qr-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index: 9999;
}
.qr-modal > div {
    background:#fff;
    padding:20px;
    border-radius:8px;
    position:relative;
}
.close{
    position: absolute;
    top: -25px;
    right: 10px;
    cursor: pointer;
    background: url(/images/kor2016/common/btn_close.png) no-repeat center;
    text-indent: -9999px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    width: 20px;
    height: 20px;
}
.close:hover{
    transform: rotate(90deg);
}
#url {
    position: absolute;
    bottom: -27px;
    font-size: 13px;
    color: #fff;
    left: 10px;
}

.hide{display:none}

.prof-detail{
    margin-top: 50px;
}
.detail-tab {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.detail-tab li {
    flex: 1;
    text-align: center;
}

.detail-tab li a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 2px solid transparent;
}

.detail-tab li.on a {
    border-bottom: 3px solid #005eb8;
    font-weight: bold;
}
.detail-tab li.on a p {
    color: #005eb8;
}

.detail-tab li a span img{
    width: 20px;
    vertical-align: middle;
}

.detail-inner {
    padding: 50px 10px 20px 10px;
}

.detail-tit {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #004094;
    position: relative;
    padding-left: 10px
}
.l10 {
    padding: 10px;
    margin-bottom: 40px;
}
.detail-tit:before {
    content:"";
    position:absolute;
    left:0;
    top:2px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#2cd5c4;
}


.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.2s linear;
    z-index: 10000;
}
.progress-wrap::after {
    content: '↑';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #004094;
    pointer-events: none;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
    stroke: #004094;
    stroke-width: 4;
    transition: stroke-dashoffset 0.01s linear;
}
@media (min-width: 576px) {
    .inner,.header {
        max-width: 550px;
    }
}
@media (min-width: 768px) {
    .inner,.header {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .inner,.header {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .inner,.header {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .inner,.header {
        max-width: 1320px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .header, .inner {
        padding: 0 20px;
    }
    .prof-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .name-box h4{
        font-size: 35px;
    }
    .name-box p {
        line-height: 20px;
        font-size: 14px;
        width: 90%;
    }
    .prof-info {
        text-align: left;
        margin-bottom: 10px;
        align-self: flex-start;
    }
    .prof-info > ul > li {
        flex-direction: column;
    }
    .prof-info > ul > li > span {
        flex: none;
        margin-bottom: 4px;
    }
    .prof-detail {
        margin-top: 100px;
    }
    .detail-tab li.on a {
        border-bottom: none;
        justify-content: center;
    }
    .detail-tab {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        border-bottom: none;
        background: #f1f1f1;
        border-radius: 25px;
    }
    .detail-tab li {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: flex-basis 0.3s ease, background 0.3s ease, padding 0.3s ease;
        cursor: pointer;
    }

    .detail-tab li.on {
        flex-basis: 110px;
        justify-content: flex-start;
        padding: 0 12px;
        background: #005eb8;
        border-radius: 25px;
    }

    .detail-tab li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        width: 100%;
        justify-content: center;
    }
    /* 아이콘 */
    .detail-tab li a span {
        font-size: 20px;
        margin-right: 6px;
    }
    /* 텍스트는 기본 숨김 */
    .detail-tab li a p {
        display: none;
        font-size: 14px;
        white-space: nowrap;
        margin: 0;
        color: #fff;
    }
    /* on일 때 텍스트 보이기 */
    .detail-tab li.on a p {
        display: block;
    }
    .detail-tab li.on a span img {
        filter: brightness(0) invert(1);
        vertical-align: -3px;
    }
    .detail-tab li.on a p {
        color: #fff;
    }
}