.page-news {
    --news-gold: #D4AF37;
    --news-purple: #9D4EDD;
    --news-crimson: #E63946;
    position: relative;
    z-index: 0;
    padding: 24px 18px 60px;
    background-image: radial-gradient(rgba(229, 231, 235, 0.055) 1px, transparent 1px);
    background-size: 26px 26px;
}

.page-news .breadcrumb {
    max-width: var(--container-w);
    margin: 0 auto 24px;
    font-size: 14px;
}

.page-news .news-hero {
    position: relative;
    overflow: hidden;
    max-width: var(--container-w);
    margin: 0 auto 28px;
    padding: 36px 22px 42px;
    background: linear-gradient(135deg, var(--c-bg2) 0%, var(--c-bg3) 78%, rgba(212, 175, 55, 0.08) 160%);
    border: 2px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-news .news-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--c-gold), var(--c-cyan));
}

.page-news .news-hero-flag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 14px;
}

.page-news .news-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 7vw, 56px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--c-text);
    margin: 0 0 16px;
}

.page-news .news-hero-eyebrow {
    display: block;
    font-size: 0.5em;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--c-gold);
    margin-bottom: 8px;
}

.page-news .news-hero-desc {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text2);
    margin: 0 0 22px;
}

.page-news .news-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-news .news-hero-actions .btn {
    min-height: 44px;
    justify-content: center;
}

.page-news .news-ghost {
    position: absolute;
    right: -18px;
    bottom: -34px;
    font-family: var(--font-heading);
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(212, 175, 55, 0.2);
    pointer-events: none;
    user-select: none;
}

@supports (-webkit-text-stroke: 2px #000) {
    .page-news .news-ghost {
        color: transparent;
        -webkit-text-stroke: 2px rgba(212, 175, 55, 0.28);
    }
}

.page-news .news-ticker {
    position: relative;
    overflow: hidden;
    max-width: var(--container-w);
    margin: 0 auto 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
    padding: 14px 18px;
    background: var(--c-bg2);
    border-left: 4px solid var(--c-gold);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.page-news .news-ticker::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
    animation: news-ticker-flow 3.2s ease-in-out infinite;
}

@keyframes news-ticker-flow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        transform: translateX(350%);
        opacity: 0;
    }
}

.page-news .news-ticker-cell {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
}

.page-news .news-ticker-live {
    align-items: center;
    font-size: 14px;
    color: var(--c-text);
}

.page-news .news-ticker-label {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--c-text2);
}

.page-news .news-ticker-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--c-gold);
    white-space: nowrap;
}

.page-news .news-ticker-unit {
    font-size: 13px;
    color: var(--c-text2);
}

.page-news .news-layout {
    max-width: var(--container-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.page-news .news-main {
    min-width: 0;
}

.page-news .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    margin-bottom: 18px;
}

.page-news .section-desc {
    font-size: 14px;
    color: var(--c-text2);
}

.page-news .news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.page-news .news-filter .filter-btn {
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid rgba(157, 78, 221, 0.45);
    background: rgba(157, 78, 221, 0.12);
    color: var(--c-text);
    cursor: pointer;
    transition: var(--transition);
}

.page-news .news-filter .filter-btn:hover,
.page-news .news-filter .filter-btn:focus-visible {
    border-color: var(--c-purple);
    background: rgba(157, 78, 221, 0.24);
}

.page-news .news-filter .filter-btn.is-active {
    background: var(--c-purple);
    border-color: var(--c-purple);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.25);
}

.page-news .news-list {
    position: relative;
    border-left: 2px solid rgba(212, 175, 55, 0.25);
    padding-left: 14px;
    margin-top: 14px;
    scroll-margin-top: 20px;
}

.page-news .news-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 26px 0;
    border-top: 1px solid rgba(229, 231, 235, 0.09);
    transition: background var(--transition);
    scroll-margin-top: 20px;
}

.page-news .news-item:first-child {
    border-top: none;
    padding-top: 6px;
}

.page-news .news-item:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent 75%);
}

.page-news .news-index {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    color: rgba(212, 175, 55, 0.6);
}

@supports (-webkit-text-stroke: 1px #000) {
    .page-news .news-index {
        color: transparent;
        -webkit-text-stroke: 1px rgba(212, 175, 55, 0.55);
    }
}

.page-news .news-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.page-news .news-item-time {
    font-size: 13px;
    color: var(--c-text2);
}

.page-news .news-item-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--c-text);
    margin: 0 0 8px;
}

.page-news .news-item-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text2);
    margin: 0 0 12px;
}

