@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');
/*********************************************************************
**********************************************************************
                        지난 캠프
**********************************************************************
*********************************************************************/
* {
    font-family: 'Noto Sans KR', sans-serif;
}

.camp-bye-width {
    width: 1080px;
    margin: 0 auto;
    padding: 4rem 0;
    box-sizing: border-box;
}

.camp-bye-con {
    text-align: center;
}

.camp-bye-text {
    text-align: left;
    margin-bottom: 1.6rem;
}
.camp-bye-text > ul {
    list-style: inside;
}
.camp-bye-text > ul > li {
    font-size: .8rem;
    color: #999;
    margin-bottom: .4rem;
}
.camp-bye-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 2rem;
    background:#FAFAFA;
    margin-bottom: 1.5rem;
    text-align: left;
}

.camp-bye-con-title {
    width: 20%;
    position: relative;
}
.camp-bye-con-title > strong {
    font-size: 1.6rem;
    color: #333;
    font-weight: 700;
}
.camp-bye-con-title > strong > strong {
    font-size: 2rem;
    font-weight: 700;
}
.camp-bye-con-title > span {
    display: inline-block;
    margin-top: .4rem;
    padding: .25rem .65rem;
    border-radius: .25rem;
    font-size: 1.2rem;
    color: #fff;
}

.camp-bye-row.winter {
    border-bottom: .25rem solid #5551D5;
}
.camp-bye-row.winter  .camp-bye-con-title > strong > strong {
    color:#5551D5;
}
.camp-bye-row.winter .camp-bye-con-title > span {
    background:#5551D5;
}
.camp-bye-row.summer {
    border-bottom: .25rem solid #FD664D;
}

.camp-bye-row.summer  .camp-bye-con-title > strong > strong {
    color:#FD664D;
}
.camp-bye-row.summer .camp-bye-con-title > span {
    background:#FD664D;
}
.camp-bye-con-textBox {
    width: 76%;
}
.camp-bye-con-imgBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.camp-bye-con-img {
    display: inline-block;
    width: 18.5rem;
    height: 13rem;
    background-size: cover;
    background: no-repeat center center;
}
.camp-bye-list {
    list-style: inside;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 1.5rem;
    row-gap: .2rem;
}
.camp-bye-list >  li {
    font-size: .8rem;
    color:#707070;
    line-height: 1.2;
}



@media screen and (max-width: 1200px) {
    .camp-bye-width {
        width: 100%;
        padding: 5rem 1.5rem;
    }
    .camp-bye-row {
        display: block;
    }
    .camp-bye-con-title {
        width: 100%;
        margin-bottom: 3rem;
    }
    .camp-bye-con-textBox {
        width: 100%;
    }
    .camp-bye-con-img {
        width: 100%;
    }
    .camp-bye-con-img:last-child {
        display: none;
    }
    .camp-bye-list {
        grid-template-columns: repeat(1,1fr);
    }
}

@media screen and (max-width: 768px) {
    .camp-bye-text > ul > li {
        font-size: 1rem;
    }
    .camp-bye-con-title > strong {
        font-size: calc(1rem + 2vw);
    }
    .camp-bye-con-title > strong > strong {
        font-size: calc(1rem + 2vw);
        margin: 0 .5rem;
    }
    .camp-bye-con-title > span {
        font-size: calc(1rem + 1vw);
    }
    .camp-bye-list >  li {
        font-size: calc(1rem + .4vw);
    }
}
