/* ============================================
 * 品牌资讯模块  view/pp/news/
 * 配色与 PP 模块一致：白卡 + 浅阴影 + 蓝主色
 * ============================================ */

:root {
    --news-primary: #2563eb;
    --news-text: #1f2937;
    --news-text-sub: #6b7280;
    --news-text-light: #9ca3af;
    --news-border: #e5e7eb;
    --news-bg-soft: #f9fafb;
    --news-radius: 10px;
    --news-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --news-shadow-hover: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

/* ===== 头部标题 ===== */
.news-header {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    border-radius: var(--news-radius);
    padding: 28px 32px;
    margin-bottom: 24px;
    border: 1px solid var(--news-border);
}
.news-header-title {
    font-size: 28px;
    color: var(--news-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}
.news-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 24px;
}
.news-header-desc {
    color: var(--news-text-sub);
    font-size: 14px;
    margin: 0;
}

/* ===== 分类 Tab ===== */
.news-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border-radius: var(--news-radius);
    border: 1px solid var(--news-border);
    padding: 4px 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    box-shadow: var(--news-shadow);
}
.news-tab {
    flex: 1;
    min-width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    color: var(--news-text-sub);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.news-tab:hover {
    background: var(--news-bg-soft);
    color: var(--news-text);
}
.news-tab.active {
    color: var(--news-primary);
    background: #eff6ff;
    font-weight: 600;
}
.news-tab-emoji { font-size: 16px; }
.news-tab-count {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: var(--news-text-light);
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.news-tab.active .news-tab-count {
    background: rgba(37,99,235,0.15);
    color: var(--news-primary);
}

/* ===== 双栏布局 ===== */
.news-layout,
.news-detail-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.news-main,
.news-detail-main {
    flex: 1;
    min-width: 0;
}
.news-side {
    width: 300px;
    flex-shrink: 0;
}

/* ===== 文章卡片网格 ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.news-card {
    background: #fff;
    border-radius: var(--news-radius);
    overflow: hidden;
    border: 1px solid var(--news-border);
    box-shadow: var(--news-shadow);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--news-shadow-hover);
    border-color: #cbd5e1;
}
.news-card-cover {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--news-bg-soft);
}
.news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.news-card:hover .news-card-cover img {
    transform: scale(1.05);
}
.news-card-cover-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-cover-emoji {
    font-size: 64px;
    opacity: 0.85;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.news-card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.news-card-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.news-card-flag-top { background: #f59e0b; }
.news-card-flag-hot { background: #ef4444; }

.news-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.news-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 8px;
    color: var(--news-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}
.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.news-card-title a:hover {
    color: var(--news-primary);
}
.news-card-subtitle {
    color: var(--news-text-light);
    font-size: 13px;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-intro {
    color: var(--news-text-sub);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--news-text-light);
    padding-top: 12px;
    border-top: 1px dashed var(--news-border);
    flex-wrap: wrap;
}
.news-card-brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--news-text-sub);
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-card-brand-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 2px;
}
.news-card-brand-none {
    color: var(--news-text-light);
    font-style: italic;
}
.news-card-date,
.news-card-view {
    flex-shrink: 0;
}

/* ===== 空状态 ===== */
.news-empty {
    background: #fff;
    border: 1px dashed var(--news-border);
    border-radius: var(--news-radius);
    padding: 80px 20px;
    text-align: center;
}
.news-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.news-empty-title { color: var(--news-text-sub); font-size: 16px; margin: 8px 0 4px; }
.news-empty-tip { color: var(--news-text-light); font-size: 13px; margin: 0; }

/* ===== 分页 ===== */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.news-page-btn,
.news-page-num {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--news-border);
    border-radius: 6px;
    color: var(--news-text-sub);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    min-width: 36px;
    text-align: center;
}
.news-page-btn:hover,
.news-page-num:hover {
    color: var(--news-primary);
    border-color: var(--news-primary);
    background: #eff6ff;
}
.news-page-num.active {
    background: var(--news-primary);
    color: #fff;
    border-color: var(--news-primary);
}
.news-page-btn.disabled {
    color: var(--news-text-light);
    cursor: not-allowed;
    background: var(--news-bg-soft);
}
.news-page-btn.disabled:hover {
    color: var(--news-text-light);
    border-color: var(--news-border);
    background: var(--news-bg-soft);
}
.news-page-ellipsis { color: var(--news-text-light); padding: 0 4px; }
.news-page-total { color: var(--news-text-light); font-size: 13px; margin-left: 12px; }

/* ===== 侧栏 ===== */
.news-side-card {
    background: #fff;
    border-radius: var(--news-radius);
    border: 1px solid var(--news-border);
    box-shadow: var(--news-shadow);
    padding: 18px 20px;
    margin-bottom: 16px;
}
.news-side-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--news-text);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--news-border);
}
.news-side-subtitle {
    color: var(--news-text-sub);
    font-size: 12px;
    margin: -8px 0 12px;
}
.news-side-subtitle a { text-decoration: none; }
.news-side-tip p {
    color: var(--news-text-sub);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* 热门 TOP 列表 */
.news-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-hot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--news-border);
}
.news-hot-item:last-child { border-bottom: none; }
.news-hot-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--news-bg-soft);
    color: var(--news-text-light);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.news-hot-num.top {
    background: var(--news-primary);
    color: #fff;
}
.news-hot-link {
    flex: 1;
    color: var(--news-text);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.news-hot-link:hover { color: var(--news-primary); }

/* 最新列表 */
.news-latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-latest-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--news-border);
}
.news-latest-item:last-child { border-bottom: none; }
.news-latest-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.news-latest-title {
    flex: 1;
    color: var(--news-text);
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.news-latest-link:hover .news-latest-title { color: var(--news-primary); }
.news-latest-date {
    color: var(--news-text-light);
    font-size: 12px;
    flex-shrink: 0;
}

/* 品牌跟踪入口 */
.news-brand-track { list-style: none; padding: 0; margin: 0; }
.news-brand-track-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--news-text);
    border-bottom: 1px dashed var(--news-border);
    font-size: 13px;
}
.news-brand-track-item:last-child { border-bottom: none; }
.news-brand-track-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--news-border);
}
.news-brand-track-name { flex: 1; }
.news-brand-track-count {
    color: var(--news-text-light);
    font-size: 12px;
}

