body {
    margin: 0 auto;
    box-sizing: border-box;
}
li {
    list-style: none;
}
.edit_wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}
.edit_wrap .edit_inner {
    width: 1400px;
    margin: 0 auto;
    padding : 20px 0;
}
.edit_wrap .edit_inner button {
    border: none;
    background-color: inherit;
    width: 100%;
    position: relative;
}
.edit_wrap .edit_inner .selectset-toggle {
    border: 1px solid #eaeaea;
    line-height: 300%;
    cursor: pointer;
    width : 100%;
    position: relative;
}
.edit_wrap .edit_inner .edit_top_wrap .selectset-toggle:hover{
    cursor: pointer;
}
.edit_wrap .edit_inner .selectset-list {
    box-sizing: border-box;
    position: absolute;
    width: 15.5%;
    background : #fff;
}
.edit_wrap .edit_inner .edit_tit_wrap {
    width: 60%;
    margin-left : 10px;
}
.edit-area{
    display: flex;
    margin : 10px auto;
}
.edit-area .edit-cont{
    width : 20%;
}

/* 기본 상태에서는 아래쪽 화살표 */
.selectset-toggle::after {
    content: '▼'; /* 기본 화살표 */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color : #000;
}
/* 열렸을 때 위쪽 화살표로 변경 */
.selectset-toggle[aria-expanded="true"]::after {
    content: '▲'; /* 열렸을 때 화살표 */
    color : #000;
}
.edit_wrap .edit_inner .edit_tit_wrap input {
    width : 100%;
    line-height: 300%;
    border-radius: 15px;
    border : 1px solid #eaeaea;
    padding  : 0 10px;
}
.edit_wrap .edit_inner .edit_tit_wrap input :focus{
    border : none;
    outline: none  !important;
}
.edit_wrap .edit_inner .edit_tit_wrap input:active{
    border : 1px solid #0793aa;
    outline: #0793aa;
}
.edit_wrap .edit_inner .edit_tit_wrap input:focus-within{
    border : 1px solid #0793aa;
 
}
.edit_wrap .edit_inner .edit_tit_wrap input:focus-visible{
    outline: #0793aa;
}
.edit_wrap .edit_inner .selectset-list{
    box-shadow: 3px 5px 5px rgba(0,0,0,0.2);
    margin : 0;
    padding : 0;
}
.edit_wrap .edit_inner .selectset-list .selectset-item{
    padding : 10px;
    cursor: pointer;
}
.edit_wrap .edit_inner .selectset-list .selectset-item:hover{
    background-color: #0793aa;
    box-sizing: border-box;
    transition: all 1s ease;
    color : #fff;
}
.edit_wrap .edit_inner button:hover{
    color : #fff;
    box-sizing: border-box;
}
.selectset .selectset-toggle span{
    color : #000;
}
.edit_bottom_wrap img{
    height: fit-content;
}
/*** 에디터 하단***/
.edit_tag input{
    border : none; 
    width : 85%;   
    line-height: 200%;
    margin : 10px 0;
}
.edit_tag input:active{
    border : none;
}
.edit_tag input:focus-visible{
    outline: none;
}
.edit_tag label span{
    line-height: 200%;
    margin-top: 5px;
}
.edit_tag input{
    border : 1px solid #eaeaea;
    border-radius: 15px;
    padding : 7px;
    width : 95%;
    margin-bottom : 10px;
    box-sizing: border-box;
}
.edit_tag input:active{
    outline : 1px solid #0793aa;
    box-sizing: border-box;
}
.edit_tag input:focus{
    outline : 1px solid #0793aa;
    box-sizing: border-box;
}
.edit_file{
    display: flex;
    column-gap: 10px;
}
.file_wrap{
    width: 50%;
  
    padding : 10px 0;
    box-sizing: border-box;
    border-radius: 15px;
}
.file_wrap .upload-name{
    display: inline-block;
    height : 40px;
    padding : 0 10px;
    vertical-align: middle;
    width : 28%;
    color: #999;
}
.file_wrap .upload-name:active{
    outline: 1px solid #0793aa;
}
.file_wrap .upload-name:focus-visible{
    outline: 1px solid #0793aa;
}
.file_wrap input{
    position : absolute;
    width : 0;
    padding : 0;
    height: 0;
    overflow: hidden;
    border: 0;
}
.file_wrap input[type="file"]{
    display: none;
}
.file_wrap label{
    display: inline-block;
    margin-right : 10px;
    padding : 10px 20px;
    background-color : #333;
    cursor: pointer;
    border-radius: 15px;
    color : #fff;
}
.edit_save{
    margin : 20px auto;
    text-align: center;
}
.edit_save_wrap .edit_save #save_btn{
    width : 30%;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: #0793aa;
    border-radius: 15px;
    padding : 10px 20px;
    margin : 0 auto;
    color : #fff;
}
@media only screen and (max-width : 1400px){
    .edit_wrap .edit_inner{
        width : 100%;
    }
    .edit_wrap .edit_inner .edit_tit_wrap {
        width : 75%;
    }
    .edit_bottom_wrap img{
        width : 100%;
    }
}
@media only screen and (max-width : 768px){
    .edit_top_wrap{
        box-sizing: border-box;
        width : 100%;
    }
    .edit_wrap .edit_inner{
        padding : 20px 10px;
        width : 100%;
        box-sizing: border-box;
    }
    .edit_wrap .edit_inner .selectset-toggle{
        border-radius: 15px;
        padding : 0.7rem 0;
        font-size: 1.1rem;
    }
    .edit-area{
        flex-direction: column;
        row-gap: 10px;
        justify-content: center;
        box-sizing: border-box;
    }
    .edit-area div{
        width : 100% !important;
        box-sizing: border-box;
    }
    .edit_wrap .edit_inner .edit_tit_wrap{
        margin : 0;
      
    }
    .edit_wrap .edit_inner .edit_tit_wrap input{
        box-sizing: border-box;
        padding : 0.7rem 0;
        font-size: 1.1rem;
    }
    .edit_wrap .edit_inner .selectset-list{
        width : 97%;
    }
    .edit_wrap .edit_inner .selectset-list .selectset-item{
        box-sizing: border-box;
    }
    .edit_wrap .edit_inner .edit_tit_wrap input {
        text-align: center;
    }
    .selectset-toggle::after {
        font-size: 1.3rem;
        right : 1.4rem;
    }
    .edit_tag input {
        width : 90%;
    }
    .edit_file{
        flex-direction: column;
        box-sizing: border-box;
        width : 100%;
        column-gap: 0;
    }
    .edit_file .file_wrap{
        width : 100%;
        box-sizing: border-box;
    }
    .file_wrap .upload-name{
        width : 70%;
    }
    .edit_save_wrap .edit_save #save_btn{
        font-size : 1rem;
    }
    .file_wrap label{
        font-size: 0.9rem;
    }
    .edit_bottom_wrap img{
        max-width : 768px;
        box-sizing: border-box;
        width : 100%;
    }
    .edit_tag{
        width : 100%;
        box-sizing: border-box;
    }
}


