/* ======================================================================================================== */
/*포트폴리오 리스트 2025.10.15, 자사페이지 리뉴얼 */
/* ======================================================================================================== */
.wp_solution #wp_shp_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

/*상단(키워드 및 검색)*/
.wp_solution #wp_shp_list .shp_list_hd {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/*카테고리*/
.wp_solution #wp_shp_list .shp_list_hd .tab_hd_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
}

.wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm {
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A1A1A;
    font-size: 15px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    border-radius: 20px;
    border: 1px solid #1A1A1A;
    background-color: #fff;
    transition: 0.2s ease-out;
}

.wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm.on {
    color: #fff;
    background-color: #1a1a1a;
}

.wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm:hover {
    color: #fff;
    background-color: #1a1a1a;
    transition: 0.3s ease-in;
}

/*검색*/
.wp_solution #wp_shp_list .shp_list_hd .list_sch {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
    height: 70px;
    margin-left: auto;
    background-color: #C50202;
    border-radius: 45px;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch > form {
    width: 100%;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx {
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm > input[type=text] {
    width: 80%;
    padding: 0 10px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: var(--font-w300);
    font-family: 'SUIT Variable', sans-serif;
    background-color: transparent;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm > input[type=text]::placeholder {
    color: rgba(255, 255, 255, 0.53);
    font-size: 16px;
    font-weight: var(--font-w300);
    font-family: 'SUIT Variable', sans-serif;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm > .btn_sch {
    width: 10%;
}

.wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm > .btn_sch > img {
}


/*하단(리스트)*/
.wp_solution #wp_shp_list .shp_list_bd {
    width: 100%;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items {
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    border-radius: 30px;
    overflow: hidden;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx {
    position: relative;
    width: 100%;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm {
    /*width: 470px;*/
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm > img {
    transform: scale(1.1);
    transition: 0.4s;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .btn_bx {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 0 0 10px;
    background-color: #fff;
    border-radius: 20px 0 0 0;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .btn_bx > .btn_mv {
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .btn_bx > .btn_mv > img {
}


.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 0 20px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > strong {
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-w700);
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .des {
    height: 100px;
    font-size: 16px;
    font-weight: var(--font-w400);
    line-height: 25px;
}
.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .ctg_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap:5px;
}
.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .ctg_list >li{
    padding:5px 10px;
    font-size: 14px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w600);
    border-radius: 30px;
    background-color: #fff;
    border:1px solid #8e8e8e;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 1px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    transition: 0.4s ease-out;
    border: 1px solid #1A1A1A;
    border-radius: 30px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm:hover > .itm_ovly {
    opacity: 1;
    transition: 0.4s ease-in;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 25px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > strong {
    font-size: 25px;
    font-family: 'SebangGothic';
    font-weight: var(--font-w700);
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des {
    height: 150px;
    font-size: 16px;
    font-weight: var(--font-w400);
    font-family: 'SUIT Variable', sans-serif;
    line-height: 25px;
    overflow-y: auto;
}
.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des::-webkit-scrollbar,
.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des::-webkit-scrollbar-track {
    width: 5px;
    background: transparent;
}
.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #8e8e8e;
    border-radius: 30px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 60px;
    color: #fff;
    font-size: 14px;
    font-family: 'SUIT Variable', sans-serif;
    border-radius: 20px;
    transition: 0.2s ease-out;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv01 {
    background: #0A0A0A;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv02 {
    background: #C50202;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv:hover {
    background: #ccc;
    transition: 0.3s ease-in;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_add_bx {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 80px;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_add_bx .btn_more {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 295px;
    width: 100%;
    height: 70px;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    letter-spacing: -1px;
    border: 1px solid #1A1A1A;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.wp_solution #wp_shp_list .shp_list_bd > .gly_add_bx .btn_more:hover {
    color: #fff;
    background: #C50202;
    border: 1px solid #C50202;;
    transition: 0.4s ease-in;
}


@media (max-width: 992px) {
    .wp_solution #wp_shp_list .shp_list_hd {
        flex-direction: column;
        align-items: flex-start;
    }

    .wp_solution #wp_shp_list .shp_list_hd .list_sch {
        order: 1;
        margin-left: unset;
    }

    .wp_solution #wp_shp_list .shp_list_hd .tab_hd_items {
        order: 2;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm {
        height: 265px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx {
        padding: 0 10px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > strong {
        font-size: 18px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .des {
        height: 80px;
        font-size: 15px;
        line-height: 20px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .wp_solution #wp_shp_list .shp_list_hd .list_sch {
        height: 50px;
    }

    .wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm > .btn > img {
        width: 18px;
    }

    .wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm {
        font-size: 14px;
    }

    .wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm {
        width: 100px;
        height: 35px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > strong {
        font-size: 22px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des {
        font-size: 14px;
        line-height: 22px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv {
        width: 120px;
        height: 55px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .wp_solution #wp_shp_list .shp_list_hd .list_sch {
        max-width: unset;
        width: 100%;
    }

    .wp_solution #wp_shp_list .shp_list_hd .list_sch .inp_bx > .inp_frm {
        padding: 0 10px;
    }

    .wp_solution #wp_shp_list .shp_list_hd .tab_hd_items > .itm {
        width: calc(33% - 5px);
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm {
        gap: 10px;
        border-radius: 10px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm {
        border-radius: 10px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm {
        height: 200px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .btn_bx > .btn_mv03 {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx {
        padding: 0;
        gap: 5px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > strong {
        font-size: 16px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .des {
        height: 75px;
        font-size: 14px;
        font-weight: var(--font-w400);
        line-height: 18px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly {
        border-radius: 10px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir {
        padding: 10px 15px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt {
        flex-direction: column;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .bt > .btn_mv {
        width: 100%;
        height: 45px;
        font-size: 13px;
        border-radius: 5px;
    }

    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .ctg_list >li {
        padding: 2px 6px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .txt_bx > .des{
        font-size: 12px;
    }
    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .img_bx > .img_frm{
        height: 180px;
    }
    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp{
        gap:10px;
    }
    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > strong{
        font-size: 16px;
    }
    .wp_solution #wp_shp_list .shp_list_bd > .gly_items > .itm > .itm_ovly .ovly_ir > .tp > .des{
        font-size: 12px;
    }
}

/* ======================================================================================================== */