.header_box {
    position: static !important;
}

.two_news_box {
    width: 100%;
    padding-top: calc(1px + 4rem);
    padding-bottom: calc(25px + 5rem);
}

.two_news {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.two_news_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(5px + 2rem);
}

.two_news_list_item {
    width: 31.5853%;
    height: calc(44px + 20rem);
    border-radius: calc(5px + 0.25rem);
    position: relative;
    overflow: hidden;
}

.two_news_list_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(5px + 0.25rem);
    transition: .5s;
}

.two_news_list_time {
    width: calc(12px + 2rem);
    height: calc(20px + 2rem);
    background: #E60013;
    border-radius: 0px 0px calc(0px + 0.1rem) calc(0px + 0.1rem);
    position: absolute;
    top: 0;
    left: calc(10px + 1.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(2px + 0.1rem);
}

.two_news_list_time .p1 {
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(10px + 0.5rem);
    color: #FFFFFF;
    line-height: calc(3px + 1rem);
}

.two_news_list_time .p2 {
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(5px + 0.25rem);
    color: #FFFFFF;
    line-height: calc(2px + 0.5rem);
}
.two_news_list_title{
    position: absolute;
    padding:0 calc(7px + 2rem);
    bottom: calc(2px + 2rem);
font-family: BOOKOS;
font-weight: 300;
font-size: calc(6px + 0.5rem);
color: #FFFFFF;
line-height: calc(9px + 0.5rem);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.two_news_list_item:hover img{
    transform: scale(1.1);
}

@media (max-width: 1100px){
    .two_news_list_item{
        width: 100%;
        height: calc(44px + 52rem);
        
    }
    .two_news_list_title{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_news_list_time {
        width: calc(45px + 2rem);
        height: calc(48px + 2rem);
        gap: calc(14px + 0.1rem);
    }
    .two_news_list_time .p1{
        font-size: calc(14px + 1rem);
    }
    .two_news_list_time .p2{
        font-size: calc(8px + 1rem);
    }
}