.news-archive-page {
    width: 100%;
    padding: 18px 20px 28px;
    color: #ffffff;
}

.news-archive-page * {
    box-sizing: border-box;
}

.news-archive-heading {
    min-height: 110px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: #0b1728;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px 5px 0 0;
}

.news-archive-heading > div:first-child > span {
    display: block;
    margin-bottom: 7px;

    color: var(--ffo-gold, #f0c545);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.news-archive-heading h1 {
    margin: 0;

    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.news-archive-heading p {
    margin: 8px 0 0;

    color: #9eabc0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.news-archive-heading__actions {
    flex: 0 0 auto;

    display: grid;
    gap: 7px;
    justify-items: stretch;
}

.news-archive-heading__actions strong,
.news-archive-heading__actions a {
    min-width: 150px;
    min-height: 37px;
    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: none;
}

.news-archive-heading__actions strong {
    color: var(--ffo-gold, #f0c545);
    background: #101d31;
    border: 1px solid rgba(240, 197, 69, 0.62);
}

.news-archive-heading__actions a {
    color: #07111f;
    background: var(--ffo-gold, #f0c545);
    border: 1px solid var(--ffo-gold, #f0c545);
}

.news-archive-heading__actions a:hover,
.news-archive-heading__actions a:focus-visible {
    background: #f7d15a;
    outline: none;
}

.news-archive-error {
    padding: 14px 16px;

    color: #ffd7dc;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;

    background: #2a1116;
    border: 1px solid rgba(168, 63, 72, 0.8);
}

.news-archive-empty {
    min-height: 360px;
    padding: 40px 80px;

    display: grid;
    place-items: center;
    align-content: center;
    gap: 11px;

    text-align: center;

    background: #07111f;
    border-top: 3px solid var(--ffo-gold, #f0c545);
}

.news-archive-empty > span {
    color: var(--ffo-gold, #f0c545);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.09em;
}

.news-archive-empty strong {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.news-archive-empty p {
    max-width: 580px;
    margin: 0;

    color: #9eabc0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.news-archive-empty a {
    min-width: 180px;
    min-height: 46px;
    margin-top: 8px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07111f;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;

    background: var(--ffo-gold, #f0c545);
    border: 1px solid var(--ffo-gold, #f0c545);
}

.news-archive-layout {
    height: 650px;

    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);

    overflow: hidden;

    background: #07111f;
    border: 1px solid rgba(240, 197, 69, 0.48);
    border-top: 0;
}

.news-archive-list {
    min-width: 0;
    min-height: 0;

    display: grid;
    grid-template-rows: 55px minmax(0, 1fr);

    background: #0b1728;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.news-archive-list > header {
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: #101d31;
    border-bottom: 2px solid var(--ffo-gold, #f0c545);
}

.news-archive-list > header span {
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.news-archive-list > header strong {
    color: var(--ffo-gold, #f0c545);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.news-archive-list nav {
    min-height: 0;
    overflow-y: auto;
}

.news-archive-item {
    min-height: 66px;
    padding: 9px 11px;

    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 8px;

    color: #dce4f2;
    text-decoration: none;

    background: #0b1728;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.news-archive-item:hover,
.news-archive-item:focus-visible {
    color: #ffffff;
    background: #101d31;
    outline: none;
}

.news-archive-item.is-active {
    background: #101d31;
    box-shadow: inset 3px 0 0 var(--ffo-gold, #f0c545);
}

.news-archive-item__number {
    color: var(--ffo-gold, #f0c545);
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
}

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

.news-archive-item__main strong,
.news-archive-item__main small {
    display: block;
}

.news-archive-item__main strong {
    overflow: hidden;

    color: inherit;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 900;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-archive-item__main small {
    margin-top: 4px;
    overflow: hidden;

    color: #708198;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-archive-story {
    min-width: 0;
    min-height: 0;

    overflow-y: auto;

    background: #0b1728;
}

.news-archive-story__header {
    padding: 26px 28px 22px;

    background: #101d31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-archive-story__meta {
    margin-bottom: 9px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--ffo-gold, #f0c545);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-archive-story__header h2 {
    margin: 0;

    color: #ffffff;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.news-archive-story__header > p {
    margin: 12px 0 0;

    color: #b9c4d3;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 750;
}

.news-archive-story__body {
    padding: 24px 28px 38px;

    color: #dce4f2;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.news-archive-story__body p {
    margin: 0 0 17px;
}

.news-archive-story__body h3 {
    margin: 28px 0 12px;

    color: var(--ffo-gold, #f0c545);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
    text-transform: uppercase;
}

.news-archive-story__body blockquote {
    margin: 22px 0;
    padding: 15px 18px;

    color: #ffffff;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 800;
    font-style: italic;

    background: #101d31;
    border-left: 4px solid var(--ffo-gold, #f0c545);
}

.news-archive-story__strong {
    color: #ffffff;
    font-weight: 950 !important;
}
