.news-public--classic {
    --news-black: #111111;
    --news-dark: #202020;
    --news-red: #b80000;
    --news-red-dark: #8f0000;
    --news-white: #ffffff;
    --news-soft: #f5f5f5;
    --news-border: #d8d8d8;
    --news-muted: #666666;

    overflow-x: hidden;
    background: #ffffff;
    color: var(--news-black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

.news-public--classic,
.news-public--classic * {
    box-sizing: border-box;
    text-shadow: none !important;
}

.news-public--classic a {
    color: inherit;
    text-decoration: none;
}

.news-public--classic a:hover,
.news-public--classic a:focus {
    color: var(--news-red);
}

.news-public--classic .news-shell {
    width: min(1320px, calc(100% - 32px));
    margin-inline: auto;
}

/* -------------------------------------------------
   Dark archive header, based on the newspaper layout
   ------------------------------------------------- */

.news-archive-hero {
    margin: 0;
    padding: clamp(38px, 5.5vw, 66px) 0 clamp(32px, 4.5vw, 52px);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)),
        url("/static/img/bg-img/breadcumb2.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.news-archive-hero--compact {
    padding-block: clamp(30px, 4vw, 46px);
}

.news-archive-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 30px;
    align-items: end;
}

.news-archive-hero__intro {
    min-width: 0;
}

.news-archive-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-archive-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--news-red);
}

.news-archive-hero h1 {
    margin: 10px 0 12px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.news-archive-hero--compact h1 {
    font-size: clamp(34px, 5vw, 52px);
}

.news-archive-hero__intro p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.55;
}

.news-archive-hero__panel {
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.news-archive-hero__panel--compact {
    padding: 18px 20px;
}

.news-archive-hero__panel h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
}

.news-archive-hero__panel p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
}

.news-archive-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.news-archive-search__field {
    position: relative;
    min-width: 0;
}

.news-archive-search__field i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #666666;
}

.news-archive-search input {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px 10px 39px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    box-shadow: none;
}

.news-archive-search button,
.news-archive-hero__link {
    min-height: 46px;
    padding: 10px 17px;
    border: 1px solid #ffffff;
    border-radius: 0;
    background: #ffffff;
    color: #111111 !important;
    font-size: 13px;
    font-weight: 800;
}

.news-archive-search button:hover,
.news-archive-search button:focus,
.news-archive-hero__link:hover,
.news-archive-hero__link:focus {
    border-color: var(--news-red);
    background: var(--news-red);
    color: #ffffff !important;
}

.news-archive-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* -------------------------------------------------
   Category and breaking navigation
   ------------------------------------------------- */

.news-category-nav--classic {
    border-top: 0;
    border-bottom: 1px solid #c9c9c9;
    background: #ffffff;
}

.news-category-nav--classic .news-category-nav-inner {
    min-height: 50px;
    gap: 0;
    overflow-x: auto;
}

