@import url('/static/css/block-site-header.css?v=20260329a6');

:root {
    --news-header-height: 56px;
    --news-header-max-width: 1200px;
    --news-page-max: 1200px;
    --news-index-max: 1200px;
    --news-intro-max: 640px;
    --news-content-max: 720px;
    --news-page-gutter: 24px;
    color-scheme: light;
    --news-body-bg: var(--background);
    --news-footer-bg: var(--surface);
    --news-header-bg: color-mix(in srgb, var(--background) 88%, transparent);
    --news-header-border: rgba(15, 23, 42, 0.08);
    --news-header-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    --news-header-foreground: rgba(15, 23, 42, 0.94);
    --news-header-foreground-muted: rgba(15, 23, 42, 0.72);
    --news-header-button-bg: rgba(255, 255, 255, 0.74);
    --news-header-button-border: rgba(15, 23, 42, 0.12);
    --news-header-button-hover-bg: rgba(255, 255, 255, 0.92);
    --news-header-button-hover-border: rgba(15, 23, 42, 0.18);
    --news-header-avatar-bg: rgba(15, 23, 42, 0.08);
    --news-mobile-backdrop: rgba(15, 23, 42, 0.18);
    --news-mobile-panel-bg: rgba(255, 255, 255, 0.96);
    --news-mobile-panel-border: rgba(15, 23, 42, 0.08);
    --news-mobile-panel-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    --news-mobile-link-color: rgba(15, 23, 42, 0.94);
}

:root[data-theme="dark"],
:root[data-theme="hc-dark"] {
    color-scheme: dark;
    --news-header-bg: color-mix(in srgb, var(--background) 84%, transparent);
    --news-header-border: rgba(255, 255, 255, 0.08);
    --news-header-shadow: 0 12px 30px rgba(2, 6, 12, 0.18);
    --news-header-foreground: rgba(245, 248, 255, 0.94);
    --news-header-foreground-muted: rgba(245, 248, 255, 0.78);
    --news-header-button-bg: rgba(5, 10, 18, 0.22);
    --news-header-button-border: rgba(255, 255, 255, 0.34);
    --news-header-button-hover-bg: rgba(255, 255, 255, 0.15);
    --news-header-button-hover-border: rgba(255, 255, 255, 0.42);
    --news-header-avatar-bg: rgba(255, 255, 255, 0.12);
    --news-mobile-backdrop: rgba(6, 8, 13, 0.54);
    --news-mobile-panel-bg: rgba(8, 13, 22, 0.96);
    --news-mobile-panel-border: rgba(255, 255, 255, 0.08);
    --news-mobile-panel-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    --news-mobile-link-color: rgba(245, 248, 255, 0.94);
}

:root[data-theme="hc-light"] {
    --news-header-bg: color-mix(in srgb, var(--background) 96%, transparent);
    --news-header-border: rgba(15, 23, 42, 0.16);
    --news-header-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --news-mobile-backdrop: rgba(15, 23, 42, 0.24);
    --news-mobile-panel-bg: rgba(255, 255, 255, 0.98);
}

