﻿:root {
    --news-brand: #1264d8;
    --news-brand-dark: #0f2f5f;
    --news-brand-soft: #edf5ff;
    --news-accent: #e33b42;
    --news-teal: #0f9f8f;
    --news-ink: #141923;
    --news-text: #3b4554;
    --news-muted: #7a8493;
    --news-line: #e4e9f1;
    --news-line-strong: #cfd7e3;
    --news-bg: #f5f7fb;
    --news-paper: #ffffff;
    --news-shadow: 0 12px 28px rgba(18, 44, 82, 0.08);
    --news-shadow-soft: 0 6px 18px rgba(18, 44, 82, 0.06);
    --news-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 0;
    background: var(--news-bg);
    -webkit-text-size-adjust: 100%;
}

body.bk-page,
body.news-page {
    min-height: 100vh;
    margin: 0;
    color: var(--news-ink);
    background: var(--news-bg);
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", sans-serif;
    font-size: 14px;
    line-height: 1.66;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

input,
button {
    font: inherit;
}

.news-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.news-site-head {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(228, 233, 241, 0.94);
    box-shadow: 0 8px 26px rgba(18, 44, 82, 0.06);
    backdrop-filter: blur(14px);
}

.news-topbar {
    color: #dbe9fb;
    background: var(--news-brand-dark);
}

.news-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 34px;
}

.news-date {
    color: #dbe9fb;
    font-size: 13px;
}

.news-top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.news-top-links a {
    color: #edf5ff;
    text-decoration: none;
    font-size: 13px;
}

.news-top-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-brand-row {
    display: grid;
    grid-template-columns: auto minmax(260px, 520px) auto;
    align-items: center;
    gap: 28px;
    min-height: 110px;
}

.news-logo {
    display: grid;
    color: var(--news-brand-dark);
    text-decoration: none;
    line-height: 1;
}

.news-logo span {
    color: var(--news-brand-dark);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.news-logo strong {
    margin-top: 8px;
    color: var(--news-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: 0.18em;
}

.news-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    min-height: 42px;
    overflow: hidden;
    border: 1px solid #bcd5f4;
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: inset 0 0 0 1px rgba(18, 100, 216, 0.03);
}

.news-search input {
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: var(--news-text);
    background: transparent;
}

.news-search input::placeholder {
    color: #9aa5b4;
}

.news-search button {
    color: #ffffff;
    border: 0;
    background: var(--news-brand);
    cursor: pointer;
    font-weight: 800;
}

.news-search button:hover {
    background: #0f56bd;
}

.news-service-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.news-service-links a {
    min-width: 78px;
    padding: 8px 11px;
    color: var(--news-brand);
    text-align: center;
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: var(--news-radius);
    background: #f8fbff;
    font-weight: 800;
}

.news-service-links a:hover {
    color: #ffffff;
    border-color: var(--news-brand);
    background: var(--news-brand);
}

.news-main-nav {
    border-bottom: 3px solid var(--news-accent);
    background: #113766;
}

.news-nav-primary {
    background: #113766;
}

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

.news-nav-primary .news-nav-row {
    padding: 11px 0;
}

.news-nav-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.news-nav-primary .news-nav-row a {
    min-height: 38px;
    padding: 0 15px;
    color: #ecf5ff;
    border-radius: 6px;
}

.news-nav-primary .news-nav-row a.is-home {
    color: #ffffff;
    background: var(--news-accent);
}

.news-nav-primary .news-nav-row a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.news-main {
    padding: 14px 0 38px;
}

.news-ticker {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    min-height: 42px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.news-ticker>strong {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    color: #ffffff;
    background: var(--news-accent);
    font-size: 14px;
}

.news-ticker-viewport {
    min-width: 0;
    overflow: hidden;
}

.news-ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: news-ticker-scroll 52s linear infinite;
}

.news-ticker:hover .news-ticker-track {
    animation-play-state: paused;
}

.news-ticker-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 28px;
    padding: 0 14px;
    white-space: nowrap;
}

.news-ticker-group a {
    position: relative;
    flex: 0 0 auto;
    color: var(--news-text);
    text-decoration: none;
}

.news-ticker-group a::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: -15px;
    width: 4px;
    height: 4px;
    background: var(--news-accent);
    border-radius: 50%;
}

.news-ticker-group a:first-child::before {
    display: none;
}

@keyframes news-ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.news-ticker-group a:hover,
.news-section-title a:hover,
.news-headline-item h3 a:hover,
.news-wire-list a:hover,
.news-company-list a:hover strong,
.news-channel-table a:hover strong,
.news-small-list a:hover,
.news-latest-card h3 a:hover,
.news-latest-foot a:hover,
.news-topic-tags a:hover,
.news-rank-list a:hover,
.bk-card h2 a:hover,
.bk-card:hover h2,
.bk-company-link:hover,
.company-article-item:hover strong,
.info-card:hover strong,
.latest-item:hover strong,
.company-mini a:hover,
.markdown-body a:hover {
    color: var(--news-accent);
}

