html,body{
    font-size: 16px;
    letter-spacing: -0.7px;
}
body{
    position: relative;
    font-family: 'Pretendard-Regular';
}
section{
    max-width: 1440px;
    margin: 50px auto;
}
@media screen and (max-width:1440px) {
    section{
        max-width: 1280px;
    }
}
@media screen and (max-width:1280px) {
    section{
        max-width: 1024px;
    }
}
@media screen and (max-width:1024px) {
    section{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}
@media screen and (max-width:860px) {
    html,body{
        font-size: 14px;
    }
}


/* 타이틀 */
h3{
    display: inline-block;
    font-size: 2rem;
    position: relative;
}
h3::after{
    content: '';
    position: absolute;
    right: -12px;
    width: 8px;
    height: 8px;
    background-color: #658f99;
}
.more{
    padding: 5px 30px;
    border: 2px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
    color: #ccc;
    transition: 0.2s;
}
.more:hover{
    color: #fff;
    background-color: #ccc;
}

@media screen and (max-width:860px) {
    h3{
        font-size: 1.6rem;
    }
}