/* 디테일 페이지 */
.detail_wrap{
    margin : 0 auto;
    width : 100%;
}
.detail_wrap .detail_top{
    width : 1400px;
    margin : 0 auto;
    padding : 100px 0 0;
}
.detail_wrap .detail_top h5{
    font-size : 1.2rem;
    color : #0793aa;
    margin-bottom : 15px;
    font-weight: 600;
}
.detail_wrap .detail_top h3{
    font-size: 2.2rem;
    font-weight: 700;
}
.detail_wrap .detail_top .detail_top2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin : 70px auto 50px;
    box-sizing: border-box;
}
.detail_wrap .detail_top .detail_top2 .copy_link{
    width : 30px;
    height : 30px;
}
.detail_wrap .detail_top .detail_top2 .copy_link a{
    display: block;
}

.detail_wrap .detail_top .detail_top2 .detail_date{
    font-weight: 700;
    font-size: 1.4rem;
}
.detail_wrap .detail_bottom_wrap{
    background-color: #eaeaea;
    padding : 50px 0;
    margin-bottom: 100px;
}
.detail_wrap .detail_bottom_innner{
    width : 1400px;
    margin : 0 auto;
}
.detail_wrap .detail_bottom_innner img{
    margin-bottom : 50px;
}
.detail_wrap .detail_bottom_innner .write_img{
    text-align: center;
}
.detail_wrap .detail_bottom_innner .text_wrap{
    font-size: 1.2rem;
    line-height: 150%;
    margin-bottom: 40px;
}