.news-lead-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.news-cover-column,
.news-headline-column,
.news-side-box,
.news-company-board,
.news-channel-board,
.news-module,
.news-latest,
.bk-list,
.bk-panel,
.article-card,
.article-pager,
.info-section {
    background: var(--news-paper);
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    box-shadow: var(--news-shadow-soft);
}

.news-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding: 0 14px;
    border-bottom: 1px solid var(--news-line);
    background: transparent;
}

.news-section-title h2 {
    position: relative;
    margin: 0;
    padding-left: 11px;
    color: var(--news-brand-dark);
    font-size: 18px;
    line-height: 1.25;
}

.news-section-title h2::before {
    content: "";
    position: absolute;
    top: 0.18em;
    bottom: 0.18em;
    left: 0;
    width: 4px;
    border-radius: 5px;
    background: var(--news-brand);
}

.news-section-title a {
    color: var(--news-muted);
    text-decoration: none;
    font-size: 13px;
}

.news-section-title--wide {
    min-height: 46px;
}

.news-cover-list {
    display: grid;
    gap: 0;
}

.news-cover-card {
    display: grid;
    gap: 8px;
    padding: 12px;
    color: var(--news-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--news-line);
}

.news-cover-card:nth-child(n+4) {
    display: none;
}

.news-cover-card:last-child {
    border-bottom: 0;
}

.news-cover-img,
.news-latest-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9eef4;
    border-radius: 6px;
}

.news-cover-img {
    aspect-ratio: 16 / 10;
}

.news-cover-img::before,
.news-latest-thumb::before {
    content: "INDUSTRY NEWS";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 47, 95, 0.34);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    letter-spacing: 0.16em;
}

.news-cover-img img,
.news-latest-thumb img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-cover-img.is-empty::before,
.news-latest-thumb.is-empty::before {
    color: rgba(15, 47, 95, 0.46);
}

.news-cover-card strong {
    color: var(--news-ink);
    font-size: 16px;
    line-height: 1.45;
}

.news-cover-card em {
    color: var(--news-muted);
    font-size: 13px;
    font-style: normal;
}

.news-headline-list {
    padding: 0 16px;
}

.news-headline-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--news-line);
}

.news-headline-item:nth-child(n+8) {
    display: none;
}

.news-headline-item:last-child {
    border-bottom: 0;
}

.news-headline-item:first-child {
    margin: 14px 0 0;
    padding: 16px 18px;
    border: 1px solid #d9e8fb;
    border-radius: var(--news-radius);
    background: var(--news-brand-soft);
}

.news-headline-item:first-child h3 {
    text-align: center;
    font-size: 25px;
}

.news-headline-item h3 {
    margin: 0;
    color: var(--news-ink);
    font-size: 19px;
    line-height: 1.38;
    letter-spacing: 0;
}

.news-headline-item h3 a {
    color: inherit;
    text-decoration: none;
}

.news-headline-item p {
    margin: 7px 0 0;
    color: #556170;
    font-size: 14px;
    line-height: 1.74;
}

.news-headline-item div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    color: var(--news-muted);
    font-size: 13px;
}

.news-headline-item span {
    color: var(--news-brand);
    font-weight: 800;
}

.news-side-column {
    display: grid;
    gap: 14px;
}

.news-wire-list,
.news-company-list,
.news-rank-list,
.bk-side-list,
.company-article-list,
.latest-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-wire-list {
    padding: 8px 14px 12px;
}

.news-wire-list li {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid var(--news-line);
}

.news-wire-list li:nth-child(n+11) {
    display: none;
}

.news-wire-list li:last-child {
    border-bottom: 0;
}