.news-category-nav--classic .news-category-nav-inner > a {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 14px 16px 11px;
    border-bottom: 4px solid transparent;
    color: #272727;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hover only inactive navigation tabs */
.news-category-nav--classic
.news-category-nav-inner > a:not(.is-active):hover,
.news-category-nav--classic
.news-category-nav-inner > a:not(.is-active):focus {
    border-bottom-color: var(--news-red);
    background-color: #f3f3f3;
    color: var(--news-black);
    text-decoration: none;
}

/* Active navigation tab in every state */
.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active,
.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active:hover,
.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active:focus,
.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active:active,
.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active:visited {
    border-bottom-color: var(--news-red) !important;
    background-color: var(--news-black) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
}

.news-public--classic
.news-category-nav--classic
.news-category-nav-inner > a.is-active > span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.news-category-nav--classic .news-category-nav-inner > a > span {
    margin-left: 5px;
    color: #777777;
    font-size: 11px;
}

.news-category-nav--classic .news-category-nav-staff {
    margin-left: auto;
}

.news-breaking-strip--classic {
    border-bottom: 1px solid var(--news-border);
    background: #f2f2f2;
}

.news-breaking-strip--classic .news-breaking-inner {
    min-height: 44px;
}

.news-breaking-strip--classic .news-breaking-inner > strong {
    padding-right: 16px;
    color: var(--news-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-breaking-strip--classic .news-breaking-links a {
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

/* -------------------------------------------------
   Main spacing and headings
   ------------------------------------------------- */

.news-editorial-main--classic,
.news-filtered-main--classic,
.news-detail-main--classic {
    padding-top: 38px;
    padding-bottom: 64px;
}

.news-section--classic,
.news-related-section--classic {
    margin-top: 44px;
}

.news-section-header--classic,
.news-results-header--classic {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding: 12px 0 15px;
    border-top: 3px solid var(--news-black);
    border-bottom: 1px solid var(--news-border);
}

.news-section-header--classic h2,
.news-results-header--classic h2 {
    margin: 0;
    color: var(--news-black);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.news-section-header--classic > span,
.news-results-header--classic > strong {
    color: var(--news-muted);
    font-size: 12px;
    font-weight: 700;
}

.news-section-header--classic > a {
    flex: 0 0 auto;
    color: #333333;
    font-size: 13px;
    font-weight: 800;
}

.news-section-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--news-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -------------------------------------------------
   Lead story and latest rail
   ------------------------------------------------- */

.news-lead-layout--classic {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, 0.9fr);
    gap: 34px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--news-border);
}

.news-lead-story--classic {
    min-width: 0;
    background: #ffffff;
}

.news-lead-story--classic .news-lead-media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #dddddd;
}

.news-lead-story--classic .news-lead-image,
.news-lead-story--classic .news-lead-media img,
.news-lead-story--classic .news-lead-media > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-lead-story--classic .news-lead-play {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
}

.news-lead-content {
    padding-top: 17px;
}

.news-card-meta,
.news-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--news-muted);
    font-size: 12px;
    line-height: 1.4;
}

.news-card-meta > a,
.news-detail-meta > a {
    color: var(--news-red);
    font-weight: 800;
}

.news-lead-content h2 {
    max-width: 880px;
    margin: 8px 0 10px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.news-lead-content h2 a {
    color: #151515;
}

.news-lead-content > p {
    max-width: 760px;
    margin: 0 0 16px;
    color: #4c4c4c;
    font-size: 15px;
    line-height: 1.55;
}

.news-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--news-black);
    border-radius: 0;
    background: var(--news-black);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
}

.news-primary-button:hover,
.news-primary-button:focus {
    border-color: var(--news-red);
    background: var(--news-red);
}

.news-lead-side--classic {
    min-width: 0;
    padding-left: 24px;
    border-left: 1px solid var(--news-border);
}

.news-rail-heading {
    margin-bottom: 4px;
    padding-top: 11px;
    border-top: 3px solid var(--news-black);
}

.news-section-heading {
    margin: 0;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 800;
}

.news-side-story--classic {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid var(--news-border);
}

.news-side-story--classic .news-side-media {
    display: block;
    overflow: hidden;
    width: 116px;
    aspect-ratio: 16 / 10;
    background: #dddddd;
}

.news-side-story--classic .news-side-image,
.news-side-story--classic .news-side-media img,
.news-side-story--classic .news-side-media > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-side-story__body {
    min-width: 0;
}

.news-side-meta {
    color: var(--news-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.news-side-story--classic h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 5px 0 0;
    color: #202020;
    font-size: 16px;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -0.01em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* -------------------------------------------------
   Explicit classic card grid: no masonry or zigzag
   ------------------------------------------------- */

.news-card-grid--classic {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-rows: 1fr;
    gap: 26px 20px !important;
    align-items: stretch !important;
    columns: auto !important;
    column-count: initial !important;
}

.news-card-grid--classic > .news-bulletin-card {
    break-inside: auto !important;
}

.news-bulletin-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    height: 100%;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--news-border);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    transform: none !important;
}