:root[data-theme="colorblind"] {
    --news-header-bg: color-mix(in srgb, var(--background) 90%, transparent);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: calc(var(--news-header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--news-body-bg);
    color: var(--surface-foreground);
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

body.mobile-nav-open {
    overflow: hidden;
}

.block-news-header .nav-right > .pc-notifications-widget,
.block-news-header .nav-right > .pc-auth-widget {
    min-width: 0;
    justify-content: initial;
}

.block-news-header.header {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.block-news-header.header.is-surface {
    background: linear-gradient(180deg, var(--block-header-surface-top) 0%, var(--block-header-surface-bottom) 100%);
    border-bottom-color: var(--border-subtle);
    box-shadow: var(--block-shadow-header);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.block-news-header .nav-link {
    color: var(--block-text-inverse-subtle);
}

.block-news-header .nav-link::after {
    background: currentColor;
}

.block-news-header .nav-link:hover,
.block-news-header .nav-link:focus-visible,
.block-news-header .nav-link[aria-current="page"] {
    color: var(--block-text-inverse-strong);
}

.block-news-header .mobile-nav-toggle {
    color: var(--block-text-inverse-muted);
}

.block-news-header .mobile-nav-toggle:hover {
    color: var(--block-text-inverse-strong);
}

.block-news-header .mobile-nav-backdrop {
    background: var(--block-backdrop-scrim);
}

.block-news-header .mobile-nav-panel {
    border-bottom-color: var(--border);
    background: var(--block-surface-sheet);
    box-shadow: var(--block-shadow-floating);
}

.block-news-header .mobile-nav-link {
    color: var(--block-text-inverse-strong);
    border-top-color: var(--border-subtle);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

code {
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.92em;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 16px;
    background: var(--news-header-button-bg);
    border: 1px solid var(--news-header-button-border);
    border-radius: 999px;
    color: var(--news-header-foreground);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.login-btn:hover {
    background: var(--news-header-button-hover-bg);
    border-color: var(--news-header-button-hover-border);
    color: var(--news-header-foreground);
    transform: translateY(-1px);
}

.user-dropdown {
    position: relative;
}

.user-dropdown-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.user-dropdown-btn:hover {
    opacity: 0.84;
}

.user-dropdown-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--news-header-avatar-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--news-header-foreground);
    text-transform: uppercase;
}

.user-dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-dropdown-avatar-text {
    color: var(--news-header-foreground);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--news-header-height);
    z-index: var(--z-header);
    background: var(--news-header-bg);
    border-bottom: 1px solid var(--news-header-border);
    box-shadow: var(--news-header-shadow);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    max-width: var(--news-header-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--news-page-gutter);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: auto;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 20px;
    text-decoration: none;
}

.nav-logo-image {
    display: block;
    height: 100%;
    width: auto;
}

.nav-logo-image--dark {
    display: none;
}

:root[data-theme="dark"] .nav-logo-image--light,
:root[data-theme="hc-dark"] .nav-logo-image--light {
    display: none;
}

:root[data-theme="dark"] .nav-logo-image--dark,
:root[data-theme="hc-dark"] .nav-logo-image--dark {
    display: block;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0;
    color: var(--news-header-foreground-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 1px;
    background: var(--news-header-foreground);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--news-header-foreground);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: 18px;
    min-width: 188px;
}

.nav-right > .pc-notifications-widget,
.nav-right > .pc-auth-widget {
    display: flex;
    align-items: center;
}

.nav-right > .pc-notifications-widget {
    min-width: 40px;
    justify-content: flex-end;
}

.nav-right > .pc-auth-widget {
    min-height: 34px;
    min-width: 138px;
    justify-content: flex-end;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--news-header-foreground-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-toggle:hover {
    color: var(--news-header-foreground);
}

.mobile-nav-toggle:focus-visible,
.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.news-link:focus-visible,
.article-return:focus-visible,
.article-related-link:focus-visible,
.news-index-footer-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.mobile-nav-toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon {
    transform: rotate(180deg);
}

.mobile-nav-shell {
    position: fixed;
    inset: var(--news-header-height) 0 0;
    z-index: var(--z-mobile-sidebar);
}

.mobile-nav-shell[hidden] {
    display: none;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: var(--news-mobile-backdrop);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 20px 14px;
    border-radius: 0 0 22px 22px;
    border-bottom: 1px solid var(--news-mobile-panel-border);
    background: var(--news-mobile-panel-bg);
    box-shadow: var(--news-mobile-panel-shadow);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-nav-shell.is-open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-shell.is-open .mobile-nav-panel {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: grid;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 2px;
    color: var(--news-mobile-link-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-top: 1px solid var(--news-mobile-panel-border);
}

.mobile-nav-link:first-child {
    border-top: 0;
}

.news-main {
    flex: 1 0 auto;
    padding-top: calc(var(--news-header-height) + 18px);
}

.news-shell {
    width: 100%;
    max-width: var(--news-page-max);
    margin: 0 auto;
    padding: 56px var(--news-page-gutter) 96px;
}

.news-shell--index {
    padding-top: 78px;
    padding-bottom: 112px;
}

.news-shell--article {
    padding-top: 34px;
}

.news-intro,
.news-stream,
.article-shell,
.article-main,
.article-aside {
    min-width: 0;
}

.news-intro > *,
.news-stream > *,
.article-shell > * {
    min-width: 0;
}

.news-intro {
    padding: 12px 0 40px;
    border-bottom: 1px solid var(--border);
}

.news-intro--single {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px 40px;
    align-items: end;
}

.news-intro-main--compact {
    max-width: var(--news-intro-max);
}

.news-eyebrow,
.article-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.news-eyebrow::before,
.article-eyebrow::before {
    content: none;
}

.news-title,
.article-title {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.news-title {
    font-size: 4rem;
}

.news-title--index {
    font-size: var(--fs-display-xl);
    line-height: 1.12;
    letter-spacing: 0;
}

.article-title {
    font-size: var(--fs-display-xl);
}

.news-dek,
.article-dek {
    max-width: 42ch;
    margin: 16px 0 0;
    color: var(--muted-foreground);
    font-size: var(--fs-body);
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.news-dek {
    max-width: 52ch;
    margin-top: 18px;
}

.news-intro-side {
    display: grid;
    justify-items: start;
    gap: 10px;
    padding-bottom: 6px;
}

.news-subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--surface-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-subscribe-button:hover {
    color: var(--primary);
    border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}

.news-subscribe-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.news-feed-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-feed-link:hover,
.news-feed-link:focus-visible {
    color: var(--primary);
}

.news-feed-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}

.news-feed-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    align-items: center;
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
}

.news-meta span {
    position: relative;
}

.news-meta span + span {
    margin-left: 14px;
    padding-left: 14px;
}

.news-meta span + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.45;
    transform: translateY(-50%);
}

.news-feature-title {
    margin: 0;
    font-size: var(--fs-display-lg);
    line-height: 1.12;
    letter-spacing: 0;
}

.news-feature-summary,
.news-section-copy,
.article-related-link-summary,
.news-index-footer-copy {
    color: var(--muted-foreground);
}

.news-feature-summary {
    margin: 0;
    font-size: var(--fs-body-lg);
    line-height: 1.68;
}

.news-link,
.article-return {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--surface-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
}

.news-link:hover,
.article-return:hover,
.article-related-link:hover,
.news-index-footer-links a:hover {
    color: var(--primary);
}

.news-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.news-stream {
    margin-top: 14px;
}

.news-stream--single {
    display: block;
}

.news-stream-main--narrow {
    max-width: none;
}

.news-stream-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 28px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.news-stream-count {
    margin-left: auto;
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.news-category-bar {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    min-width: 0;
}

.news-category-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted-foreground);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.news-category-tab:hover {
    color: var(--surface-foreground);
}

.news-category-tab.is-active {
    color: var(--surface-foreground);
    font-weight: 500;
}

.news-category-count {
    margin-left: 6px;
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.news-category-tab:hover .news-category-count,
.news-category-tab.is-active .news-category-count {
    color: color-mix(in srgb, var(--surface-foreground) 60%, transparent);
}

.news-category-tab:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.news-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.news-section-header--compact {
    justify-content: flex-start;
}

.news-section-title,
.article-meta-title,
.article-related-title {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.35;
    letter-spacing: 0;
}

.news-section-copy {
    max-width: 62ch;
    margin: 10px 0 0;
    font-size: var(--fs-body);
    line-height: 1.6;
}

.news-release-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.news-release-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.news-release-item:hover .news-release-title,
.news-release-item:focus-within .news-release-title {
    color: var(--primary);
}

.news-release-item:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.news-release-date {
    padding-top: 2px;
    color: var(--muted-foreground);
    font-variant-numeric: tabular-nums;
}

.news-release-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--surface-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.35;
}

.news-release-day,
.news-release-year {
    display: block;
    font-size: var(--fs-xs);
}

.news-release-day {
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.2;
}

.news-release-year {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
}

.news-release-main {
    display: grid;
    gap: 8px;
}

.news-release-title,
.article-related-link-title {
    margin: 0;
    letter-spacing: 0;
}

.news-release-title {
    font-size: 1.5rem;
    line-height: 1.24;
    transition: color 0.2s ease;
}

.news-release-title a {
    color: inherit;
    text-decoration: none;
}

.news-release-title a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.news-release-summary {
    margin: 0;
    color: var(--muted-foreground);
    max-width: 50ch;
    font-size: var(--fs-body-sm);
    line-height: 1.7;
}

.news-release-empty {
    display: grid;
    min-height: 180px;
    place-items: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: var(--fs-body);
    line-height: 1.6;
    text-align: center;
}

.news-release-empty--filter[hidden] {
    display: none;
}

.news-index-footer {
    flex-shrink: 0;
    margin-top: 28px;
    border-top: 1px solid var(--border);
    background: var(--news-footer-bg);
}

.footer-spacer {
    flex-shrink: 0;
}

.news-index-footer-inner {
    width: 100%;
    max-width: var(--news-page-max);
    margin: 0 auto;
    padding: 18px var(--news-page-gutter) 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 24px;
    align-items: start;
}

.news-index-footer-title {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.news-index-footer-copy {
    margin: 6px 0 0;
    max-width: 36ch;
    font-size: var(--fs-xs);
    line-height: 1.6;
}

.news-index-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    justify-self: end;
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    white-space: nowrap;
    text-align: right;
}

.news-index-footer-feed {
    color: var(--muted-foreground);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-index-footer-feed:hover,
.news-index-footer-feed:focus-visible {
    color: var(--primary);
}

.news-index-footer-feed:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

.article-return {
    margin-bottom: 20px;
    color: var(--muted-foreground);
}

.article-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-bottom: 14px;
}

.article-kicker-row .article-eyebrow {
    margin-bottom: 0;
}

.article-date {
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-weight: 600;
}

.article-updated-flag {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.article-head {
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.article-body-shell {
    max-width: 100%;
    min-width: 0;
}

.article-body {
    width: 100%;
    max-width: var(--news-content-max);
    color: var(--surface-foreground);
    font-size: var(--fs-body-lg);
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body h2 {
    margin: 42px 0 14px;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0;
    scroll-margin-top: calc(var(--news-header-height) + 24px);
}

.article-body h3 {
    margin: 30px 0 12px;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 0;
    scroll-margin-top: calc(var(--news-header-height) + 24px);
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body pre {
    margin: 16px 0 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.article-body ul,
.article-body ol {
    padding-left: 20px;
}

.article-body a {
    color: var(--primary);
}

.article-body blockquote {
    padding-left: 16px;
    border-left: 2px solid var(--border);
    color: var(--muted-foreground);
}

.article-body hr {
    margin: 28px 0 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.article-body pre {
    overflow: auto;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

.article-body li + li {
    margin-top: 8px;
}

.article-body .news-figure,
.article-body .news-resource-card {
    margin: 28px 0 0;
}

.article-body .news-figure img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.article-body .news-figure figcaption {
    margin-top: 10px;
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    line-height: 1.55;
}

.article-body .news-resource-card a {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--surface) 72%, var(--background));
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.article-body .news-resource-card a:hover,
.article-body .news-resource-card a:focus-visible {
    border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
    background: color-mix(in srgb, var(--surface) 86%, var(--background));
}

.article-body .news-resource-card-label {
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.35;
}

.article-body .news-resource-card strong {
    font-size: var(--fs-body-lg);
    line-height: 1.4;
}

.article-body .news-resource-card span:last-child {
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    line-height: 1.55;
}

.article-aside {
    display: grid;
    gap: 28px;
    align-content: start;
    position: sticky;
    top: calc(var(--news-header-height) + 28px);
}

.article-meta-card,
.article-related,
.article-toc {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.article-meta-list,
.article-related-list,
.article-toc-list {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.article-meta-item,
.article-related-item,
.article-toc-item {
    display: grid;
    gap: 6px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
}

.article-meta-item:first-child,
.article-related-item:first-child,
.article-toc-item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.article-meta-label {
    color: var(--muted-foreground);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.article-meta-value {
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.55;
}

.article-related-link {
    display: grid;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.article-toc-link,
.article-copy-link {
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: none;
}

.article-toc-link {
    color: var(--muted-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.article-toc-link:hover,
.article-toc-link:focus-visible {
    color: var(--surface-foreground);
}

.article-copy-link {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--surface-foreground);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.article-copy-link:hover,
.article-copy-link:focus-visible {
    border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
    color: var(--primary);
}

.article-related-link-title {
    font-size: var(--fs-body-lg);
    line-height: 1.42;
}

.article-related-link-summary {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .article-shell,
    .news-index-footer-inner {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
    }

    .news-index-footer-meta {
        justify-self: start;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --news-page-gutter: 18px;
    }

    .header-inner {
        gap: 10px;
        justify-content: space-between;
    }

    .nav-center {
        display: none;
    }

    .nav-left {
        margin-right: 0;
        min-width: 0;
        gap: 10px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .nav-right {
        margin-left: 0;
        gap: 8px;
        min-width: 0;
        flex-shrink: 0;
    }

    .nav-right > .pc-notifications-widget {
        display: none;
    }

    .nav-right .login-btn {
        min-height: 32px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .nav-right .user-dropdown-btn {
        padding: 6px;
    }

    .nav-right .pc-auth-widget .user-dropdown-avatar-text,
    .nav-right .pc-auth-widget [data-playcity-auth-user-name] {
        display: none !important;
    }

    .news-shell {
        padding-top: 32px;
        padding-bottom: 72px;
    }

    .news-shell--index {
        padding-top: 44px;
        padding-bottom: 76px;
    }

    .news-intro--single {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .news-title--index,
    .news-feature-title {
        font-size: var(--fs-display-lg);
    }

    .article-title {
        font-size: var(--fs-display-lg);
    }

    .news-intro {
        padding-bottom: 28px;
    }

    .news-intro-side {
        gap: 8px;
        padding-bottom: 0;
    }

    .news-release-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-category-bar {
        gap: 16px;
        padding-bottom: 2px;
    }

    .news-category-tab {
        min-height: 26px;
        font-size: var(--fs-body);
    }

    .news-stream-toolbar {
        margin-bottom: 16px;
    }

    .news-release-date {
        display: flex;
        gap: 8px 12px;
        align-items: baseline;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .news-release-kicker {
        margin-bottom: 0;
        font-size: var(--fs-sm);
    }

    .news-release-year {
        margin-top: 0;
    }

    .news-section-header {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .article-title {
        font-size: var(--fs-h1);
        line-height: 1.24;
        word-break: break-all;
    }

    .article-dek {
        max-width: 100%;
        font-size: var(--fs-body);
    }

    .article-body,
    .article-body p,
    .article-body li {
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .block-news-header .nav-right {
        display: none;
    }

    .news-main {
        padding-top: calc(var(--news-header-height) + 16px);
    }

    .news-shell {
        padding-top: 24px;
        padding-bottom: 56px;
    }

    .news-index-footer-inner {
        padding-bottom: 28px;
    }

    .news-title--index,
    .news-feature-title {
        font-size: var(--fs-display);
        line-height: 1.16;
    }

    .article-title {
        font-size: var(--fs-h1);
        line-height: 1.24;
    }

    .article-body {
        font-size: var(--fs-body);
        line-height: 1.76;
    }
}