/* ===== 详情页 ===== */
.news-detail-main {
    background: #fff;
    border-radius: var(--news-radius);
    border: 1px solid var(--news-border);
    box-shadow: var(--news-shadow);
    padding: 36px 44px;
}
.news-detail-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--news-border);
    margin-bottom: 28px;
}
.news-detail-cat {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}
.news-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--news-text);
    line-height: 1.4;
    margin: 0 0 12px;
}
.news-detail-subtitle {
    color: var(--news-text-sub);
    font-size: 15px;
    margin: 0 0 20px;
}
.news-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--news-text-sub);
    font-size: 13px;
}
.news-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.news-meta-label { font-size: 14px; }

.news-detail-cover {
    margin: 0 0 28px;
    border-radius: var(--news-radius);
    overflow: hidden;
}
.news-detail-cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.news-detail-intro {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 14px 20px;
    margin: 0 0 28px;
    color: #78350f;
    font-size: 14px;
    line-height: 1.7;
    border-radius: 0 6px 6px 0;
}
.news-detail-intro strong { color: #92400e; }

.news-detail-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--news-text);
}
.news-detail-content p {
    margin: 0 0 18px;
}
.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    margin: 28px 0 14px;
    font-weight: 600;
    color: var(--news-text);
}
.news-detail-content h1 { font-size: 24px; }
.news-detail-content h2 { font-size: 20px; }
.news-detail-content h3 { font-size: 18px; }
.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 12px 0;
}
.news-detail-content a {
    color: var(--news-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.news-detail-content a:hover { border-bottom-color: var(--news-primary); }
.news-detail-content blockquote {
    margin: 18px 0;
    padding: 12px 20px;
    background: var(--news-bg-soft);
    border-left: 4px solid var(--news-primary);
    color: var(--news-text-sub);
    border-radius: 0 6px 6px 0;
}
.news-detail-content code {
    background: var(--news-bg-soft);
    color: #db2777;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-family: Consolas, Monaco, monospace;
}
.news-detail-content pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 16px 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 18px 0;
}
.news-detail-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}
.news-detail-content ul,
.news-detail-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}
.news-detail-content li { margin-bottom: 6px; }

