.top-event-info{
    margin : 0 0 60px;
    background-color : #f7f7f7;
    padding : 32px 142px 44px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    border: 1px solid #ededed;
    border-radius: 12px;
}

.top-event-info .event-title{
    color : #1c1c1c;
    font-size : 24px;
    text-align: center;
}

.top-event-info p{
    font-weight : 300;
    color : #1c1c1c;
}

.top-event-info + .searchForm .input-search{
    font-size : 14px;
    font-weight: 300;
}

.top-event-info + .searchForm .input-search-wrap{
    max-width : 672px;
    /*width : 95%;*/
    height : 44px;
    margin : 0 auto 20px;
}

.select-event-wrap{
    max-width : 672px;
    width : calc(100% - 20px);
    margin : 0 auto 60px;

}

.select-event-wrap > ul{
    display : grid;
    grid-template-columns: repeat(2, 1fr);
    gap : 16px;
    margin-bottom : 40px;
}

.select-event-wrap > ul > li button{
    border: 1px solid #efefef;
    height : 44px;
    border-radius: 8px;
    font-size : 14px;
    font-weight : 500;
    color : #1c1c1c;
    width: 100%;
    transition: 0.3s;
    background-color: #fff;
}
.select-event-wrap > ul > li button:hover{
    /*box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;*/
}

.select-event-wrap > ul > li button.on{
    background-color: #efefef;
}

.select-event-wrap .btn-submit{
    width : 100%;
    background-color : #3a4c40;
    border-radius: 4px;
    height : 44px;
    font-size : 16px;
    color : #fff;
    transition: 0.3s;
    margin: 0;
}
.select-event-wrap .btn-submit:hover{
    background-color : #516959;
}




/* 이벤트 내용 리스트 */
.event-list{


}
.event-list ul{
    padding: 40px 0;
    border-top: 1px solid #ededed;
    margin-top: 40px;
    background-color: #fafafa;
}
.event-list li{
    padding : 16px 24px;
    background-color : #ffffff;
    border: 1px solid #f7f7f7;
    max-width : 844px;
    border-radius: 4px;
    width : 95%;
    margin : 0 auto 8px;
    display: grid;
    grid-template-areas: "title title"
                            "content btn"
                            "period btn"
"price btn";
    grid-template-columns: 4fr 1fr;
    align-items: center;
    row-gap: 8px;
    column-gap: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    transition: 0.2s;
}
.event-list ul#grpUl.info-box li.default{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.event-list ul#grpUl.info-box li.default div.info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
}
.event-list ul#grpUl li div.info p:nth-child(1) .icon{
width: 40px;
    height: 40px;
}
.event-list ul#grpUl li div.info p:nth-child(2){
    font-size: 20px;
    font-weight: 700;
}
.event-list ul#grpUl li div.info p:nth-child(3){
    font-size: 16px;
    font-weight: 500;
}
.event-list li:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border: 1px solid #e6e6e6;
}
.event-list .event-title{
    /*height: 40px;*/
    padding: 10px 0;
    color : #1c1c1c;
    font-size : 16px;
    font-weight : 700;
    display : flex;
    align-items: center;
    justify-content : flex-start;
    margin-bottom : 0;
    grid-area: title;
    border-bottom: 1px solid #efefef;
    flex-wrap: wrap;
    row-gap: 8px;
}

.event-list .event-title > span{
    padding: 4px 8px;
    min-width: 48px;
    background-color : #846b64;
    color : #fff;
    font-size : 15px;
    /*font-family: 'Noto Sans KR', sans-serif;*/
    text-align: center;
    font-weight : 700;
    margin-right : 16px;
    box-sizing: border-box;
}

.event-list .event-content{
    font-size: 14px;
    font-weight : 300;
    margin-bottom : 0;
    color : #767676;
    grid-area: content;
}

.event-list .event-period{
    color : #1c1c1c;
    grid-area: period;
}

.event-list .event-price{
    color : #1c1c1c;
    grid-area: price;
}

.event-list .btn-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-area: btn;
    row-gap: 10px;
}
.event-list .btn-wrap .event-num{
    width: 100%;
    text-align: center;
}

.event-list .btn-wrap button{
    width : 107px;
    height : 40px;
    border-radius : 40px;
    font-size : 14px;
    color: #1c1c1c;
    border: 1px solid rgba(28,28,28,0.12);
    background-color: rgba(28,28,28,0.07);
    transition: 0.2s;

}
.event-list .btn-wrap button:hover{
    background-color: rgba(28,28,28,0.12);
}
.btn-consult{
    background-color : #1c1c1c;
    color : #fff;
    height : 60px;
    /*border-radius: 8px;*/
    width : 100%;
    font-size : 20px;
    font-weight : 500;
    margin : 50px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: 0.3s;
    border-radius: 8px;
}
.btn-consult:hover{
    background-color: #3c3c3c;
}
@media screen and (max-width: 1016px){
    .btn-consult{
        width: calc(100% - 20px);
        margin: 0 10px;
    }

}
@media screen and (max-width: 820px){
    .top-event-info{
        padding: 30px 20px;
    }
    .top-event-info .event-title{
        justify-content: center;
    }
}
@media screen and (max-width: 480px){
    .event-list .event-title{
        font-size : 16px;
        margin-bottom : 0;
    }
    .event-list li{
        padding : 20px 10px;
    }
    .select-event-wrap > ul{
        gap: 10px;
    }

}