.news-wire-list time {
    color: var(--news-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.news-wire-list a {
    color: var(--news-text);
    text-decoration: none;
    line-height: 1.47;
}

.news-company-list {
    padding: 8px 14px 12px;
}

.news-company-list li {
    border-bottom: 1px solid var(--news-line);
}

.news-company-list li:nth-child(n+7) {
    display: none;
}

.news-company-list li:last-child {
    border-bottom: 0;
}

.news-company-list a {
    display: grid;
    gap: 3px;
    padding: 10px 0;
    color: var(--news-text);
    text-decoration: none;
}

.news-company-list strong {
    color: var(--news-ink);
    font-size: 14px;
    line-height: 1.45;
}

.news-company-list span {
    color: var(--news-muted);
    font-size: 12px;
}

.news-company-board,
.news-channel-board,
.news-module-grid,
.news-latest-layout {
    margin-top: 14px;
}

.news-company-board,
.news-channel-board {
    padding-bottom: 14px;
}

.news-company-table,
.news-channel-table {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.news-company-table {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-company-table a {
    display: grid;
    gap: 6px;
    min-height: 76px;
    padding: 13px 14px;
    color: var(--news-text);
    text-decoration: none;
    border: 1px solid #dbe6f2;
    border-radius: 6px;
    background: #f8fbff;
}

.news-company-table a:hover {
    border-color: #abc9ec;
    background: #eef6ff;
}

.news-company-table strong {
    color: var(--news-brand-dark);
    font-size: 15px;
    line-height: 1.42;
}

.news-company-table span {
    align-self: end;
    color: var(--news-muted);
    font-size: 12px;
}

.news-channel-table {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.news-channel-table a {
    display: grid;
    gap: 5px;
    min-height: 78px;
    padding: 13px;
    color: var(--news-text);
    text-decoration: none;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.news-channel-table a:hover {
    border-color: #b6d4f7;
    background: #f2f7ff;
    box-shadow: 0 8px 18px rgba(18, 100, 216, 0.08);
    transform: translateY(-1px);
}

.news-channel-table strong {
    color: var(--news-brand-dark);
    font-size: 16px;
}

.news-channel-table span {
    color: var(--news-muted);
    font-size: 12px;
    line-height: 1.35;
}

.news-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.news-small-list {
    padding: 9px 14px 12px;
}

.news-small-list a {
    display: block;
    overflow: hidden;
    padding: 9px 0;
    color: var(--news-text);
    text-decoration: none;
    border-bottom: 1px solid var(--news-line);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-small-list a:nth-child(n+7) {
    display: none;
}

.news-small-list a:last-child {
    border-bottom: 0;
}

.news-small-list span {
    display: inline-block;
    max-width: 72px;
    margin-right: 7px;
    overflow: hidden;
    color: var(--news-brand);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.news-small-list .news-empty-line {
    display: block;
    max-width: none;
    padding: 24px 0;
    color: var(--news-muted);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.news-latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.news-latest-list {
    padding: 0 16px;
}

.news-latest-card {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    gap: 30px;
    padding: 24px 12px;
    border-bottom: 1px solid var(--news-line);
    align-items: center;
}

.news-latest-card:last-child {
    border-bottom: 0;
}

.news-latest-thumb {
    aspect-ratio: 16 / 10;
}

.news-latest-body {
    min-width: 0;
}

.news-latest-meta,
.news-latest-foot,
.bk-meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--news-muted);
    font-size: 13px;
}

.news-latest-meta span,
.news-keyword-link,
.bk-tag {
    color: var(--news-brand);
    font-weight: 800;
}

.news-keyword-link {
    text-decoration: none;
}

.news-latest-card h3 {
    margin: 6px 0 0;
    color: var(--news-ink);
    font-size: 19px;
    line-height: 1.4;
}

.news-latest-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-latest-card p {
    margin: 8px 0 0;
    color: #556170;
    font-size: 14px;
    line-height: 1.72;
}

.news-latest-foot {
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
}

.news-latest-foot a {
    color: var(--news-brand);
    text-decoration: none;
    font-weight: 800;
}

.news-latest-foot span {
    color: var(--news-muted);
}

.news-topic-sidebar {
    display: grid;
    gap: 14px;
}

.search-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: 22px;
    margin-bottom: 14px;
    padding: 22px 24px;
    color: var(--news-ink);
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.search-hero p {
    margin: 0 0 6px;
    color: var(--news-brand);
    font-weight: 800;
}

.search-hero h1 {
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 28px;
    line-height: 1.28;
}

.search-hero span {
    display: block;
    margin-top: 8px;
    color: var(--news-muted);
}

.search-hero-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    min-height: 42px;
    overflow: hidden;
    border: 1px solid #bcd5f4;
    border-radius: var(--news-radius);
    background: #f8fbff;
}

.search-hero-form input {
    min-width: 0;
    padding: 0 14px;
    color: var(--news-text);
    border: 0;
    outline: 0;
    background: transparent;
}

.search-hero-form button {
    color: #ffffff;
    border: 0;
    background: var(--news-brand);
    cursor: pointer;
    font-weight: 800;
}

.search-hero-form button:hover {
    background: #0f56bd;
}

.category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: 22px;
    margin-bottom: 14px;
    padding: 22px 24px;
    color: var(--news-ink);
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.category-hero p {
    margin: 0 0 6px;
    color: var(--news-brand);
    font-weight: 800;
}

.category-hero h1 {
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 30px;
    line-height: 1.25;
}

.category-hero span {
    display: block;
    margin-top: 8px;
    color: var(--news-muted);
    line-height: 1.7;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.company-library-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: 22px;
    margin-bottom: 14px;
    padding: 22px 24px;
    color: var(--news-ink);
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.company-library-hero p {
    margin: 0 0 6px;
    color: var(--news-brand);
    font-weight: 800;
}

.company-library-hero h1 {
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 30px;
    line-height: 1.25;
}

.company-library-hero span {
    display: block;
    margin-top: 8px;
    color: var(--news-muted);
    line-height: 1.7;
}

.company-library-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.company-library-results {
    overflow: hidden;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.company-library-list {
    display: grid;
    gap: 0;
    padding: 0 16px;
}

.company-library-card {
    display: grid;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--news-line);
}

.company-library-card:last-child {
    border-bottom: 0;
}

.company-library-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.company-library-card h2 {
    margin: 0;
    color: var(--news-ink);
    font-size: 20px;
    line-height: 1.4;
}

.company-library-card h2 a {
    color: inherit;
    text-decoration: none;
}

.company-library-card time {
    flex: 0 0 auto;
    color: var(--news-muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.company-library-card p {
    margin: 0;
    color: #556170;
    line-height: 1.72;
}

.company-library-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.company-library-card dl div {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--news-line);
    border-radius: 6px;
    background: #fbfdff;
}

.company-library-card dt {
    margin: 0 0 3px;
    color: var(--news-muted);
    font-size: 12px;
}

.company-library-card dd {
    margin: 0;
    overflow: hidden;
    color: var(--news-text);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-library-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.company-library-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.company-library-tags a {
    padding: 4px 8px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-size: 13px;
}

.company-library-more {
    flex: 0 0 auto;
    padding: 7px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    background: var(--news-brand);
    font-weight: 800;
}

.company-library-card h2 a:hover,
.company-library-tags a:hover {
    color: var(--news-accent);
}

.company-library-more:hover {
    background: #0f56bd;
}

.company-profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 14px;
}

.company-profile-main,
.company-contact-card,
.company-profile-stats,
.company-profile-section,
.company-side-card {
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.company-profile-main {
    position: relative;
    overflow: hidden;
    padding: 26px 28px;
    border-top: 4px solid var(--news-brand);
}

.company-profile-main::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 160px;
    height: 160px;
    opacity: 0.08;
    background:
        linear-gradient(90deg, var(--news-brand) 1px, transparent 1px),
        linear-gradient(0deg, var(--news-brand) 1px, transparent 1px);
    background-size: 18px 18px;
    transform: rotate(8deg);
    pointer-events: none;
}

.company-profile-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--news-muted);
    font-size: 13px;
}

.company-profile-breadcrumb a {
    color: var(--news-brand);
    text-decoration: none;
    font-weight: 800;
}

.company-profile-breadcrumb strong {
    color: var(--news-text);
}

.company-profile-kicker {
    margin: 0 0 8px;
    color: var(--news-accent);
    font-size: 13px;
    font-weight: 900;
}

.company-profile-main h1 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 0;
}

.company-profile-about {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 12px 0 0;
    color: #556170;
    font-size: 15px;
    line-height: 1.86;
}

.company-profile-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.company-profile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 900;
}

.company-profile-primary {
    color: #ffffff;
    background: var(--news-brand);
}

.company-profile-primary:hover {
    background: #0f56bd;
}

.company-profile-secondary {
    color: var(--news-brand);
    border: 1px solid #c9ddf6;
    background: #f8fbff;
}

.company-profile-secondary:hover {
    color: #ffffff;
    border-color: var(--news-brand);
    background: var(--news-brand);
}

.company-contact-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    border-top: 4px solid var(--news-accent);
}

.company-contact-badge {
    width: max-content;
    padding: 4px 8px;
    color: var(--news-accent);
    border: 1px solid #f3c5c8;
    border-radius: 6px;
    background: #fff8f8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-weight: 900;
}

.company-contact-card h2 {
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 22px;
    line-height: 1.35;
}

.company-contact-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.company-contact-card dl div {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--news-line);
    border-radius: 6px;
    background: #fbfdff;
}

.company-contact-card dt,
.company-info-grid dt {
    margin: 0 0 4px;
    color: var(--news-muted);
    font-size: 12px;
}

.company-contact-card dd,
.company-info-grid dd {
    margin: 0;
    color: var(--news-ink);
    font-weight: 800;
    line-height: 1.55;
}

.company-profile-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 14px;
    overflow: hidden;
}

.company-profile-stats div {
    min-width: 0;
    padding: 14px 16px;
    border-right: 1px solid var(--news-line);
    background: #fbfdff;
}

.company-profile-stats div:last-child {
    border-right: 0;
}

.company-profile-stats span {
    display: block;
    color: var(--news-muted);
    font-size: 12px;
}

.company-profile-stats strong {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: var(--news-brand-dark);
    font-size: 18px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.company-profile-content,
.company-profile-sidebar {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.company-profile-section {
    overflow: hidden;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 16px;
}

.company-info-grid div {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--news-line);
    border-radius: 6px;
    background: #fbfdff;
}

.company-info-grid .company-info-grid-wide {
    grid-column: 1 / -1;
}

.company-section-lead {
    margin: 0;
    padding: 16px 16px 0;
    color: #556170;
    line-height: 1.78;
}

.company-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px 18px;
}

.company-product-tags a {
    padding: 6px 10px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-weight: 800;
}

.company-product-tags a:hover,
.company-update-item:hover strong,
.company-side-links a:hover,
.company-profile-breadcrumb a:hover {
    color: var(--news-accent);
}

.company-update-list {
    display: grid;
    padding: 0 16px;
}

.company-update-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 15px 0;
    color: var(--news-text);
    border-bottom: 1px solid var(--news-line);
}

