@charset "UTF-8";

.news_list .news {
    border-bottom: 1px solid var(--dark-200);
    transition-duration: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .news_list .news:hover {
        background: var(--dark-000);
    }
}

.news_list .news:last-child {
    border-bottom: none;
}

.news_list .news a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.news_left {
    display: flex;
    align-items: center;
}

.news_linst_date {
    font-size: 13px;
    font-weight: 600;
    width: 83px;
}


.type_wrap {
    width: 90px;
}

.news_linst_type {
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 12px 3px;
    border-radius: 18px;
    display: inline-block;
    background-color: var(--primary);
}

.news_linst_title {
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 700px;
    /*width: 100%;*/
}

.news_contents {
    font-size: 16px;
    font-weight: 400;
    line-height: 200%;
}

/* responsive */
@media screen and (max-width: 768px) {
    .news_list .news a {
        display: grid;
        gap: 20px;
        padding: 20px 0;
    }

    .news_left {
        display: grid;
        gap: 6px;
    }
}