.page-news .news-item-link,
.page-news .news-pick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-cyan);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.page-news .news-item-link:hover,
.page-news .news-pick-link:hover {
    border-bottom-color: var(--c-cyan);
}

.page-news .news-item-link span[aria-hidden="true"],
.page-news .news-pick-link span[aria-hidden="true"] {
    display: inline-block;
    transition: transform var(--transition);
}

.page-news .news-item-link:hover span[aria-hidden="true"],
.page-news .news-pick-link:hover span[aria-hidden="true"] {
    transform: translateX(4px);
}

.page-news .news-thumb {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.32);
    box-shadow: var(--shadow);
}

.page-news .news-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.page-news .news-topics,
.page-news .news-picks,
.page-news .news-subscribe {
    background: var(--c-bg2);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(229, 231, 235, 0.08);
}

.page-news .news-side-title {
    position: relative;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c-text);
    margin: 0 0 16px;
    padding-left: 14px;
}

.page-news .news-side-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    height: calc(100% - 6px);
    width: 4px;
    background: var(--c-gold);
    border-radius: 2px;
}

.page-news .news-topics-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-news .news-topics-note {
    font-size: 13px;
    line-height: 1.6;
    color: var(--c-text2);
    margin: 16px 0 0;
}

.page-news .news-picks {
    border: 2px solid rgba(212, 175, 55, 0.22);
}

.page-news .news-pick-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 18px;
    background: rgba(11, 15, 20, 0.4);
    scroll-margin-top: 20px;
}

.page-news .news-pick-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.page-news .news-pick-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.page-news .news-pick-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-gold);
}

.page-news .news-pick-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--c-text);
    margin: 0;
}

.page-news .news-pick-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text2);
    margin: 0;
}

.page-news .news-pick-row {
    border-left: 3px solid var(--c-cyan);
    padding: 4px 0 14px 14px;
    margin-bottom: 14px;
    scroll-margin-top: 20px;
}

.page-news .news-pick-row:last-child {
    margin-bottom: 0;
}

.page-news .news-pick-row-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--c-text);
    margin: 8px 0 6px;
}

.page-news .news-pick-row-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--c-text2);
    margin: 0 0 8px;
}

.page-news .news-subscribe {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(157, 78, 221, 0.12) 65%, transparent);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.page-news .news-subscribe-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text2);
    margin: 0 0 14px;
}

.page-news .news-subscribe-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-news .news-subscribe-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text);
}

.page-news .news-subscribe-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    transform: rotate(45deg);
}

.page-news .news-subscribe-btn {
    width: 100%;
    margin-bottom: 14px;
}

.page-news .news-subscribe-note {
    font-size: 13px;
    line-height: 1.65;
    color: var(--c-text2);
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(229, 231, 235, 0.1);
}

.page-news .news-item-desc a,
.page-news .news-subscribe-note a {
    color: var(--c-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.page-news .news-item-desc a:hover,
.page-news .news-subscribe-note a:hover {
    color: var(--c-gold-light);
}

.page-news .news-item-link:focus-visible,
.page-news .news-pick-link:focus-visible,
.page-news .news-filter .filter-btn:focus-visible,
.page-news .news-hero-actions a:focus-visible,
.page-news .news-subscribe-btn:focus-visible {
    outline: 2px solid var(--c-cyan);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .page-news .news-ticker::after {
        animation: none;
    }

    .page-news .news-item-link span[aria-hidden="true"],
    .page-news .news-pick-link span[aria-hidden="true"] {
        transform: none;
    }
}

@media (min-width: 960px) {
    .page-news {
        padding: 40px 36px 96px;
    }

    .page-news .news-hero {
        padding: 52px 56px 56px;
        margin-bottom: 32px;
    }

    .page-news .news-hero-title {
        font-size: 56px;
    }

    .page-news .news-hero-desc {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .page-news .news-ghost {
        font-size: 230px;
        right: 24px;
        bottom: -48px;
    }

    .page-news .news-ticker {
        padding: 18px 28px;
        gap: 12px 40px;
    }

    .page-news .news-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 48px;
    }

    .page-news .news-list {
        padding-left: 26px;
    }

    .page-news .news-item {
        grid-template-columns: 62px minmax(0, 1fr) 240px;
        gap: 16px 28px;
        align-items: center;
        padding: 30px 0;
    }

    .page-news .news-thumb {
        grid-column: auto;
        max-width: 240px;
    }

    .page-news .news-topics,
    .page-news .news-picks,
    .page-news .news-subscribe {
        padding: 26px 24px;
    }

    .page-news .news-side {
        gap: 28px;
    }
}