.company-update-item:last-child {
    border-bottom: 0;
}

.company-update-item time {
    color: var(--news-muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.company-update-item strong {
    display: block;
    color: var(--news-ink);
    font-size: 17px;
    line-height: 1.45;
}

.company-update-title {
    color: inherit;
    text-decoration: none;
}

.company-update-title:hover {
    color: var(--news-accent);
}

.company-update-item p {
    margin: 6px 0 0;
    color: #556170;
    line-height: 1.7;
}

.company-update-item span {
    display: block;
    margin-top: 7px;
    color: var(--news-muted);
    font-size: 13px;
}

.company-update-meta a {
    color: var(--news-brand);
    text-decoration: none;
    font-weight: 800;
}

.company-update-meta a:hover {
    color: var(--news-accent);
}

.company-side-card {
    overflow: hidden;
}

.company-check-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 8px 14px 12px;
    list-style: none;
}

.company-check-list li {
    padding: 11px 0;
    border-bottom: 1px solid var(--news-line);
}

.company-check-list li:last-child {
    border-bottom: 0;
}

.company-check-list strong {
    display: block;
    color: var(--news-brand-dark);
}

.company-check-list span {
    display: block;
    margin-top: 4px;
    color: #556170;
    font-size: 13px;
    line-height: 1.65;
}

.company-side-links {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.company-side-links a {
    padding: 10px 12px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-weight: 900;
}

.category-results {
    overflow: hidden;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.category-article-list {
    padding: 0 16px;
}

.category-article-card {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--news-line);
    align-items: center;
}

.category-article-card:last-child {
    border-bottom: 0;
}

.category-article-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    background: #e9eef4;
}

.category-article-thumb::before {
    content: "CHANNEL";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 47, 95, 0.34);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    letter-spacing: 0.16em;
}

