.h_logo {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}


.page_main {
    width: 100%;
    height: 500px;
    position: relative;
}
.main_bg {
    width: 100%;
    height: 100%;
}
.main_inner {
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
    background-color: rgba(86, 86, 86, .7);
    position: absolute;
    top: 0;
    left: 0;
}
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 40px;
}
.main_title {
    font-size: var(--ft80);
    font-weight: var(--bold);
    color: var(--white);
}

.page_wrap {
    margin-top: 80px;
    margin-bottom: 140px;
}
.sub_title {
    font-size: var(--ft40);
    font-weight: var(--medium);
    margin-bottom: 40px;
}

.labal_list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.label_all {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    cursor: pointer;
    padding-right: 20px;
    position: relative;
    display: flex;
    align-items: center;
}
.label_all::after {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background-color: var(--dark-line);
    position: absolute;
    right: 0;
}
.labal_list label {
    width: 100%;
    display: block;
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid var(--dark-line);
    cursor: pointer;
}
.labal_list label p {
    color: var(--gray-300);
}
.labal_list  input:checked ~ label {
    background-color: var(--gray-500);
}
.labal_list  input:checked ~ label p {
    color: var(--white);
}

.flex {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total {
    font-weight: var(--semi-bold);
}

/*-- search_box --*/
.search_box {
    width: 100%;
    max-width: 300px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search_btn {
    width: 24px;
    height: 24px;
}


/*-- list --*/
.list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.list_item {
    width: 100%;
    padding-bottom: 30px;
    position: relative;
}
.list_item::before,
.list_item::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--dark-line);
}
.list_item::after {
    width: 0;
    left: auto;
    right: 0;
    background-color: var(--gray-500);
    transition: all .4s ease;
}
.list_item a {
    display: flex;
    gap: 40px;
}
.list_img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.list_img .end {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.00) 0%, #1F1F1F 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.list_img .end p {
    width: 100%;
    height: 40px;
    background-color: var(--gray-500);
    font-weight: var(--bold);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
.list_img img {
    transition: transform .4s ease;
}
.list_text_box {
    width: 100%;
    padding: 40px 0;
}
.list_title {
    font-size: var(--ft28);
    font-weight: var(--bold);
    margin-bottom: 30px;
}


.list_item:nth-child(2n) .list_img {
    order: 2;
}

.list_item:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.list_item:hover .list_img img {
    transform: scale(1.03);
}

/*-- null_box --*/
.null_box {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.null_box p {
    font-size: var(--ft18);
    color: var(--gray-400);
}

@media all and (max-width: 1600px) {
    .page_main {
        height: 40vh;
        min-height: 380px;
    }
    .main_title {
        font-size: var(--ft60);
    }
}

@media all and (max-width: 1400px) {
    .page_main {
        min-height: 320px;
    }
    .main_inner {
        padding-bottom: 60px;
    }
    .container {
        gap: 30px;
    }
    .main_title {
        font-size: var(--ft50);
    }
    .sub_title {
        font-size: var(--ft32);
    }
}

@media all and (max-width: 1200px) {
    .list_img {
        max-width: 340px;
    }
}

@media all and (max-width: 900px) {
    .main_title {
        font-size: var(--ft40);
    }

    .list_item a {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .list_text_box {
        padding: 0;
    }
    .list_state {
        margin: 0 auto;
    }
    .list_title {
        font-size: var(--ft24);
        text-align: center;
        margin-bottom: 16px;
    }
    .list_date {
        width: 100%;
        font-size: var(--ft16);
        justify-content: center;
    }
    .list_item:nth-child(2n) .list_img {
        order: 0;
    }
}

@media all and (max-width: 600px) {
    .main_inner {
        padding-bottom: 30px;
    }
    .container {
        gap: 16px;
    }
    .main_title {
        font-size: var(--ft32);
    }
    .page_wrap {
        margin-top: 60px;
        margin-bottom: 100px;
    }
    .sub_title {
        font-size: var(--ft28);
    }
    .labal_list {
        gap: 10px;
    }
    .label_all {
        padding-right: 10px;
    }
    .labal_list label {
        padding: 6px 20px;
    }
    .flex {
        flex-direction: column;
        align-items: start;
        gap: 30px;
        margin-top: 50px;
    }
    .list {
        grid-template-columns: repeat(1, 1fr);
    }
    .list_title {
        font-size: var(--ft20);
    }
    .list_date img {
        width: 14px;
        height: 14px;
    }
    .list_date * {
        font-size: var(--ft16);
    }
    .list_date > div {
        gap: 8px;
    }
    .list_date .bold {
        display: none;
    }
}