.banner-wrapper,
.banner-box,
.banner-box img {
    width: 100%;
    min-width: var(--ew);
    height: 260px;
    object-fit: cover;
    display: flex;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.news-list {
    width: 1164px;
    min-height: calc(100vh - 669px);
    height: auto;
    margin: 0 auto;
}

.news-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 27px 20px 27px 10px;
    border-bottom: 1px solid #D4D4D4;
    cursor: pointer;
}

.news-list .news-row:last-child {
    border: none;
}

.news-info {
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.news-date {
    display: flex;
    flex-direction: column;
}

.news-date-text {
    font-size: 24px;
    line-height: 24px;
    white-space: nowrap;
    margin-bottom: 30px;
}

.news-date .arrow-box {
    padding-left: 8px;
}

.division {
    margin: 12px 18px 0 18px;
    width: 36px;
    height: 1px;
    background-color: #D4D4D4;
}

.news-content {
    width: 660px;
    display: flex;
    flex-direction: column;
}

.news-title {
    color: #808080;
    margin-bottom: 20px;
}

.news-details {
    font-size: 12px;
    color: #808080;
}

.news-img,
.news-img img {
    width: 200px;
    height: 130px;
}

.empty {
    height: calc(100vh - 669px);
}

@media (max-width: 850px) {

    .banner-wrapper,
    .banner-box,
    .banner-box img {
        width: auto;
        height: 120px;
    }

    .news-list {
        width: 100%;
        margin: 0;
        padding: 40px 20px 0 20px;
        min-height: calc(100vh - 343px);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .news-row {
        width: calc(50% - 10px);
        padding: 0;
        flex-direction: column;
        position: relative;
        margin-bottom: 20px;
        border: none;
    }

    .news-list .news-row:nth-child(2n) {
        margin-left: 20px;
    }

    .news-info {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-content: space-between;
        justify-content: space-between;
        overflow: hidden;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .news-date {
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0 10px;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .news-date-text {
        font-size: 14px;
        color: #FFFFFF;
        margin: 0;
    }

    .news-date .arrow-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .division {
        display: none;
    }

    .news-content {
        width: 100%;
        padding: 10px;
    }

    .news-title {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        margin: 0;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        color: #4D4D4D;
    }

    .news-details {
        display: none;
    }

    .news-img {
        width: 100%;
        height: auto;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.1);
        margin-bottom: 60px;
    }

    .news-img img {
        width: 100%;
        height: auto;
        display: flex;
        border-radius: 4px;
    }

    .pagination {
        margin: 30px 0 40px 0;
    }

    .empty {
        height: calc(100vh - 343px);
    }
}

@media (max-width: 660px) {
    .news-list {
        min-height: calc(100vh - 439px);
    }

    .empty {
        height: calc(100vh - 439px);
    }
}

@media (max-width: 500px) {
    .news-title {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .news-list {
        padding-top: 30px;
    }

    .news-row {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 20px;
        border-bottom: 1px solid #D4D4D4;
    }

    .news-list .news-row:last-child {
        margin: 0;
    }

    .news-info {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        overflow: hidden;
    }

    .news-date {
        padding: 15px 15px 0 15px;
        background: none;
    }

    .news-title {
        font-size: 12px;
        height: 20px;
        color: #FFFFFF;
        margin-bottom: 10px;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        text-overflow: unset;
    }

    .news-details {
        color: #FFFFFF;
        display: block;
        line-height: 20px;
        height: 40px;
        margin: 0;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        opacity: 0.8;
    }

    .news-img {
        margin: 0;
    }
}