.category-article-thumb img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-article-body {
    min-width: 0;
}

.category-article-card h2 {
    margin: 7px 0 0;
    color: var(--news-ink);
    font-size: 20px;
    line-height: 1.4;
}

.category-article-card h2 a {
    color: inherit;
    text-decoration: none;
}

.category-article-card p {
    margin: 8px 0 0;
    color: #556170;
    font-size: 14px;
    line-height: 1.72;
}

.category-article-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 12px;
    margin-top: 9px;
}

.category-article-foot a {
    color: var(--news-brand);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.search-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.search-results {
    background: var(--news-paper);
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    box-shadow: var(--news-shadow-soft);
}

.search-result-list {
    padding-top: 0;
}

.search-empty {
    padding: 28px 24px;
}

.search-empty strong {
    display: block;
    color: var(--news-brand-dark);
    font-size: 20px;
}

.search-empty p {
    margin: 8px 0 0;
    color: var(--news-muted);
}

.news-topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
}

.news-topic-tags a {
    padding: 6px 9px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-size: 13px;
}

.news-rank-list {
    padding: 8px 14px 12px;
    counter-reset: news-rank;
}

.news-rank-list li {
    counter-increment: news-rank;
    border-bottom: 1px solid var(--news-line);
}

.news-rank-list li:last-child {
    border-bottom: 0;
}

.news-rank-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--news-text);
    text-decoration: none;
    font-weight: 800;
}

.news-rank-list a::before {
    content: counter(news-rank);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #ffffff;
    background: var(--news-brand);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

.news-rank-list li:nth-child(-n+3) a::before {
    background: var(--news-accent);
}

.news-pagination {
    margin: 0 16px 16px;
    padding-top: 14px;
    border-top: 1px solid var(--news-line);
}

.news-site-foot,
.bk-site-foot {
    margin-top: 28px;
    color: #d7e7f8;
    background: var(--news-brand-dark);
    border-top: 4px solid var(--news-accent);
}

.news-site-foot p,
.bk-site-foot p {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 30px;
    font-size: 13px;
}

.news-site-foot .news-container {
    padding: 26px 0 22px;
}

.news-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.4fr);
    gap: 28px;
    align-items: start;
}

.news-footer-brand strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
}

