@charset "utf-8";

/* 전체 섹션 */
.pcs-section{
    width:100%;
    padding:10px 0;
    overflow:hidden;
}

.pcs-inner{
    max-width:1680px;
    margin:0 auto;
    padding:0 16px;
    box-sizing:border-box;
}

/* 헤더 */
.pcs-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}

.pcs-title-wrap{
    min-width:0;
}

.pcs-subtitle{
    margin:0 0 8px;
    font-size:13px;
    line-height:1.2;
    letter-spacing:0.12em;
    color:#9d8b7c;
    font-weight:600;
}

.pcs-title{
    margin:0;
    font-size:34px;
    line-height:1.2;
    color:#1f1f1f;
    font-weight:700;
}

/* 네비 버튼 */
.pcs-nav{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.pcs-btn{
    width:48px;
    height:48px;
    border:1px solid #ddd;
    border-radius:50%;
    background:#fff;
    color:#222;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .25s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.pcs-btn:hover{
    background:#222;
    color:#fff;
    border-color:#222;
}

.pcs-btn span{
    font-size:18px;
    line-height:1;
}

/* 슬라이더 */
.pcs-slider-wrap{
    position:relative;
}

.pcs-swiper{
    overflow:visible;
    padding-bottom:42px;
}

.pcs-swiper .swiper-wrapper{
    align-items:stretch;
}

.pcs-swiper .swiper-slide{
    height:auto;
}

/* 카드 */
.pcs-card{
    display:block;
    height:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
    transition:transform .3s ease, box-shadow .3s ease;
}

.pcs-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 42px rgba(0,0,0,0.10);
}

/* 이미지 */
.pcs-thumb-box{
    position:relative;
    width:100%;
    padding-top:74%;
    overflow:hidden;
    background:#e9e9e9;
}

.pcs-thumb{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.pcs-card:hover .pcs-thumb{
    transform:scale(1.05);
}

.pcs-noimg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ddd;
    color:#888;
    font-size:14px;
    letter-spacing:0.08em;
}

/* 텍스트 */
.pcs-content{
    padding:24px 18px 22px;
    text-align:center;
    background:#fff;
}

.pcs-name{
    display:block;
    font-size:30px;
    line-height:1.3;
    color:#222;
    font-weight:700;
    word-break:keep-all;
}

.pcs-name::after{
    content:"";
    display:block;
    width:38px;
    height:2px;
    margin:10px auto 12px;
    background:#c9a98d;
    border-radius:10px;
}

.pcs-role{
    display:block;
    font-size:15px;
    line-height:1.5;
    color:#9c938b;
    font-weight:400;
    word-break:keep-all;
}

.pcs-empty{
    background:#fff;
    border-radius:20px;
    padding:80px 20px;
    text-align:center;
    color:#777;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

/* 페이지네이션 */
.pcs-pagination{
    position:relative;
    margin-top:24px;
    text-align:center;
}

.pcs-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    margin:0 5px !important;
    background:#cfcfcf;
    opacity:1;
}

.pcs-pagination .swiper-pagination-bullet-active{
    background:#c9a98d;
}

/* 반응형 */
@media (max-width: 1199px){
    .pcs-section{
        padding:10px 0;
    }

    .pcs-title{
        font-size:30px;
    }

    .pcs-name{
        font-size:26px;
    }
}

@media (max-width: 767px){
    .pcs-section{
        padding:5px 0;
    }

    .pcs-inner{
        padding:0 14px;
    }

    .pcs-head{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
        margin-bottom:22px;
    }

    .pcs-title{
        font-size:26px;
    }

    .pcs-subtitle{
        font-size:12px;
    }

    .pcs-nav{
        gap:8px;
    }

    .pcs-btn{
        width:42px;
        height:42px;
    }

    .pcs-content{
        padding:18px 14px 18px;
    }

    .pcs-name{
        font-size:22px;
    }

    .pcs-role{
        font-size:14px;
    }

    .pcs-name::after{
        margin:8px auto 10px;
    }

    .pcs-swiper{
        padding-bottom:36px;
    }
}

@media (max-width: 480px){
    .pcs-title{
        font-size:22px;
    }

    .pcs-name{
        font-size:20px;
    }

    .pcs-role{
        font-size:13px;
    }

    .pcs-card{
        border-radius:16px;
    }
}