
:root {
    --line-clamp: 1; /* 기본값 */
}

/* 텍스트 줄임표 적용 */
.text-clamp {
    display: -webkit-box; /* 플렉스 박스를 사용하여 줄 제한 */
    -webkit-box-orient: vertical; /* 텍스트를 수직으로 정렬 */
    overflow: hidden; /* 넘치는 텍스트를 숨김 */
    text-overflow: ellipsis; /* 줄임표 (...) 추가 */
    line-height: 1.5; /* 줄 간격 */
    -webkit-line-clamp: var(--line-clamp); /* 줄 수 제한 */
    height: calc(1.5em * var(--line-clamp));
    max-height: calc(1.5em * var(--line-clamp)); /* 줄 간격 * 줄 수 (2줄) */
}

.ellip {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    display: block !important;
    vertical-align: middle;
}


/* ===========================
   페이지내 검색창
   =========================== */
/* .inHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */
.inHeader {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.inHeader .inner-menuBox {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 !important;
}

.inHeader .inner-menu {
    color: #C0C0C0;
    color: var(--line-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    cursor: pointer;
}

.inHeader .inner-menu.active {
    font-weight: 600;
    color: var(--new-pink);
}


/* serach 버튼 클릭시 변경된 디자인 */
.inner-searchBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #c0c0c0;
    background: #ffffff;
    line-height: 40px;
    height: 40px;
    width: 100%;

}

.inner-searchBox #inner-search {
    border: none !important;
    background-color: transparent !important;
    width: 90%;
    font-size: 14px;
    color: #ff2186;
}

.inner-searchBox #inner-search::placeholder {
    color: #c0c0c0;
}

@supports (-webkit-appearance:none) {
    /* 이 안에 Safari(10.1 이상)에서만 적용할 스타일 작성 */
    .inner-searchBox #search {
        border: 0 solid blue !important;
        background-color: transparent !important;
        width: 73%;
        font-size: 12px;
        line-height: 20px;
        color: #ff2186;
    }

    .inner-searchBox #inner-search::placeholder {
        font-family: "Elice DX Neolli" !important;
        color: #c0c0c0;
    }
}

.inner-searchBox #inner-search:focus {
    outline: none !important;
}

/*.inner-searchBox .inner-search-btn {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    cursor: pointer;*/
/*    background-image: url("../image/searchBtn.png");*/
/*    background-size: 100%;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/

/*    transform: translate(5%, -10%);*/
/*}*/

.inHeader .inner-searchBox .icon-search,
.inHeader .inner-searchBox .icon {
    width: 20px;
    height: 20px;

    cursor: pointer;
    background-image: url("../image/searchBtn.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(5%, -10%);
}


/* ===========================
   지원자보기페이지_프로필
   =========================== */
.fstLineBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
}

/* 미팅요청, 예비합격 버튼 */
.passBtn {
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    color: #959595;
    border: 1px solid #c0c0c0;
    border-radius: 20px;

    height: 26px;
    line-height: 26px;

    font-size: 12px;
    font-weight: normal;

    padding: 0 10px;
    box-sizing: border-box;

    cursor: pointer;
}

.passBtn span {
    width: 16px;
    height: 16px;

    background-image: url('/static/image/svg/icon-check-off.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
}

.passBtn.passOn {
    border: 1px solid #ff2186;
    color: #ff2186;
}

.passBtn.passOn span {
    background-image: url('/static/image/svg/icon-check-on.svg');
}








@media (max-width: 992px) {
    .inHeader{
        grid-template-columns: repeat(2, 1fr);
    }
    .inHeader .empty{
        display: none;
    }

}

@media (max-width: 767px) {
    .inHeader {
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .inHeader .inner-menuBox{
        gap: 20px;
        margin-bottom: 10px !important;
    }
    .inHeader .inner-menu{
        font-size: var(--text-medium);
        line-height: 18px;
        height: 18px;
    }

}

/* 390px 이하 작은 모바일 */
@media (max-width: 390px) {

}