.news-footer-brand p {
    width: auto;
    margin: 9px 0 0;
    padding: 0;
    color: #b8cde5;
    line-height: 1.75;
}

.news-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.news-footer-links a {
    padding: 7px 10px;
    color: #eaf3ff;
    text-decoration: none;
    border: 1px solid rgba(215, 231, 248, 0.22);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 800;
}

.news-footer-links a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.news-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    margin-top: 22px;
    padding-top: 16px;
    color: #b8cde5;
    border-top: 1px solid rgba(215, 231, 248, 0.18);
    font-size: 13px;
}

.bk-site-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: min(1200px, calc(100% - 32px));
    min-height: 70px;
    margin: 0 auto;
    border-bottom: 3px solid var(--news-brand);
    background: var(--news-paper);
}

.bk-brand {
    color: var(--news-brand-dark);
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.bk-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.bk-nav a {
    padding: 6px 10px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-weight: 800;
}

.bk-nav a:hover {
    color: #ffffff;
    background: var(--news-brand);
}

.bk-wrap,
.article-page {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0 36px;
}

.bk-hero {
    padding: 22px 24px;
    border: 1px solid var(--news-line);
    border-top: 4px solid var(--news-brand);
    border-radius: var(--news-radius);
    background: var(--news-paper);
    box-shadow: var(--news-shadow-soft);
}

.bk-kicker {
    margin: 0 0 7px;
    color: var(--news-accent);
    font-weight: 800;
}

.bk-hero h1 {
    margin: 0;
    color: var(--news-ink);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.25;
    letter-spacing: 0;
}

.bk-lead {
    margin: 12px 0 0;
    color: #556170;
    font-size: 16px;
    line-height: 1.8;
}

.bk-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.bk-summary-item {
    min-height: 84px;
    padding: 12px;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.bk-summary-item span {
    display: block;
    color: var(--news-muted);
    font-size: 12px;
}

.bk-summary-item strong {
    display: block;
    margin-top: 5px;
    color: var(--news-brand-dark);
    font-size: 17px;
    line-height: 1.35;
}

.bk-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    margin-top: 14px;
}

.bk-layout-single {
    grid-template-columns: minmax(0, 1fr);
}

.bk-main,
.bk-side {
    display: grid;
    gap: 14px;
    align-self: start;
}

.bk-list {
    overflow: hidden;
}

.bk-card {
    display: block;
    padding: 18px 20px;
    color: var(--news-ink);
    text-decoration: none;
    background: var(--news-paper);
    border-bottom: 1px solid var(--news-line);
}

article.bk-card {
    display: grid;
    gap: 8px;
}

.bk-card:last-child {
    border-bottom: 0;
}

.bk-card h2 {
    margin: 8px 0 0;
    color: var(--news-ink);
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0;
}

.bk-card h2 a {
    color: inherit;
    text-decoration: none;
}

.bk-card p,
.bk-panel p {
    margin: 8px 0 0;
    color: #556170;
    font-size: 15px;
    line-height: 1.75;
}

.bk-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.bk-keywords span,
.bk-keywords a {
    padding: 4px 8px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-size: 13px;
}

.bk-panel {
    padding: 18px;
}

.bk-panel h2 {
    margin: 0 0 12px;
    padding-bottom: 8px;
    color: var(--news-brand-dark);
    border-bottom: 2px solid var(--news-brand);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
}

.bk-side-list {
    display: grid;
    gap: 0;
}

.bk-side-list li {
    border-bottom: 1px solid var(--news-line);
}

.bk-side-list li:last-child {
    border-bottom: 0;
}

.bk-side-list a {
    display: block;
    padding: 9px 0;
    color: var(--news-text);
    text-decoration: none;
}

.bk-side-list a:hover {
    color: var(--news-accent);
}

.bk-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: var(--news-paper);
}

.bk-page-meta {
    color: var(--news-muted);
    font-size: 13px;
}

.bk-page-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bk-page-link,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 32px;
    padding: 5px 9px;
    color: var(--news-brand);
    text-decoration: none;
    border: 1px solid #c9ddf6;
    border-radius: 6px;
    background: #f8fbff;
    font-size: 13px;
    font-weight: 800;
}

.bk-page-link[href]:hover,
.pagination a:hover {
    color: #ffffff;
    background: var(--news-brand);
}

.bk-page-link.is-current,
.pagination .active span {
    color: #ffffff;
    border-color: var(--news-brand);
    background: var(--news-brand);
}

.bk-page-link.is-disabled,
.pagination .disabled span {
    color: #a0a8b2;
    background: #eef1f5;
}