.detail_wrap .detail_bottom_innner .tag_list ul{
    width : 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: center;
}
.detail_wrap .detail_bottom_innner .tag_list ul li{
    background-color: #0793aa;
    border-radius: 20px;
    padding : 15px 30px;
    color : #fff;
    font-weight: 500;
}

.banner_wrap{
    background-color: #0793aa;
    width : 100%;
    padding : 80px 50px;
}
.banner_wrap .banner_inner{
    width : 1400px;
    margin : 0 auto;
    display: flex;
    justify-content: space-between;
}
.banner_wrap .banner_inner .banner_left{
    color : #fff;
    font-size: 1.8rem;
}
.banner_wrap .banner_inner .banner_right{
    display: flex;
    flex-wrap: nowrap;
    column-gap: 10px;
}
.banner_wrap .banner_inner .banner_right li{
    color : #fff;
   
}
.banner_wrap .banner_inner .banner_right li a{
    border: 1px solid #fff;
    border-radius: 20px;
    padding : 10px 20px;
}
.banner_wrap .banner_inner .banner_right li:nth-child(1) a{
    background-color: #fff;
    color : #0793aa;
    font-weight: 500;
    
}
.banner_wrap .banner_inner .banner_right li:nth-child(1) a:hover{
   font-weight: 900;
   transition: all 1s ease;
   background-color: #0793aa;
   color : #fff;
}
@media only screen and (max-width : 1400px) {
    .detail_wrap .detail_top{
        width : 98%;
    }
    .detail_wrap .detail_top .detail_top2 {
        margin : 70px auto 30px;
    }
    .detail_wrap .detail_bottom_innner{
        width : 100%;
    }
    .detail_wrap .detail_top .detail_top2 .copy_link{
        width : 20px;
        margin-top : 4px;
    }
    .banner_wrap{
        box-sizing : content-box;
        width : 100%;
        padding : 80px 0;
        margin : 0 auto;
    }
    .banner_wrap .banner_inner{
        width : 100%;
        box-sizing : border-box;
        margin : 0 auto;
        padding : 80px 10px;
        flex-direction: column;
        row-gap: 35px;

    }
    .detail_wrap .detail_bottom_innner .text_wrap {
        font-size: 1.1rem;
    }
    .tag_list{
        width : 100%;
    }
    .detail_wrap .detail_bottom_innner .tag_list ul li{
        padding : 10px 20px;
        font-size : 1rem;
    }
    .detail_wrap .detail_bottom_wrap{
        box-sizing : border-box;
        width : 100%;
        padding : 70px 10px;  

    }
    .detail_wrap .detail_top .detail_top2{
        justify-content: left;
        column-gap: 10px;
    }
    .detail_wrap .detail_bottom_innner img{
        max-width : 100%;
        width : fit-content;
    }
    .banner_wrap .banner_inner .banner_left{
        font-size: 2rem;
        line-height: 150%;
        width : 100%;
        text-align: center;
    }
    .banner_wrap .banner_inner .banner_right{
        width : 100%;
        justify-content: center;        
    }
    .banner_wrap .banner_inner .banner_right li a{
        font-size : 1.5rem;
        padding : 10px 20px;
    }
    .detail_wrap .detail_top .detail_top2 .detail_date{
        font-size : 1.5rem;
        font-weight : 400;
    }
    .detail_wrap .detail_top h3 {
        font-size : 2.1em;
    }
    .detail_wrap .detail_top h5{
        font-size : 1.5rem;
    }
}
@media only screen and (max-width : 768px){
    .detail_wrap .detail_top h5 {
        font-size: 1.3rem;
    }
    .banner_wrap {
        padding : 30px 0;
    }
    .banner_wrap .banner_inner .banner_left{
        font-size : 1.5rem;
    }
    .banner_wrap .banner_inner .banner_right{
        flex-wrap: wrap;
        row-gap: 40px;
    }
    .banner_wrap .banner_inner .banner_right li a{
        font-size : 1.1rem;

    }
}