.news-bulletin-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #dddddd;
}

.news-bulletin-card__image,
.news-bulletin-card__media img,
.news-bulletin-card__media > div {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-bulletin-card__play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: rgba(17, 17, 17, 0.92);
    color: #ffffff;
    font-size: 12px;
}

.news-bulletin-card__flag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    background: var(--news-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-bulletin-card__body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 14px 15px 15px;
}

.news-bulletin-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 17px;
    color: var(--news-muted);
    font-size: 11px;
    line-height: 1.35;
}

.news-bulletin-card__meta > a {
    color: var(--news-red);
    font-weight: 800;
}

.news-bulletin-card__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: calc(1.22em * 2);
    margin: 7px 0 8px;
    color: #202020;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.016em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-bulletin-card__summary {
    display: -webkit-box;
    overflow: hidden;
    min-height: calc(1.48em * 3);
    margin: 0 0 13px;
    color: #555555;
    font-size: 13px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-bulletin-card__summary--empty {
    color: #777777;
}

.news-bulletin-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: #222222 !important;
    font-size: 12px;
    font-weight: 800;
}

.news-bulletin-card__link:hover,
.news-bulletin-card__link:focus {
    color: var(--news-red) !important;
}

/* -------------------------------------------------
   Detail page and player
   ------------------------------------------------- */

.news-detail-main--classic {
    width: min(1120px, calc(100% - 32px)) !important;
}