.bk-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.bk-data-row {
    padding: 12px;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.bk-data-row dt {
    margin: 0 0 4px;
    color: var(--news-muted);
    font-size: 12px;
}

.bk-data-row dd {
    margin: 0;
    color: var(--news-ink);
    font-weight: 800;
    line-height: 1.45;
}

.bk-data-row a,
.bk-company-link {
    color: var(--news-brand);
    text-decoration: none;
    font-weight: 800;
}

.bk-ability {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-ability li {
    padding: 14px;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.bk-ability strong {
    display: block;
    color: var(--news-brand-dark);
}

.bk-ability span {
    display: block;
    margin-top: 5px;
    color: #556170;
}

.bk-section-title,
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--news-brand);
}

.bk-section-title span,
.section-heading span {
    display: block;
    color: var(--news-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.bk-section-title h2,
.section-heading h2 {
    margin: 0;
    color: var(--news-brand-dark);
    font-size: 20px;
}

.bk-section-title>strong {
    flex: 0 0 auto;
    color: var(--news-muted);
    font-size: 13px;
}

.company-article-list {
    display: grid;
    border-top: 1px solid var(--news-line);
}

.company-article-item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    color: var(--news-text);
    text-decoration: none;
    border-bottom: 1px solid var(--news-line);
}

.company-article-item:last-child {
    border-bottom: 0;
}

.company-article-item time {
    color: var(--news-muted);
    font-size: 13px;
}

.company-article-item strong {
    display: block;
    color: var(--news-ink);
    font-size: 17px;
    line-height: 1.45;
}

.company-article-item p {
    margin: 6px 0 0;
    color: #556170;
    font-size: 14px;
}

.company-article-item span {
    display: block;
    margin-top: 6px;
    color: var(--news-muted);
    font-size: 13px;
}

.bk-empty {
    padding: 14px;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.bk-empty strong {
    display: block;
    color: var(--news-brand-dark);
    font-size: 17px;
}

.bk-empty p {
    margin: 6px 0 0;
    color: var(--news-muted);
}

.article-page {
    width: min(980px, calc(100% - 32px));
}

.article-card {
    padding: clamp(22px, 4vw, 42px);
    border-top: 4px solid var(--news-brand);
}

.markdown-body {
    color: var(--news-text);
    font-size: 17px;
    line-height: 1.9;
    word-break: break-word;
}

.markdown-body h1 {
    margin: 0 0 16px;
    color: var(--news-ink);
    font-size: clamp(30px, 4.6vw, 44px);
    line-height: 1.24;
    letter-spacing: 0;
}

.article-meta {
    padding: 12px 0 16px;
    border-top: 1px solid var(--news-line);
    border-bottom: 1px solid var(--news-line);
}

.article-meta strong {
    color: var(--news-ink);
}

.markdown-body p {
    margin: 16px 0;
}

.markdown-body h2 {
    margin: 34px 0 12px;
    padding-bottom: 8px;
    color: var(--news-brand-dark);
    border-bottom: 2px solid var(--news-brand);
    font-size: 24px;
    line-height: 1.35;
}

.markdown-body h3 {
    margin: 26px 0 10px;
    color: var(--news-brand-dark);
    font-size: 20px;
}

.markdown-body a {
    color: var(--news-brand);
    text-decoration: none;
    border-bottom: 1px solid #bcd5f4;
}

.markdown-body img {
    display: block;
    width: 100%;
    max-height: 620px;
    margin: 22px 0;
    object-fit: contain;
    background: #f0f3f7;
    border-radius: var(--news-radius);
}

.markdown-body ul,
.markdown-body ol {
    padding-left: 24px;
}

.markdown-body blockquote {
    margin: 18px 0;
    padding: 12px 16px;
    color: #556170;
    border-left: 4px solid var(--news-brand);
    background: #f8fbff;
}

.markdown-body table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
}

.markdown-body th,
.markdown-body td {
    padding: 9px 10px;
    border: 1px solid var(--news-line);
    text-align: left;
}

.markdown-body th {
    background: #edf5ff;
}

.article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 14px;
    overflow: hidden;
}

.pager-link {
    display: block;
    min-height: 104px;
    padding: 18px;
    color: var(--news-text);
    text-decoration: none;
    border-right: 1px solid var(--news-line);
}

.pager-link:last-child {
    border-right: 0;
}

.pager-link span {
    display: block;
    margin-bottom: 7px;
    color: var(--news-brand);
    font-weight: 800;
}

.pager-link strong {
    color: var(--news-ink);
    font-size: 17px;
    line-height: 1.45;
}

.pager-link--next {
    text-align: right;
}

.pager-link.is-disabled {
    color: #9aa3af;
    background: #f1f4f7;
}

.info-section {
    margin-top: 14px;
    padding: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.info-card {
    display: block;
    min-height: 130px;
    padding: 14px;
    color: var(--news-text);
    text-decoration: none;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.info-card strong {
    display: block;
    color: var(--news-ink);
    font-size: 16px;
    line-height: 1.45;
}

.info-card p {
    margin: 8px 0 0;
    color: #556170;
    font-size: 14px;
}

.latest-list {
    display: grid;
}

.latest-item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
    color: var(--news-text);
    text-decoration: none;
    border-bottom: 1px solid var(--news-line);
}

.latest-item:last-child {
    border-bottom: 0;
}

.latest-item time {
    color: var(--news-muted);
}

.latest-item strong {
    color: var(--news-ink);
}

.company-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--news-line);
    border-radius: var(--news-radius);
    background: #fbfdff;
}

