.news_wrap {
    max-width: 1335px;
    width: 100%;
    margin: 110px auto 0;
    border-radius: 20px;
    box-shadow: 6px 6px 10px rgba(138, 163, 212, 0.6);
    padding: 75px 0 110px;
    background-color: white;
}

.news_wrap h2 {
    font-size: 35px;
    line-height: 1;
    text-align: center;
    color: #007260;
}

.news_wrap .news_list {
    max-width: 990px;
    width: 90%;
    margin: 70px auto 0;
}

.news_wrap .news_list a {
    display: block;
    width: 100%;
    padding: 10px 40px 10px 5px;
    position: relative;
    /* border-bottom: dotted 2px #007260; */
    transition: all 0.3s;
}
.news_wrap .news_list a + a {
    margin-top: 30px;
}

.news_wrap .news_list a::after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 1px;
    background-color: #007260;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.6s ease;
}

.news_wrap .news_list a:hover::after {
    width: 100%;
}

.news_wrap .news_list a .ul {
    width: 100%;
    display: flex;
    gap: 7px;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news_wrap .news_list a .ul .dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #007260;
}

.news_wrap .news_list a .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news_wrap .news_list a .info .genre {
    padding: 0 10px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: white;
    background-color: #ed81a5;
}

.news_wrap .news_list a .info .date {
    font-size: 16px;
    line-height: 1;
}

.news_wrap .news_list a .ttl {
    font-size: 17px;
    line-height: 26px;
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news_wrap .news_list a .arrow {
    width: 10px;
    position: absolute;
    bottom: 15px;
    right: 17px;
    transition: all 0.6s;
}
.news_wrap .news_list a:hover .arrow {
    right: 5px;
}

@media screen and (max-width: 700px) {
    .news_wrap {
        margin-top: 55px;
        padding: 50px 0 75px;
    }

    .news_wrap h2 {
        font-size: 26px;
    }

    .news_wrap .news_list {
        margin-top: 35px;
        padding: 0 15px;
    }

    .news_wrap .news_list a {
        padding: 20px 0;
    }

    .news_wrap .news_list a + a {
        margin-top: 0;
    }

    .news_wrap .news_list a .info {
        justify-content: space-between;
    }

    .news_wrap .news_list a .info .genre {
        font-size: 10px;
    }

    .news_wrap .news_list a .info .date {
        color: #808080;
        font-size: 12px;
    }

    .news_wrap .news_list a .arrow {
        display: none;
    }

    .news_wrap .list_btn {
        margin: 30px auto 0;
    }
}