/* 品牌信息卡 */
.news-detail-brand-card {
    margin: 36px 0 0;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f9fafb 100%);
    border: 1px solid #dbeafe;
    border-radius: var(--news-radius);
}
.news-detail-brand-header {
    color: var(--news-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}
.news-detail-brand-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.news-detail-brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--news-border);
    flex-shrink: 0;
}
.news-detail-brand-info { flex: 1; min-width: 0; }
.news-detail-brand-name {
    font-size: 18px;
    color: var(--news-text);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.news-detail-brand-slogan {
    color: var(--news-text-sub);
    font-size: 13px;
    margin: 0 0 8px;
    font-style: italic;
}
.news-detail-brand-intro {
    color: var(--news-text-sub);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.news-detail-brand-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.news-brand-btn {
    display: inline-block;
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.news-brand-btn-primary {
    background: var(--news-primary);
    color: #fff !important;
}
.news-brand-btn-primary:hover { background: #1d4ed8; }
.news-brand-btn-secondary {
    background: #fff;
    color: var(--news-primary) !important;
    border-color: var(--news-primary);
}
.news-brand-btn-secondary:hover { background: #eff6ff; }

/* 上一篇 / 下一篇 */
.news-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--news-border);
}
.news-detail-nav-item {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    background: var(--news-bg-soft);
    border-radius: 8px;
    text-decoration: none;
    color: var(--news-text);
    transition: all 0.2s;
    border: 1px solid transparent;
    min-width: 0;
}
.news-detail-nav-item:hover {
    background: #eff6ff;
    border-color: var(--news-primary);
}
.news-detail-nav-disabled {
    color: var(--news-text-light);
    cursor: not-allowed;
    background: var(--news-bg-soft);
}
.news-detail-nav-disabled:hover { background: var(--news-bg-soft); border-color: transparent; }
.news-detail-nav-next { text-align: right; }
.news-detail-nav-label {
    font-size: 12px;
    color: var(--news-text-sub);
    margin-bottom: 6px;
}
.news-detail-nav-title {
    font-size: 14px;
    color: var(--news-text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-detail-nav-item:hover .news-detail-nav-title { color: var(--news-primary); }

/* 跟踪时间线（侧栏） */
.news-track-mini {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-track-mini-item {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--news-border);
    align-items: flex-start;
}
.news-track-mini-item:last-child { border-bottom: none; }
.news-track-mini-date {
    color: var(--news-text-light);
    font-size: 12px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
.news-track-mini-link {
    flex: 1;
    color: var(--news-text);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.news-track-mini-link:hover { color: var(--news-primary); }

/* ===== 品牌跟踪时间线页 ===== */
.news-track-header {
    background: #fff;
    border-radius: var(--news-radius);
    border: 1px solid var(--news-border);
    box-shadow: var(--news-shadow);
    padding: 24px 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.news-track-brand {
    display: flex;
    gap: 16px;
    align-items: center;
}
.news-track-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--news-bg-soft);
    border: 1px solid var(--news-border);
}
.news-track-brand-info { min-width: 0; }
.news-track-brand-name {
    font-size: 24px;
    color: var(--news-text);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.news-track-brand-tag {
    font-size: 13px;
    background: #ecfeff;
    color: #0891b2;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}
.news-track-brand-sub {
    color: var(--news-text-sub);
    font-size: 14px;
    margin: 0;
}
.news-track-brand-link {
    background: var(--news-primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}
.news-track-brand-link:hover { background: #1d4ed8; }

.news-timeline {
    position: relative;
    padding-left: 24px;
}
.news-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--news-primary) 0%, #cbd5e1 100%);
}
.news-timeline-month {
    position: relative;
    margin-bottom: 28px;
}
.news-timeline-month-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.news-timeline-month-dot {
    position: absolute;
    left: -22px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--news-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--news-primary);
}
.news-timeline-month-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--news-text);
    background: #fff;
    padding: 4px 0;
}
.news-timeline-month-count {
    color: var(--news-text-light);
    font-size: 13px;
    background: var(--news-bg-soft);
    padding: 2px 10px;
    border-radius: 10px;
}
.news-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-timeline-item {
    background: #fff;
    border: 1px solid var(--news-border);
    border-radius: var(--news-radius);
    padding: 14px 20px;
    margin-bottom: 10px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--news-shadow);
    transition: all 0.2s;
}
.news-timeline-item:hover {
    transform: translateX(4px);
    box-shadow: var(--news-shadow-hover);
    border-color: var(--news-primary);
}
.news-timeline-day {
    flex-shrink: 0;
    color: var(--news-text-light);
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 44px;
    padding-top: 2px;
}
.news-timeline-link {
    flex: 1;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
.news-timeline-title {
    font-size: 15px;
    color: var(--news-text);
    margin: 0 0 6px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s;
}
.news-timeline-link:hover .news-timeline-title { color: var(--news-primary); }
.news-timeline-intro {
    color: var(--news-text-sub);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-timeline-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--news-text-light);
    font-size: 12px;
}
.news-timeline-flag-hot {
    background: #fef2f2;
    color: #dc2626;
    padding: 1px 8px;
    border-radius: 3px;
    font-weight: 500;
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
    .news-layout,
    .news-detail-layout {
        flex-direction: column;
    }
    .news-side {
        width: 100%;
    }
    .news-detail-main {
        padding: 24px 20px;
    }
    .news-detail-title { font-size: 22px; }
    .news-detail-meta { gap: 12px; }
    .news-detail-nav { grid-template-columns: 1fr; }
    .news-detail-nav-next { text-align: left; }
    .news-detail-brand-body { flex-direction: column; }
    .news-detail-brand-logo { width: 56px; height: 56px; }
    .news-track-header { flex-direction: column; align-items: flex-start; }
    .news-track-brand-name { font-size: 20px; }
    .news-tabs { padding: 4px; }
    .news-tab { min-width: 90px; padding: 10px 12px; font-size: 13px; }
    .news-tab-count { font-size: 11px; }
}
