.news-channel-page {
    min-height: 720px;
    padding: 32px 0 60px;
    color: var(--site-text);
    background: var(--site-background);
}

.news-list-page {
    width: min(1200px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 26px;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 24px;
}

.breadcrumb a:hover {
    color: var(--site-red);
}

.news-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.news-tab {
    display: inline-flex;
    width: 124px;
    min-width: 124px;
    height: 50px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8cbd2;
    border-radius: 4px;
    color: #b26c78;
    background: #f4e7ea;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.news-tab:hover {
    color: var(--site-red);
    border-color: rgba(201, 0, 43, .32);
    background: #f9edf0;
}

.news-tab.is-active {
    color: #fff;
    border-color: var(--site-red);
    background: var(--site-red);
}

.recruitment-channel-tabs .news-tab {
    width: auto;
}

.news-list-card {
    overflow: hidden;
    padding: 24px 40px 28px;
    border-top: 4px solid var(--site-red);
    border-radius: 10px;
    background: var(--site-card);
    box-shadow: 0 10px 30px rgba(23, 32, 39, .08);
}

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-list__item {
    display: grid;
    min-height: 56px;
    grid-template-columns: 18px minmax(0, 1fr) 124px;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--site-border);
    color: var(--site-text);
    font-size: 18px;
    line-height: 28px;
}

.news-list__dot {
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1;
    text-align: center;
}

.news-list__item a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list__item a:hover {
    color: var(--site-red);
}

.news-list__item a:focus-visible,
.news-tab:focus-visible,
.news-pagination__next:focus-visible {
    outline: 2px solid var(--site-red);
    outline-offset: 2px;
}

.news-list__item time {
    color: var(--site-muted);
    font-size: 16px;
    line-height: 28px;
    text-align: right;
    white-space: nowrap;
}

.news-list__empty {
    margin: 0;
    padding: 72px 24px;
    text-align: center;
}

.news-pagination {
    display: flex;
    min-height: 136px;
    padding-top: 36px;
    align-items: flex-start;
    justify-content: center;
}

.news-pagination__next,
.news-pagination__end {
    display: inline-flex;
    width: 260px;
    min-width: 260px;
    height: 46px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce1e5;
    border-radius: 8px;
    color: var(--site-muted);
    font-size: 18px;
    line-height: 1;
    text-align: center;
    background: #fff;
}

.news-pagination__next:hover {
    color: var(--site-red);
    background: #f9e9ec;
}

@media (max-width: 767px) {
    .news-channel-page {
        min-height: 0;
        padding: 24px 0 36px;
    }

    .news-list-page {
        width: calc(100% - 24px);
    }

    .breadcrumb {
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 24px;
    }

    .news-list-page[data-category-code="xzwdgs"] .breadcrumb {
        margin-bottom: 26px;
    }

    .news-tabs {
        gap: 8px;
        margin-bottom: 16px;
    }

    .news-tab {
        width: auto;
        min-width: 0;
        height: 44px;
        flex: 1;
        padding: 0 8px;
        font-size: 17px;
    }

    .news-list-card {
        padding: 10px 16px 20px;
        border-top-width: 3px;
        border-radius: 8px;
    }

    .news-list {
        padding: 0;
    }

    .news-list__item {
        min-height: 0;
        grid-template-columns: 10px minmax(0, 1fr);
        gap: 5px;
        padding: 12px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .news-list__item a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .news-list__item time {
        grid-column: 2;
        font-size: 16px;
        line-height: 22px;
        text-align: right;
    }

    .news-pagination {
        min-height: 82px;
        padding-top: 20px;
    }

    .news-pagination__next,
    .news-pagination__end {
        width: min(240px, 100%);
        min-width: 0;
        height: 44px;
        font-size: 16px;
    }
}
