.two_news_box {
    width: 100%;
    background-color: #F9F9F7;
    padding-top: calc(20px + 2rem);
    padding-bottom: calc(17px + 5rem);
}

.two_news {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.two_news_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(9px + 3rem);
}

.two_news_item {
    width: 31.3415%;
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: calc(4px + 1.5rem);
    transition: .3s;
}

.two_news_item_pic {
    width: 100%;
    height: calc(40px + 15rem);
    position: relative;

}

.two_news_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.two_news_item_time {
    width: calc(40px + 5rem);
    height: calc(10px + 1.5rem);
    background: rgba(182, 120, 101, 0.8);
    position: absolute;
    right: 0;
    bottom: calc(-1px - 0.5rem);
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(4px + 0.5rem);
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two_news_item .two_news_item_title {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
    letter-spacing: 1px;
    margin-top: calc(6px + 1.5rem);

}

.two_news_item .p2 {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(4px + 0.5rem);
    color: #333333;
    line-height: calc(8px + 0.5rem);
    margin-top: calc(1px + 1.5rem);
    transition: .3s;
}

.two_news_item:hover {
    border-bottom: 1px #B67865 solid;
}

.two_news_item:hover .p2 {
    color: #B67865;
}

@media screen and (max-width: 1100px){
    .two_news_item{
        width: 100%;
    }
    .two_news_item_pic {
      
        height: calc(40px + 42rem);
       
    }
    .two_news_item .two_news_item_title{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_news_item .p2{
        font-size: calc(10px + 1rem);
    }
    .two_news_item_time {
        width: calc(73px + 5rem);
        height: calc(15px + 1.5rem);
      font-size: calc(9px + 1rem);
    }
}