.title_box .title{
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 50px;
}
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.news-cont {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}
#wrap .content_box {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 35px;
}

#wrap .content_box .left {
    width: 35%;
    border-radius: 20px;
}
#wrap .content_box .news-txt {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#wrap .content_box  h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

#wrap .content_box .date {
    font-size: 16px;
    color: #949cab;
    font-weight: 300;
}

#wrap .content_box .content {
    padding-top: 1;
    font-size: 18px;
    line-height: 1.3;
    color: #949cab;
    font-weight: 400;
    margin-top: 15px;
}

#wrap .content_box .news-img {
    width: 100%; /* 너비를 100%로 설정 */
    height: 200px; /* 원하는 고정 높이 설정 */
    object-fit: cover; /* 비율 유지하며 지정된 높이에 맞게 잘림 */
}
#wrap .content_box .news-link {
    font-size: 18px;
    padding: 5px 15px;
    line-height: 1.3;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    color: #7f7f7f;
    border: 1px solid #7f7f7f;
    justify-content: center;
}
#wrap .content_box .news-link img{
    width: 12%;
}
.pagination {
    display: flex;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    gap: 5px;
    margin-top: 100px;
    align-items: flex-start;
}

.pagination a {
    text-decoration: none;
    padding: 2px 10px;
    transition: background-color 0.3s;
    color: #808080;
    font-size: 18px;
    font-weight: 500;
}
.pagination .arrow {
    background-color: unset;
    color: unset;
}
.pagination .current {
    color: #1b8ba1;
    border-bottom: 1px solid #1b8ba1;
    font-size: 18px;
    padding: 2px 10px;
}
.top_button_wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}
.top_button {
    display: inline-block;
    text-align: right;
}
.top_button img{
    width: 60%;
}
@media screen and (max-width: 767px) {
    
    .title_box .title {
        display: block;
        margin: 0 auto 20px;
        font-size: 20px;
        font-weight: 600;
    }
    .inner {
        width: 90%;
        max-width: 100%;
        padding-bottom: 80px;
    }
    #wrap .content_box .news-link {
        font-size: 18px;
        padding: 5px 20px;
        line-height: 1.3;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 25px;
        font-weight: 600;
        margin-top: 15px;
    }
    #wrap .content_box {
        display: flex;
        align-items: stretch;
        gap: 20px;
        flex-direction: column;
    }
    #wrap .content_box .left {
        width: 100%;
        border-radius: 20px;
    }
    #wrap .content_box .news-txt {
        width: 100%;
    }
    .top_button img{
        width: 40%;
    }
}