.company-mini strong {
    color: var(--news-ink);
    font-size: 18px;
}

.company-mini p {
    margin: 5px 0 0;
    color: var(--news-muted);
}

.company-mini a {
    flex: 0 0 auto;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    background: var(--news-brand);
    font-weight: 800;
}

.mobile-call-bar {
    display: none;
}

@media (max-width: 1024px) {

    .news-brand-row,
    .news-lead-grid,
    .news-latest-layout,
    .search-hero,
    .search-layout,
    .category-hero,
    .category-layout,
    .company-library-hero,
    .company-library-layout,
    .company-profile-hero,
    .company-profile-layout {
        grid-template-columns: 1fr;
    }

    .news-service-links {
        justify-content: flex-start;
    }

    .news-channel-table {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .news-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bk-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {

    .news-container,
    .bk-site-head,
    .bk-wrap,
    .article-page,
    .news-site-foot .news-container,
    .news-site-foot p,
    .bk-site-foot p {
        width: 100%;
    }

    .news-topbar-inner,
    .news-brand-row,
    .news-main,
    .bk-wrap,
    .article-page,
    .news-site-foot .news-container,
    .news-site-foot p,
    .bk-site-foot p {
        padding-right: 12px;
        padding-left: 12px;
    }

    .news-topbar-inner,
    .bk-site-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .news-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .news-brand-row {
        gap: 12px;
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .news-logo span {
        font-size: 32px;
    }

    .news-search {
        grid-template-columns: minmax(0, 1fr) 72px;
        width: 100%;
    }

    .news-main-nav {
        overflow-x: auto;
    }

    .news-nav-row {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
    }

    .news-nav-primary .news-nav-row a {
        min-width: 88px;
    }

    .news-ticker {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .news-channel-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-company-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-module-grid,
    .news-footer-main,
    .bk-summary,
    .bk-data-grid,
    .bk-ability,
    .info-grid,
    .company-library-card dl,
    .company-profile-stats,
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .news-footer-links,
    .news-footer-bottom {
        justify-content: flex-start;
    }

    .news-latest-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 10px;
    }

    .category-article-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 10px;
    }

    .company-library-card-head,
    .company-library-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .company-profile-main {
        padding: 22px 20px;
    }

    .company-profile-main h1 {
        font-size: 28px;
    }

    .company-profile-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--news-line);
    }

    .company-profile-stats div:last-child {
        border-bottom: 0;
    }

    .news-latest-card h3 {
        font-size: 17px;
    }

    .category-article-card h2 {
        font-size: 17px;
    }

    .news-latest-card p {
        display: none;
    }

    .category-article-card p {
        display: none;
    }

    .news-headline-item:first-child h3 {
        text-align: left;
        font-size: 22px;
    }

    .bk-site-head {
        padding: 14px 12px;
    }

    .bk-nav {
        justify-content: flex-start;
    }

    .article-card,
    .info-section,
    .search-hero,
    .search-results,
    .category-hero,
    .category-results,
    .company-library-hero,
    .company-library-results,
    .company-profile-main,
    .company-contact-card,
    .company-profile-stats,
    .company-profile-section,
    .company-side-card,
    .bk-hero,
    .bk-list,
    .bk-panel,
    .news-cover-column,
    .news-headline-column,
    .news-side-box,
    .news-channel-board,
    .news-module,
    .news-latest {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .article-pager,
    .latest-item,
    .company-article-item,
    .company-update-item {
        grid-template-columns: 1fr;
    }

    .pager-link--next {
        text-align: left;
    }

    .company-mini {
        align-items: stretch;
        flex-direction: column;
    }

    .mobile-call-bar {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        color: #ffffff;
        text-decoration: none;
        border-radius: var(--news-radius);
        background: var(--news-accent);
        font-weight: 800;
        box-shadow: var(--news-shadow);
    }
}

@media (max-width: 480px) {
    .news-channel-table {
        grid-template-columns: 1fr;
    }

    .news-company-table {
        grid-template-columns: 1fr;
    }

    .news-latest-card {
        grid-template-columns: 1fr;
    }

    .category-article-card {
        grid-template-columns: 1fr;
    }

    .news-latest-thumb {
        display: none;
    }

    .category-article-thumb {
        display: none;
    }

    .markdown-body {
        font-size: 16px;
    }
}