.news-detail-article--classic {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.news-detail-header--classic {
    max-width: 930px;
    margin: 0 0 24px;
    padding: 12px 0 0;
    border-top: 3px solid var(--news-black);
}

.news-detail-header--classic h1 {
    margin: 9px 0 11px;
    color: var(--news-black);
    font-size: clamp(34px, 4.3vw, 55px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.news-detail-summary {
    max-width: 840px;
    margin: 0;
    color: #4b4b4b;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.55;
}

.news-player-section--classic {
    margin-top: 27px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.news-video-stage--classic {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.news-video-stage--classic .news-video-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.news-player-message {
    display: none;
}

.news-player-message.is-visible {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: block;
    padding: 10px 12px;
    background: rgba(20, 20, 20, 0.9);
    color: #ffffff;
    font-size: 13px;
}

.news-player-message.is-error {
    border-left: 4px solid var(--news-red);
}

.news-playlist-section--classic {
    margin-top: 32px;
}

.news-playlist--classic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.news-playlist--classic .news-playlist-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--news-border);
    border-left: 4px solid transparent;
    border-radius: 0;
    background: #ffffff;
    text-align: left;
}

.news-playlist--classic .news-playlist-item:hover,
.news-playlist--classic .news-playlist-item:focus,
.news-playlist--classic .news-playlist-item.is-active {
    border-left-color: var(--news-red);
    background: #f7f7f7;
}

.news-playlist--classic .news-playlist-thumbnail {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dddddd;
}

.news-playlist--classic .news-playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-playlist--classic .news-playlist-text {
    min-width: 0;
}

.news-playlist--classic .news-playlist-text strong {
    display: block;
    overflow: hidden;
    color: #222222;
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-playlist--classic .news-playlist-text small,
.news-playlist--classic .news-playlist-number {
    color: var(--news-muted);
    font-size: 11px;
}

.news-transcript--classic {
    margin-top: 30px;
    border: 1px solid var(--news-border);
    border-radius: 0;
    background: #ffffff;
}

.news-transcript--classic summary {
    padding: 14px 16px;
    color: #222222;
    font-size: 14px;
    font-weight: 800;
}

.news-transcript--classic > div {
    padding: 0 16px 18px;
    color: #333333;
    font-size: 15px;
    line-height: 1.7;
}

.news-pagination {
    margin-top: 34px;
}

/* -------------------------------------------------
   Responsive layout
   ------------------------------------------------- */

@media screen and (max-width: 1100px) {
    .news-archive-hero__grid,
    .news-lead-layout--classic {
        grid-template-columns: 1fr;
    }

    .news-lead-side--classic {
        padding-left: 0;
        border-left: 0;
    }

    .news-side-story--classic {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .news-side-story--classic .news-side-media {
        width: 145px;
    }
}

@media screen and (max-width: 900px) {
    .news-card-grid--classic {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .news-playlist--classic {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 680px) {
    .news-public--classic .news-shell,
    .news-detail-main--classic {
        width: min(100% - 22px, 1320px) !important;
    }

    .news-archive-hero {
        padding-block: 34px 30px;
    }

    .news-archive-search {
        grid-template-columns: 1fr;
    }

    .news-archive-search button {
        width: 100%;
    }

    .news-card-grid--classic {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .news-section-header--classic,
    .news-results-header--classic {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .news-side-story--classic {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .news-side-story--classic .news-side-media {
        width: 110px;
    }

    .news-detail-header--classic h1 {
        font-size: clamp(31px, 10vw, 43px);
    }

    .news-playlist--classic .news-playlist-item {
        grid-template-columns: 92px minmax(0, 1fr) auto;
    }
}
/* Keep the selected News navigation tab readable */
.news-public .news-category-nav a.is-active,
.news-public .news-category-nav a.is-active:hover,
.news-public .news-category-nav a.is-active:focus {
    background: #111111;
    color: #ffffff !important;
    text-decoration: none;
}

.news-public .news-category-nav a.is-active span {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
}
/* Keep active News tab readable in every interaction state */
.news-public .news-category-nav a.is-active,
.news-public .news-category-nav a.is-active:link,
.news-public .news-category-nav a.is-active:visited,
.news-public .news-category-nav a.is-active:hover,
.news-public .news-category-nav a.is-active:focus,
.news-public .news-category-nav a.is-active:active {
    background: #111111 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none !important;
}

.news-public .news-category-nav a.is-active *,
.news-public .news-category-nav a.is-active:hover * {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ---------------------------------------------------------
   News archive filtering
   --------------------------------------------------------- */

   .news-filter-toolbar {
    margin-top: 24px;
    margin-bottom: 26px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dddddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.news-filter-toolbar__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.news-filter-toolbar__heading h2 {
    margin: 4px 0 0;
    color: #111111;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.news-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 12px;
    background: #f2f2f2;
    border: 1px solid #dddddd;
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.news-filter-reset:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    text-decoration: none;
}

.news-filter-panel {
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #dddddd;
}

.news-filter-panel .filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.news-filter-panel .filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-filter-panel label {
    margin: 0;
    color: #555555;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-filter-panel .filter-select,
.news-filter-panel #dateSelectorAll {
    min-height: 40px;
    border: 1px solid #cccccc !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    padding: 7px 11px !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none !important;
}

.news-filter-panel .filter-select:focus,
.news-filter-panel #dateSelectorAll:focus {
    border-color: #111111 !important;
    box-shadow: none !important;
}

@media screen and (max-width: 768px) {
    .news-filter-toolbar {
        padding: 14px;
    }

    .news-filter-toolbar__heading {
        align-items: flex-start;
    }

    .news-filter-panel .filter-container,
    .news-filter-panel .filter-group {
        width: 100%;
        align-items: stretch;
    }

    .news-filter-panel .filter-group {
        flex-direction: column;
    }

    .news-filter-panel label {
        width: 100%;
    }

    .news-filter-panel .filter-select,
    .news-filter-panel #dateSelectorAll {
        width: 100% !important;
        max-width: none !important;
    }
}
.news-pagination a,
.news-pagination a:visited {
    background: #111111 !important;
    border: 1px solid #111111 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.news-pagination a i {
    color: #ffffff !important;
}

.news-pagination a:hover,
.news-pagination a:focus {
    background: #ffffff !important;
    border-color: #111111 !important;
    color: #111111 !important;
}

.news-pagination a:hover i,
.news-pagination a:focus i {
    color: #111111 !important;
}