.two_news_box {
    width: 100%;
    padding-top: calc(6px + 5rem);
    padding-bottom: calc(3px + 3rem);
}

.two_news {
    max-width: 1600px;
    width: 85%;
    margin: auto;
}

.news_list_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(6px + 2rem);
    
}

.news_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: calc(0px + 0.1rem) #DBDBDB solid;
    padding-bottom: calc(6px + 2rem);
    transition: .3s;
}
.news_list_item:hover .news_more{
    background-color: #521FEA;
}
.news_list_item:hover{
    border-color: #521FEA;
}
.news_list_item_time .p1 {
    font-family: Roboto_Regular;
    font-weight: 600;
    font-size: calc(6px + 1.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
}

.news_list_item_time .p2 {
    font-family: Roboto_Regular;
    font-weight: 500;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
}

.news_list_item_pic {
    width: 28.75%;
    height: calc(20px + 15rem);
}

.news_list_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_list_item_con {
    width: 54.5%;
}

.news_list_item_con .p1 {
    font-family: Roboto_Bold;
    font-weight: 500;
    font-size: calc(4px + 1rem);
    color: #000000;
    line-height: calc(6px + 1.5rem);
}

.news_list_item_con .p2 {
    font-family: Roboto_Regular;
    font-weight: 300;
    font-size: calc(4px + 0.5rem);
    color: #333333;
    line-height: calc(8px + 1rem);
    margin-top: calc(4px + 1rem);
}

.news_list_item_con .news_more {
    width: calc(14px + 2rem);
    height: calc(14px + 2rem);
    background: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(10px + 2rem);
    transition: .3s;
}

.news_list_item_con .news_more img {
    width: calc(10px + 0.5rem);
}
@media screen and (max-width: 1100px){
    .news_list_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    
    .news_list_item_time .p1{
        font-size: calc(12px + 1rem);
        text-align: center;
    }
    .news_list_item_time .p2{
        font-size: calc(10px + 1rem);
        text-align: center;
    }
    .news_list_item_pic{
        width: 100%;
        height: calc(100px + 30rem);
    }
    .news_list_item_con{
        width: 100%;
    }
    .news_list_item_con .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .news_list_item_con .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}