/* ===================================================
   预见能源 - 移动端响应式适配
   断点：<768px（手机）, 768-1024px（平板）
   =================================================== */

/* ============================
   1. 导航栏 - 移动端
   ============================ */

/* 隐藏顶部滚动条 */
@media (max-width: 768px) {
  .ht-topbar-actions { display: none; }
  .ht-topbar { font-size: 11px; }

  /* 隐藏桌面端导航，显示汉堡菜单 */
  .ht-nav { display: none; }
  .ht-actions .ht-search-box,
  .ht-actions .ht-btn-vip,
  .ht-actions .ht-btn-write,
  .ht-actions .ht-user-btn { display: none; }

  .ht-main-inner {
    height: 50px;
    gap: 12px;
  }

  .ht-logo-icon svg { width: 30px; height: 30px; }
  .ht-logo-cn { font-size: 17px; letter-spacing: 1px; }
  .ht-logo-en { font-size: 8px; letter-spacing: 1.5px; }

  /* 汉堡菜单按钮（已禁用） */
  .mobile-menu-btn {
    display: none !important;
  }
  .mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 1px;
    transition: all .3s ease;
  }
  /* 移动端导航面板（已禁用） */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 2000;
  }
  .mobile-nav-overlay.active { display: block; }

  .mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--dark-1, #0a0f14);
    z-index: 2001;
    transition: right .3s ease;
    overflow-y: auto;
    padding: 20px 0;
  }
  .mobile-nav-panel.active { right: 0; }

  .mobile-nav-panel .mnp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 12px;
  }
  .mobile-nav-panel .mnp-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }
  .mobile-nav-panel .mnp-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-nav-panel .mnp-search {
    margin: 0 20px 16px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 0 12px;
    height: 38px;
    gap: 8px;
  }
  .mobile-nav-panel .mnp-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
  }
  .mobile-nav-panel .mnp-search input::placeholder { color: rgba(255,255,255,.35); }

  .mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav-panel ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: all .2s;
  }
  .mobile-nav-panel ul li a:hover,
  .mobile-nav-panel ul li a.active {
    color: #fff;
    background: rgba(45,155,90,.1);
  }
  .mobile-nav-panel ul li a.active {
    border-left: 3px solid #2d9b5a;
  }
}

/* ============================
   2. 焦点图 Hero Focus
   ============================ */
@media (max-width: 768px) {
  .hero-focus {
    height: 220px;
    border-radius: 8px;
  }
  .hf-main-content {
    padding: 16px 20px;
  }
  .hf-tags { gap: 6px; margin-bottom: 8px; }
  .hf-tag-live { font-size: 9px; padding: 3px 8px; }
  .hf-tag-cat { font-size: 9px; padding: 3px 8px; }
  .hf-title-main {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hf-desc-main {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hf-meta { font-size: 11px; }
  .hf-chart { display: none; }
  .hf-indicators { right: 16px; bottom: 12px; }
  .hf-deco-glow { display: none; }

  /* 装饰网格缩小 */
  .hf-deco-grid {
    background-size: 30px 30px;
  }
}

/* ============================
   3. 快报栏
   ============================ */
@media (max-width: 768px) {
  /* 要闻速览 */
  .quick-brief-section { margin-bottom: 16px; }
  .qb-item { padding: 12px 16px; gap: 10px; }
  .qb-tag { font-size: 10px; padding: 2px 8px; }
  .qb-text { font-size: 14px; }

  /* 三栏变单栏 */
  .qn-three-col {
    grid-template-columns: 1fr;
  }
  .qn-col-featured {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .qn-col-items {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 8px 12px;
  }
  .qn-col-list {
    background: var(--bg-card);
  }

  /* 快报栏头部 */
  .qn-header-compact { padding: 12px 16px; }
  .qn-header-compact .section-title { font-size: 15px; }
  .qn-divider { display: none; }

  /* 左栏头条 */
  .qn-featured-img { height: 120px; }
  .qn-featured-body h4 { font-size: 15px; }
  .qn-featured-body p { font-size: 12px; }

  /* 中栏列表 */
  .qn-item-img { width: 80px; height: 54px; }
  .qn-item-body h5 { font-size: 12.5px; }

  /* 右栏列表 */
  .quick-news-list li a { padding: 8px 12px; font-size: 12.5px; }
}

/* ============================
   4. 主体布局 - 双栏变单栏
   ============================ */
@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-content { padding: 12px 0 0; }
  .container { padding: 0 12px; }
}

/* ============================
   5. 数据看板
   ============================ */
@media (max-width: 768px) {
  .data-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .data-card { padding: 10px 8px; }
  .dc-label { font-size: 10px; }
  .dc-value { font-size: 15px; }
  .dc-change { font-size: 10px; }
  .dc-update { font-size: 9px; }
  .data-dashboard { margin-bottom: 16px; padding: 14px; }
  .dashboard-header { margin-bottom: 12px; }
}

/* ============================
   6. 深度报道区
   ============================ */
@media (max-width: 768px) {
  .news-section {
    padding: 14px;
    margin-bottom: 16px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card.featured .news-img { height: 160px; margin-bottom: 10px; }
  .news-card.featured .news-body h3 { font-size: 16px; }
  .news-excerpt { font-size: 13px; -webkit-line-clamp: 2; }
}

/* ============================
   7. 智库精选 / 报告卡片
   ============================ */
@media (max-width: 768px) {
  .think-tank-section {
    padding: 14px;
    margin-bottom: 16px;
  }
  .report-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .report-cover { height: 120px; }
  .report-info h4 { font-size: 14px; }
}

/* ============================
   8. 企业动态
   ============================ */
@media (max-width: 768px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .company-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .company-card-featured .cc-img {
    min-height: 140px;
  }
  .cc-img { min-height: 120px; }
  .cc-body { padding: 14px 16px; }
  .cc-body h4 { font-size: 14px; }
  .cc-data-big { font-size: 30px; }
}

/* ============================
   9. 视频专栏
   ============================ */
@media (max-width: 768px) {
  .video-section {
    padding: 14px;
    margin-bottom: 16px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .video-thumb { height: 100px; margin-bottom: 8px; }
  .play-btn { width: 34px; height: 34px; font-size: 13px; }
  .video-card h4 { font-size: 12.5px; }
}

/* ============================
   10. 侧边栏组件
   ============================ */
@media (max-width: 768px) {
  .sidebar-widget { margin-bottom: 16px; }

  /* 热榜 */
  .hot-item { padding: 8px 12px; gap: 8px; }
  .hot-num { font-size: 14px; width: 18px; }
  .hot-content a { font-size: 13px; }
  .hot-count { font-size: 10px; }

  /* 专家观点 */
  .expert-item { padding: 10px 12px; }
  .expert-avatar { width: 36px; height: 36px; font-size: 13px; }

  /* 活动日历 */
  .event-item { padding: 8px 12px; }
  .event-date { padding: 4px 8px; min-width: 38px; }
  .ed-day { font-size: 16px; }

  /* 产业数据 */
  .mini-data-list { padding: 6px 12px; }
  .mini-data-row { font-size: 12px; padding: 6px 0; }
  .mdr-value { font-size: 13px; }

  /* 政策速递 */
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* 专栏作者 */
  .author-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .author-avatar { width: 48px; height: 48px; font-size: 17px; }
}

/* ============================
   11. Footer
   ============================ */
@media (max-width: 768px) {
  .footer { margin-top: 32px; }
  .footer-top { padding: 28px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .footer-desc { font-size: 12px; }
  .footer-bottom p { font-size: 10px; }

  /* footer-bottom 移动端适配 */
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }
  .footer-bottom-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    text-align: center;
  }
  .footer-bottom-left span,
  .footer-bottom-left a {
    font-size: 10px;
  }
  .footer-bottom-sep {
    display: none;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .footer-links a {
    font-size: 10px;
  }
  .footer-beian-inline {
    font-size: 10px;
  }
}

  /* 商务咨询联系条 */
  .biz-contact-bar {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
    text-align: center;
  }
  .biz-contact-left { flex-direction: column; }
  .biz-contact-divider {
    width: 32px;
    height: 1px;
  }

/* ============================
   12. 悬浮工具栏
   ============================ */
@media (max-width: 768px) {
  .float-toolbar {
    right: 12px;
    bottom: 40px;
    gap: 6px;
  }
  .ft-item {
    width: 38px;
    height: 38px;
  }
}

/* ============================
   13. 通用组件
   ============================ */
@media (max-width: 768px) {
  /* section头部 */
  .section-header { margin-bottom: 14px; }
  .section-title { font-size: 17px; }
  .section-badge { font-size: 10px; padding: 2px 6px; }

  /* 面包屑 */
  .breadcrumb-bar { padding: 8px 0; }
  .breadcrumb { font-size: 12px; }

  /* 筛选器 */
  .filter-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 14px;
  }
  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }
  .filter-tab { white-space: nowrap; font-size: 13px; padding: 7px 14px; }

  /* CTA区域 */
  .cta-section { padding: 32px 16px; margin: 20px 0; }
  .cta-section h2 { font-size: 20px; }
  .cta-section p { font-size: 14px; }
  .cta-btn { padding: 10px 24px; font-size: 14px; }

  /* 合作卡片 */
  .partner-inner { padding: 20px 16px; }
  .partner-title { font-size: 16px; }
  .partner-services { gap: 4px; }
  .partner-tag { font-size: 9px; padding: 2px 8px; }
}

/* ============================
   14. 旧版header兼容（子页面）
   ============================ */
@media (max-width: 768px) {
  .header-inner {
    gap: 12px;
    padding: 10px 0 8px;
  }
  .logo-cn { font-size: 18px; }
  .header-search { max-width: 200px; }
  .header-search input { padding: 6px 10px; font-size: 12px; }
  .btn-subscribe, .btn-write { font-size: 12px; padding: 5px 12px; }
  .top-bar { font-size: 11px; height: 30px; line-height: 30px; }
  .main-nav ul { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .main-nav ul li a { padding: 8px 12px; font-size: 13px; }
  .sub-menu { min-width: auto; left: 0; right: 0; }
}

/* ============================
   15. 新闻页 news.html
   ============================ */
@media (max-width: 768px) {
  .filter-bar { margin-bottom: 16px; }
  .news-card-grid {
    grid-template-columns: 1fr;
  }
  .news-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   16. 文章详情页 article.css
   ============================ */
@media (max-width: 768px) {
  .article-container {
    padding: 12px !important;
  }
  .article-header {
    padding: 16px 0 !important;
  }
  .article-header h1 {
    font-size: 20px !important;
    line-height: 1.5 !important;
  }
  .article-body {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }
  .article-body p {
    margin-bottom: 16px !important;
  }
  .article-meta-bar {
    flex-direction: column;
    gap: 8px;
  }
  .article-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .article-sidebar {
    margin-top: 20px;
  }
  /* 文章底部相关推荐 */
  .related-articles {
    grid-template-columns: 1fr !important;
  }
}

/* ============================
   17. 数据页 data.css
   ============================ */
@media (max-width: 768px) {
  .data-main-grid {
    grid-template-columns: 1fr;
  }
  .data-chart-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   18. 活动页 events.css
   ============================ */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   19. 直播页 live.css
   ============================ */
@media (max-width: 768px) {
  .live-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   20. 服务页 service.css
   ============================ */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card-featured {
    grid-template-columns: 1fr;
  }
}

/* ============================
   21. 智库页 think-tank.css
   ============================ */
@media (max-width: 768px) {
  .think-tank-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   22. 视频页 video.css
   ============================ */
@media (max-width: 768px) {
  .video-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   平板适配 (768px - 1024px)
   ============================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
  .data-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .report-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-card-featured {
    grid-column: span 2;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .author-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
  }
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-focus { height: 360px; }
  .hf-main-content { padding: 28px 32px; }
  .hf-title-main { font-size: 28px; }

  /* 平板端也显示汉堡菜单（如果屏幕不够宽） */
  @media (max-width: 900px) {
    .ht-nav { display: none; }
    .mobile-menu-btn { display: none !important; }
    .ht-actions .ht-search-box,
    .ht-actions .ht-btn-vip,
    .ht-actions .ht-btn-write { display: none; }
    .ht-main-inner { height: 56px; }
  }
}

/* ============================
   超小屏 (< 375px)
   ============================ */
@media (max-width: 374px) {
  .container { padding: 0 8px; }
  .hero-focus { height: 180px; }
  .hf-title-main { font-size: 16px; }
  .data-cards { grid-template-columns: repeat(2, 1fr); }
  .qn-three-col { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================
   23. 移动端体验修复 v2
   ============================ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.mobile-menu-btn {
  display: none;
}

.mobile-nav-overlay,
.mobile-nav-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2001;
  transform: translateX(100%);
}

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

@media (max-width: 1024px) {
  .ht-main-inner {
    justify-content: space-between;
  }

  .ht-nav {
    display: none;
  }

  .ht-actions {
    margin-left: auto;
  }

  .ht-actions .ht-search-box,
  .ht-actions .ht-btn-vip,
  .ht-actions .ht-btn-write,
  .ht-actions .ht-user-btn {
    display: none;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.9);
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2001;
    width: min(86vw, 360px);
    height: 100dvh;
    background: #0a0f14;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -18px 0 40px rgba(0,0,0,.28);
    padding: 16px 0 calc(24px + env(safe-area-inset-bottom));
  }

  .mobile-nav-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav-panel .mnp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .mnp-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .mnp-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.86);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mnp-search {
    min-height: 44px;
    margin: 14px 18px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
  }

  .mnp-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
  }

  .mnp-search input::placeholder {
    color: rgba(255,255,255,.42);
  }

  .mnp-nav-list {
    margin: 0;
    padding: 0;
  }

  .mnp-item {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .mnp-link {
    min-height: 48px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    font-weight: 700;
  }

  .mnp-item.active > .mnp-link {
    color: #fff;
    background: rgba(45,155,90,.18);
    box-shadow: inset 3px 0 0 #2d9b5a;
  }

  .mnp-sub {
    padding: 0 18px 12px;
  }

  .mnp-sub-group {
    padding: 4px 0 6px;
  }

  .mnp-sub-title {
    margin: 8px 0 6px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
  }

  .mnp-sub-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    margin: 0 6px 8px 0;
    padding: 7px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.74);
    font-size: 13px;
  }

  .mnp-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 18px 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .mnp-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(45,155,90,.14);
    color: #dff5e7;
    font-size: 13px;
  }

  .ns-page-layout,
  .tt-main-layout,
  .vid-content-grid,
  .video-content-grid,
  .live-content-grid,
  .lv-content-grid {
    grid-template-columns: 1fr !important;
  }

  .ns-sidebar,
  .tt-sidebar,
  .sidebar {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ht-topbar {
    height: 30px;
    line-height: 30px;
  }

  .ht-badge-hot {
    padding: 1px 6px;
  }

  .ht-main-inner {
    height: 54px;
    gap: 10px;
  }

  .ht-logo a {
    min-width: 0;
  }

  .ht-logo-cn {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .ht-logo-en {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .main-content {
    padding-top: 14px;
  }

  .hero-focus,
  .hero-headline {
    height: auto;
    min-height: 260px;
  }

  .hl-title,
  .hf-title-main {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  .hl-excerpt,
  .hf-desc-main {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .hero-sub,
  .news-grid,
  .news-card-grid,
  .ns-deep-grid,
  .ns-market-cols,
  .ns-global-grid,
  .reports-grid,
  .replay-grid,
  .video-grid-lg,
  .events-grid,
  .live-grid {
    grid-template-columns: 1fr !important;
  }

  .data-cards,
  .lv-hero-stats,
  .vid-hero-stats,
  .ev-hero-stats,
  .tt-stats,
  .ns-hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .ns-stat-divider {
    display: none;
  }

  .ns-stat,
  .tt-stat,
  .lv-hero-stat,
  .vid-hero-stat,
  .ev-hero-stat {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
  }

  .ns-hero,
  .tt-hero,
  .lv-hero,
  .vid-hero,
  .ev-hero {
    padding: 34px 0 30px !important;
  }

  .ns-hero-inner,
  .tt-hero .container,
  .lv-hero-inner,
  .vid-hero-inner,
  .ev-hero-inner {
    display: block !important;
  }

  .ns-hero-visual,
  .tt-hero-visual,
  .lv-hero-visual,
  .vid-hero-visual,
  .ev-hero-visual {
    display: none !important;
  }

  .ns-hero-title,
  .tt-hero-content h1,
  .lv-hero-content h1,
  .vid-hero-content h1,
  .ev-hero-content h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .ns-hero-desc,
  .tt-hero-content > p,
  .lv-hero-content > p,
  .vid-hero-content > p,
  .ev-hero-content > p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
  }

  .ns-channel-bar,
  .research-nav,
  .video-filter-bar,
  .live-filter-bar {
    align-items: stretch !important;
    gap: 10px !important;
    overflow: hidden;
  }

  .ns-channel-bar {
    position: sticky;
    top: 84px;
    z-index: 90;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
  }

  .ns-channel-tabs,
  .rn-tabs,
  .vf-tabs,
  .live-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .ns-channel-tabs::-webkit-scrollbar,
  .rn-tabs::-webkit-scrollbar,
  .vf-tabs::-webkit-scrollbar,
  .live-tabs::-webkit-scrollbar {
    display: none;
  }

  .ns-ch-tab,
  .rn-tab,
  .vf-tab,
  .live-tab,
  .filter-tab,
  .tab,
  .wtab,
  .ns-sort-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .ns-channel-sort,
  .rn-filters {
    overflow-x: auto;
    flex-shrink: 0;
  }

  .ns-section-hd,
  .section-header,
  .reports-section-header {
    align-items: flex-start;
    gap: 10px;
  }

  .section-header {
    flex-wrap: wrap;
  }

  .section-header-left {
    min-width: 0;
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .section-tabs {
    width: 100%;
    margin: 8px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-tabs::-webkit-scrollbar {
    display: none;
  }

  .section-more {
    margin-left: auto;
    max-width: 100%;
  }

  .ns-section-sub {
    display: none;
  }

  .ns-policy-item,
  .featured-reports,
  .live-now-card,
  .featured-video,
  .video-lg-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .ns-pi-left {
    display: none !important;
  }

  .ns-pi-img,
  .fr-cover,
  .lnc-cover,
  .fv-cover,
  .vgl-cover {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .fr-right,
  .lnc-info,
  .video-info,
  .fv-info {
    padding: 18px !important;
  }

  .fr-btns,
  .cta-actions,
  .btn-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-lg,
  .btn-filled-lg,
  .cta-btn,
  .ns-btn-load-more {
    min-height: 44px;
    justify-content: center;
  }

  .quick-news-list li a,
  .hot-item,
  .ns-topic-item,
  .report-grid-card,
  .video-card,
  .event-item,
  .live-upcoming-item {
    min-height: 44px;
  }

  .footer {
    margin-top: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 14px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-qr {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .float-toolbar {
    right: 12px;
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu-btn {
    display: inline-flex !important;
  }

  .content-layout,
  .ns-page-layout,
  .tt-main-layout {
    grid-template-columns: 1fr !important;
  }

  .reports-grid,
  .replay-grid,
  .video-grid-lg {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr !important;
  }
}

/* ============================
   24. 移动端 UI 优化 v3
   ============================ */
@media (max-width: 768px) {
  .ht-topbar-inner,
  .ht-hot-news,
  .ht-ticker,
  .ht-logo a,
  .main-column,
  .ns-main {
    min-width: 0;
  }

  .ht-main-inner {
    position: relative;
    padding-right: 52px;
  }

  .ht-logo {
    min-width: 0;
    max-width: calc(100vw - 112px);
  }

  .ht-logo-text {
    min-width: 0;
  }

  .ht-actions {
    position: absolute;
    right: 14px;
    top: 50%;
    display: flex !important;
    transform: translateY(-50%);
    z-index: 5;
  }

  .mobile-menu-btn {
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: auto;
    display: inline-flex !important;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    z-index: 10;
  }

  .hero-focus.hero-headline {
    height: 392px !important;
    min-height: 392px !important;
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0 0 10px 10px;
  }

  .hero-focus.hero-headline .hf-main,
  .hero-focus.hero-headline .hf-main-img {
    height: 100%;
    min-height: inherit;
  }

  .hero-focus.hero-headline .hf-main-overlay {
    height: 88%;
    background: linear-gradient(to top,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.84) 36%,
      rgba(0,0,0,.46) 68%,
      rgba(0,0,0,.08) 100%
    );
  }

  .hero-focus.hero-headline .hf-main-content {
    padding: 24px 18px 26px !important;
  }

  .hero-focus.hero-headline .hf-tags {
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .hero-focus.hero-headline .hf-title-main {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-focus.hero-headline .hf-desc-main {
    display: -webkit-box;
    max-width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-focus.hero-headline .hf-meta {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .hero-focus.hero-headline .hf-indicators {
    right: 18px;
    bottom: 12px;
  }

  .quick-brief-section {
    margin-top: 12px;
  }

  .qb-list,
  .quick-news-section,
  .data-dashboard,
  .news-section,
  .think-tank-section,
  .video-section,
  .sidebar-widget,
  .ns-section {
    border-radius: 8px;
  }

  .qb-item {
    align-items: flex-start;
    min-width: 0;
  }

  .qb-text,
  .qn-text,
  .hot-content,
  .event-info,
  .ns-focus-item h4,
  .ns-news-title,
  .ns-topic-title {
    min-width: 0;
  }

  .qb-text {
    display: -webkit-box;
    overflow: hidden;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .qb-time {
    display: none;
  }

  .qn-featured-img,
  .news-card.featured .news-img,
  .ns-focus-img,
  .ns-news-img {
    height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .qn-item {
    align-items: center;
  }

  .qn-item-img {
    width: 92px;
    height: 62px;
  }

  .data-card,
  .ns-stat,
  .tt-stat,
  .lv-hero-stat,
  .vid-hero-stat,
  .ev-hero-stat {
    min-width: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 10px !important;
    background: rgba(255,255,255,.06);
  }

  .data-card {
    border-color: var(--border);
    background: #fff;
  }

  .dc-value,
  .ns-stat strong,
  .tt-stat strong,
  .lv-hero-stat strong,
  .vid-hero-stat strong,
  .ev-hero-stat strong {
    line-height: 1.2;
    word-break: keep-all;
  }

  .ns-channel-bar {
    display: block !important;
    top: 84px;
    margin: 0 -14px 16px;
    padding: 8px 14px 10px;
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
  }

  .ns-channel-tabs {
    gap: 6px !important;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .ns-ch-tab,
  .ns-sort-btn {
    min-height: 40px;
    scroll-snap-align: start;
  }

  .ns-ch-tab-line {
    display: none;
  }

  .ns-channel-sort {
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
  }

  .ns-sort-lbl {
    display: none;
  }

  .ns-focus-layout,
  .featured-video,
  .live-now-card {
    gap: 12px !important;
  }

  .ns-section-hd,
  .reports-section-header {
    flex-wrap: wrap;
  }

  .ns-section-more,
  .section-more {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .mnp-actions {
    grid-template-columns: 1fr;
  }

  .mnp-sub-link {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-brand {
    grid-column: auto;
  }

  .ns-hero-title,
  .tt-hero-content h1,
  .lv-hero-content h1,
  .vid-hero-content h1,
  .ev-hero-content h1 {
    font-size: 24px !important;
  }
}

@media (max-width: 374px) {
  .hero-focus.hero-headline {
    height: 352px !important;
    min-height: 352px !important;
  }

  .hero-focus.hero-headline .hf-main-content {
    padding: 20px 16px 22px !important;
  }

  .hero-focus.hero-headline .hf-desc-main {
    -webkit-line-clamp: 2;
  }

  .data-cards,
  .lv-hero-stats,
  .vid-hero-stats,
  .ev-hero-stats,
  .tt-stats,
  .ns-hero-stats {
    grid-template-columns: 1fr !important;
  }
}

/* ============================
   25. 移动端重写层 v4
   桌面端保持原主题，手机端使用独立信息流布局。
   ============================ */
@media (max-width: 768px) {
  :root {
    --mobile-gutter: 14px;
    --mobile-header-main: 58px;
    --mobile-topbar: 28px;
    --mobile-header-h: calc(var(--mobile-topbar) + var(--mobile-header-main));
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #f4f6f4;
  }

  body {
    font-size: 14px;
    line-height: 1.68;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-left: var(--mobile-gutter) !important;
    padding-right: var(--mobile-gutter) !important;
  }

  .header-tech {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
  }

  .ht-topbar {
    height: var(--mobile-topbar) !important;
    line-height: var(--mobile-topbar) !important;
    font-size: 11px !important;
  }

  .ht-topbar .container,
  .ht-topbar-inner,
  .ht-hot-news,
  .ht-ticker {
    min-width: 0;
  }

  .ht-topbar-actions {
    display: none !important;
  }

  .ht-badge-hot {
    align-self: center;
    padding: 0 7px !important;
    border-radius: 0;
    line-height: var(--mobile-topbar);
  }

  .ht-ticker-track {
    animation-duration: 28s;
  }

  .ht-main-inner {
    position: relative !important;
    height: var(--mobile-header-main) !important;
    min-height: var(--mobile-header-main);
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-right: 58px;
  }

  .ht-nav,
  .ht-actions .ht-search-box,
  .ht-actions .ht-btn-vip,
  .ht-actions .ht-btn-write,
  .ht-actions .ht-user-btn {
    display: none !important;
  }

  .ht-logo {
    min-width: 0;
    max-width: calc(100vw - 112px);
  }

  .ht-logo a {
    min-width: 0;
    gap: 9px;
  }

  .ht-logo-icon svg {
    width: 32px !important;
    height: 32px !important;
  }

  .ht-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .ht-logo-cn {
    font-size: 18px !important;
    line-height: 1.1;
    letter-spacing: 1px !important;
    white-space: nowrap;
  }

  .ht-logo-en {
    max-width: 126px;
    overflow: hidden;
    font-size: 8px !important;
    line-height: 1.15;
    letter-spacing: 1.3px !important;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .ht-actions {
    position: absolute !important;
    top: 50%;
    right: var(--mobile-gutter);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: block !important;
    transform: translateY(-50%);
  }

  .mobile-menu-btn {
    position: absolute !important;
    inset: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.1) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .mobile-menu-btn span {
    display: block !important;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.92) !important;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: block !important;
    background: rgba(0,0,0,.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-panel {
    position: fixed !important;
    top: 0;
    right: 0 !important;
    z-index: 2001;
    width: min(88vw, 360px);
    height: 100dvh;
    padding: 16px 0 calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    color: #fff;
    background: #0a0f14;
    box-shadow: -20px 0 44px rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .24s ease, opacity .2s ease, visibility .2s ease;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mnp-header,
  .mobile-nav-panel .mnp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .mnp-title,
  .mobile-nav-panel .mnp-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .mnp-close,
  .mobile-nav-panel .mnp-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.06);
    font-size: 22px;
  }

  .mnp-search,
  .mobile-nav-panel .mnp-search {
    min-height: 44px;
    margin: 14px 18px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.07);
  }

  .mnp-search input,
  .mobile-nav-panel .mnp-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 14px;
  }

  .mnp-nav-list {
    margin: 0;
    padding: 0;
  }

  .mnp-item {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .mnp-link {
    min-height: 50px;
    padding: 12px 18px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.88) !important;
    font-size: 15px;
    font-weight: 700;
  }

  .mnp-item.active > .mnp-link {
    color: #fff !important;
    background: rgba(45,155,90,.2);
    box-shadow: inset 3px 0 0 #2d9b5a;
  }

  .mnp-sub {
    padding: 0 18px 12px;
  }

  .mnp-sub-title {
    margin: 10px 0 7px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
  }

  .mnp-sub-link {
    min-height: 38px;
    display: inline-flex !important;
    align-items: center;
    margin: 0 6px 8px 0;
    padding: 7px 10px;
    border-radius: 8px;
    color: rgba(255,255,255,.76) !important;
    background: rgba(255,255,255,.07);
    font-size: 13px;
  }

  .mnp-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .mnp-action {
    min-height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #dff5e7 !important;
    background: rgba(45,155,90,.14);
    font-size: 13px;
  }

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

  .main-content {
    padding-top: 16px !important;
  }

  .content-layout,
  .ns-page-layout,
  .tt-main-layout,
  .vid-content-grid,
  .video-content-grid,
  .live-content-grid,
  .lv-content-grid,
  .data-main-grid,
  .data-chart-grid,
  .think-tank-grid,
  .service-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .main-column,
  .ns-main,
  .sidebar,
  .ns-sidebar,
  .tt-sidebar,
  .article-sidebar {
    min-width: 0;
    width: 100%;
    position: static !important;
  }

  .hero-focus.hero-headline {
    height: 430px !important;
    min-height: 430px !important;
    margin: -16px calc(var(--mobile-gutter) * -1) 12px;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  .hero-focus.hero-headline .hf-main,
  .hero-focus.hero-headline .hf-main-img {
    height: 100%;
    min-height: inherit;
  }

  .hero-focus.hero-headline .hf-chart,
  .hero-focus.hero-headline .hf-deco-glow {
    display: none !important;
  }

  .hero-focus.hero-headline .hf-main-overlay {
    height: 92%;
    background: linear-gradient(to top,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.88) 34%,
      rgba(0,0,0,.5) 70%,
      rgba(0,0,0,.1) 100%);
  }

  .hero-focus.hero-headline .hf-main-content {
    padding: 24px 18px 28px !important;
  }

  .hero-focus.hero-headline .hf-tags {
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
  }

  .hero-focus.hero-headline .hf-title-main {
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    font-size: 24px !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-focus.hero-headline .hf-desc-main {
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px !important;
    line-height: 1.75 !important;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-focus.hero-headline .hf-meta {
    flex-wrap: wrap;
    row-gap: 2px;
    font-size: 11px;
  }

  .hero-focus.hero-headline .hf-indicators {
    right: 18px;
    bottom: 12px;
  }

  .quick-brief-section,
  .quick-news-section,
  .data-dashboard,
  .news-section,
  .think-tank-section,
  .video-section,
  .events-section,
  .live-section,
  .ns-section,
  .sidebar-widget {
    margin-bottom: 18px !important;
  }

  .quick-brief-section,
  .quick-news-section,
  .data-dashboard,
  .news-section,
  .think-tank-section,
  .video-section,
  .sidebar-widget,
  .ns-section {
    border-radius: 8px !important;
  }

  .quick-brief-section {
    margin-top: 0 !important;
  }

  .qb-list {
    padding: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
  }

  .qb-item {
    min-height: 48px;
    align-items: flex-start;
    padding: 11px 14px !important;
    gap: 10px !important;
    border-bottom: 1px solid var(--border);
  }

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

  .qb-tag {
    margin-top: 2px;
    flex-shrink: 0;
  }

  .qb-text,
  .qn-text,
  .hot-content a,
  .event-name,
  .ns-focus-item h4,
  .ns-dc-body h3,
  .ns-news-title,
  .ns-topic-title,
  .report-info h4,
  .video-card h4 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .qb-text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13.5px !important;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .qb-time {
    display: none !important;
  }

  .section-header,
  .ns-section-hd,
  .reports-section-header,
  .live-section .section-header,
  .events-section .section-header {
    min-width: 0;
    align-items: flex-start !important;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 12px !important;
    margin-bottom: 14px !important;
  }

  .section-header-left,
  .ns-section-hd-left {
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: wrap;
  }

  .section-title,
  .ns-section-title {
    font-size: 17px !important;
    line-height: 1.35;
  }

  .section-more,
  .ns-section-more {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .qn-three-col,
  .news-grid,
  .report-cards,
  .company-grid,
  .video-grid,
  .policy-grid,
  .author-grid,
  .ns-focus-layout,
  .ns-deep-grid,
  .ns-market-cols,
  .ns-global-grid,
  .reports-grid,
  .replay-grid,
  .video-grid-lg,
  .events-grid,
  .live-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .data-cards,
  .ns-hero-stats,
  .tt-stats,
  .lv-hero-stats,
  .vid-hero-stats,
  .ev-hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .data-card,
  .ns-stat,
  .tt-stat,
  .lv-hero-stat,
  .vid-hero-stat,
  .ev-hero-stat {
    min-width: 0;
    margin: 0 !important;
    padding: 11px 10px !important;
    border-radius: 8px;
    text-align: left !important;
  }

  .data-card {
    border: 1px solid var(--border);
    background: #fff;
  }

  .ns-stat,
  .tt-stat,
  .lv-hero-stat,
  .vid-hero-stat,
  .ev-hero-stat {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
  }

  .ns-stat-divider {
    display: none !important;
  }

  .qn-featured-img,
  .news-card.featured .news-img,
  .report-cover,
  .cc-img,
  .video-thumb,
  .ns-focus-img,
  .ns-dc-img,
  .ns-news-img,
  .fr-cover,
  .lnc-cover,
  .fv-cover,
  .vgl-cover,
  .fe-image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }

  .qn-col-featured,
  .qn-col-items,
  .qn-col-list {
    padding: 12px 14px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .qn-item {
    align-items: center;
    min-height: 74px;
    gap: 10px;
  }

  .qn-item-img {
    width: 94px !important;
    height: 62px !important;
    flex-shrink: 0;
  }

  .quick-news-list li a,
  .hot-item,
  .ns-topic-item,
  .report-grid-card,
  .video-card,
  .event-item,
  .live-upcoming-item {
    min-height: 44px;
  }

  .ns-hero,
  .tt-hero,
  .lv-hero,
  .vid-hero,
  .ev-hero {
    padding: 34px 0 30px !important;
  }

  .ns-hero-inner,
  .tt-hero .container,
  .lv-hero-inner,
  .vid-hero-inner,
  .ev-hero-inner {
    display: block !important;
  }

  .ns-hero-content {
    max-width: none;
  }

  .ns-hero-visual,
  .tt-hero-visual,
  .lv-hero-visual,
  .vid-hero-visual,
  .ev-hero-visual {
    display: none !important;
  }

  .ns-hero-title,
  .tt-hero-content h1,
  .lv-hero-content h1,
  .vid-hero-content h1,
  .ev-hero-content h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    margin-bottom: 12px !important;
  }

  .ns-hero-desc,
  .tt-hero-content > p,
  .lv-hero-content > p,
  .vid-hero-content > p,
  .ev-hero-content > p {
    font-size: 14px !important;
    line-height: 1.72 !important;
    margin-bottom: 20px !important;
  }

  .ns-channel-bar,
  .research-nav,
  .video-filter-bar,
  .live-filter-bar,
  .events-filter {
    display: block !important;
    position: sticky;
    top: var(--mobile-header-h);
    z-index: 80;
    margin: 0 calc(var(--mobile-gutter) * -1) 18px !important;
    padding: 8px var(--mobile-gutter) 10px !important;
    overflow: hidden;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
  }

  .ns-channel-tabs,
  .rn-tabs,
  .vf-tabs,
  .live-tabs,
  .filter-tabs {
    width: 100%;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    padding-bottom: 8px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .ns-channel-tabs::-webkit-scrollbar,
  .rn-tabs::-webkit-scrollbar,
  .vf-tabs::-webkit-scrollbar,
  .live-tabs::-webkit-scrollbar,
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .ns-ch-tab,
  .rn-tab,
  .vf-tab,
  .live-tab,
  .filter-tab,
  .tab,
  .wtab,
  .ns-sort-btn {
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .ns-ch-tab-line {
    display: none !important;
  }

  .ns-channel-sort,
  .rn-filters,
  .vf-sort {
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
    padding: 8px 0 0 !important;
    border-top: 1px solid var(--border);
    border-left: 0 !important;
    overflow-x: auto;
  }

  .ns-sort-lbl {
    display: none;
  }

  .featured-reports,
  .live-now-card,
  .featured-video,
  .featured-event,
  .video-lg-card,
  .company-card-featured,
  .service-card-featured {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .fr-right,
  .lnc-info,
  .video-info,
  .fv-info,
  .fe-info {
    padding: 18px !important;
  }

  .fr-btns,
  .cta-actions,
  .btn-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-lg,
  .btn-filled-lg,
  .cta-btn,
  .ns-btn-load-more {
    min-height: 44px;
    justify-content: center;
  }

  .footer {
    margin-top: 30px !important;
  }

  .footer-top {
    padding: 28px 0 18px !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 14px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-qr {
    display: none !important;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom-sep {
    display: none !important;
  }

  .float-toolbar {
    right: 12px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    gap: 6px;
  }

  .ft-item {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ht-nav,
  .ht-actions .ht-search-box,
  .ht-actions .ht-btn-vip,
  .ht-actions .ht-btn-write,
  .ht-actions .ht-user-btn {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
  }

  .content-layout,
  .ns-page-layout,
  .tt-main-layout,
  .vid-content-grid,
  .video-content-grid,
  .live-content-grid,
  .lv-content-grid {
    grid-template-columns: 1fr !important;
  }

  .reports-grid,
  .replay-grid,
  .video-grid-lg,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .hero-focus.hero-headline {
    height: 410px !important;
    min-height: 410px !important;
  }

  .hero-focus.hero-headline .hf-title-main {
    font-size: 22px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 374px) {
  :root {
    --mobile-gutter: 10px;
  }

  .hero-focus.hero-headline {
    height: 372px !important;
    min-height: 372px !important;
  }

  .hero-focus.hero-headline .hf-main-content {
    padding: 20px 16px 22px !important;
  }

  .hero-focus.hero-headline .hf-desc-main {
    -webkit-line-clamp: 2;
  }

  .data-cards,
  .ns-hero-stats,
  .tt-stats,
  .lv-hero-stats,
  .vid-hero-stats,
  .ev-hero-stats {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .footer {
    overflow: hidden;
  }

  .footer .container {
    max-width: 100%;
  }

  .footer-logo,
  .footer-tagline,
  .footer-desc,
  .footer-social,
  .footer-nav {
    min-width: 0;
  }

  .footer-desc,
  .footer-nav a,
  .footer-bottom p,
  .footer-bottom-left,
  .footer-links {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .container,
  .footer-bottom-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .footer-bottom-left,
  .footer-links {
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px 12px !important;
    text-align: center;
  }

  .footer-bottom p {
    width: min(100%, 340px);
    margin: 0 auto;
    font-size: 10px !important;
    line-height: 1.9 !important;
    white-space: normal;
  }

  .footer-bottom-left span,
  .footer-bottom-left a,
  .footer-links a,
  .footer-beian-inline {
    font-size: 10px !important;
    white-space: normal !important;
  }

  .footer-bottom-sep {
    display: none !important;
  }
}

/* ===================================================
   Mobile App Feed Rewrite
   Goal: compact news-app rhythm for phones only.
   =================================================== */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    background: #f5f7f5;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .main-content {
    padding-top: 12px !important;
  }

  .content-layout,
  .ns-page-layout,
  .tt-main-layout,
  .video-content-grid,
  .vid-content-grid,
  .live-content-grid,
  .lv-content-grid {
    display: block !important;
  }

  .main-column,
  .ns-main,
  #cmsThinkTankRoot,
  #cmsVideoRoot,
  #cmsLiveRoot,
  #cmsEventsRoot {
    min-width: 0;
  }

  .hero-focus.hero-headline,
  .ns-hero,
  .tt-hero,
  .ev-hero,
  .lv-hero,
  .vid-hero {
    margin-bottom: 12px !important;
  }

  .hero-focus.hero-headline {
    height: 336px !important;
    min-height: 336px !important;
    border-radius: 10px !important;
  }

  .hero-focus.hero-headline .hf-main-content {
    padding: 22px 18px 24px !important;
  }

  .hero-focus.hero-headline .hf-title-main {
    font-size: 22px !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  .hero-focus.hero-headline .hf-desc-main {
    -webkit-line-clamp: 2;
    margin-bottom: 12px !important;
  }

  .hero-focus.hero-headline .hf-tags,
  .hero-focus.hero-headline .hf-meta {
    flex-wrap: wrap;
  }

  .quick-brief-section,
  .quick-news-section,
  .data-dashboard,
  .news-section,
  .think-tank-section,
  .video-section,
  .ns-section,
  .events-section,
  .live-section {
    margin-bottom: 14px !important;
    border-radius: 10px !important;
  }

  .quick-brief-section,
  .quick-news-section,
  .data-dashboard,
  .news-section,
  .think-tank-section,
  .video-section {
    padding: 12px !important;
  }

  .section-header,
  .ns-section-hd,
  .reports-section-header {
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  .section-title,
  .ns-section-title,
  .reports-section-header h3 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .section-badge,
  .section-more,
  .section-subtitle,
  .ns-section-badge,
  .ns-section-sub {
    display: none !important;
  }

  .qb-item:nth-child(n+4),
  .quick-news-list li:nth-child(n+5),
  .qn-col-items .qn-item:nth-child(n+3),
  .qn-col-list .quick-news-list li:nth-child(n+4) {
    display: none !important;
  }

  .qb-item {
    padding: 9px 0 !important;
  }

  .qb-text,
  .quick-news-list li a {
    line-height: 1.45 !important;
  }

  .qn-three-col {
    display: block !important;
  }

  .qn-col-featured,
  .qn-col-items,
  .qn-col-list {
    padding: 0 !important;
    border: 0 !important;
  }

  .qn-featured-img {
    height: 112px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }

  .qn-featured-body p,
  .qn-header-compact .section-more,
  .qn-col-list {
    display: none !important;
  }

  .qn-item {
    padding: 9px 0 !important;
  }

  .qn-item-img {
    width: 72px !important;
    height: 50px !important;
    border-radius: 6px !important;
  }

  .data-dashboard .data-card:nth-child(n+5) {
    display: none !important;
  }

  .data-dashboard {
    box-shadow: none !important;
  }

  .data-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .data-card {
    min-height: 82px;
    padding: 10px !important;
  }

  .news-grid,
  .report-cards,
  .company-grid,
  .video-grid,
  .ns-focus-layout,
  .ns-deep-grid,
  .ns-market-cols,
  .ns-global-grid,
  .events-grid,
  .replay-grid,
  .video-grid-lg,
  .reports-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .news-card.featured .news-img,
  .report-cover,
  .video-thumb,
  .ns-focus-img,
  .ns-dc-img,
  .ec-cover,
  .rc-cover,
  .vgl-cover,
  .rgc-cover {
    height: 118px !important;
    min-height: 0 !important;
    border-radius: 8px !important;
  }

  .news-card.featured .news-body h3,
  .report-info h4,
  .video-card h4,
  .ns-focus-overlay h3,
  .ns-dc-body h3,
  .ns-pi-content h3,
  .ns-market-item h4,
  .ns-ic-body h3,
  .ns-gi-content h4,
  .ec-info h4,
  .rc-info h4,
  .vgl-info h4,
  .rgc-info h4 {
    font-size: 15px !important;
    line-height: 1.42 !important;
  }

  .news-excerpt,
  .report-info p,
  .ns-dc-body p,
  .ns-pi-content p,
  .ns-ic-body p,
  .ec-meta,
  .vgl-info p,
  .rgc-info p,
  .fr-subtitle,
  .lnc-desc,
  .fv-info p,
  .fe-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-list .news-item:nth-child(n+4),
  .news-section .news-grid > *:nth-child(n+3),
  .think-tank-section .report-card:nth-child(n+4),
  .company-grid .company-card:nth-child(n+4),
  .video-grid .video-card:nth-child(n+5),
  .author-grid .author-card:nth-child(n+5),
  .policy-grid > *:nth-child(n+4) {
    display: none !important;
  }

  .news-item,
  .ns-policy-item,
  .ns-market-item,
  .ns-global-item,
  .live-upcoming-item,
  .past-event-item {
    padding: 10px 0 !important;
    gap: 10px !important;
  }

  .news-item-img,
  .ns-fi-img,
  .ns-pi-img,
  .pe-thumb,
  .lui-cover {
    width: 76px !important;
    height: 54px !important;
    min-width: 76px !important;
    border-radius: 7px !important;
  }

  .news-item-body h4,
  .ns-fi-content h4,
  .lui-info h4,
  .pe-info h4 {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .sidebar,
  .ns-sidebar,
  .tt-sidebar {
    display: none !important;
  }

  .ns-hero,
  .tt-hero,
  .ev-hero,
  .lv-hero,
  .vid-hero {
    padding: 24px 0 22px !important;
  }

  .ns-hero-inner,
  .tt-hero .container,
  .ev-hero-inner,
  .lv-hero-inner,
  .vid-hero-inner {
    display: block !important;
  }

  .ns-hero-visual,
  .tt-hero-visual,
  .ev-hero-visual,
  .lv-hero-visual,
  .vid-hero-visual {
    display: none !important;
  }

  .ns-hero-title,
  .tt-hero-content h1,
  .ev-hero-content h1,
  .lv-hero-content h1,
  .vid-hero-content h1 {
    font-size: 23px !important;
    line-height: 1.28 !important;
    margin-bottom: 8px !important;
  }

  .ns-hero-desc,
  .tt-hero-content > p,
  .ev-hero-content p,
  .lv-hero-content p,
  .vid-hero-content p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ns-hero-stats,
  .tt-stats,
  .ev-hero-stats,
  .lv-hero-stats,
  .vid-hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
  }

  .ns-stat,
  .tt-stat,
  .ev-hero-stat,
  .lv-hero-stat,
  .vid-hero-stat {
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.05) !important;
  }

  .ns-stat-divider {
    display: none !important;
  }

  .ns-stat strong,
  .tt-stat strong,
  .ev-hero-stat strong,
  .lv-hero-stat strong,
  .vid-hero-stat strong {
    font-size: 18px !important;
  }

  .ns-stat span,
  .tt-stat span,
  .ev-hero-stat span,
  .lv-hero-stat span,
  .vid-hero-stat span {
    font-size: 10px !important;
    white-space: normal !important;
  }

  .ns-channel-bar,
  .research-nav,
  .video-filter-bar {
    position: static !important;
    display: block !important;
    margin-bottom: 12px !important;
    padding: 8px !important;
    border-radius: 10px !important;
  }

  .ns-channel-tabs,
  .rn-tabs,
  .vf-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding-bottom: 3px !important;
    scrollbar-width: none;
  }

  .ns-channel-tabs::-webkit-scrollbar,
  .rn-tabs::-webkit-scrollbar,
  .vf-tabs::-webkit-scrollbar {
    display: none;
  }

  .ns-ch-tab,
  .rn-tab,
  .vf-tab {
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 18px !important;
    border: 1px solid var(--border) !important;
    background: #fff !important;
    font-size: 12px !important;
    flex: 0 0 auto;
  }

  .ns-ch-tab.active,
  .rn-tab.active,
  .vf-tab.active {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
  }

  .ns-channel-sort,
  .rn-filter,
  .vf-sort {
    display: none !important;
  }

  .ns-focus-main,
  .ns-deep-card,
  .featured-event,
  .live-now-card,
  .featured-video,
  .featured-reports {
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .ns-focus-list .ns-focus-item:nth-child(n+3),
  .ns-deep-grid .ns-deep-card:nth-child(n+4),
  .ns-policy-list .ns-policy-item:nth-child(n+4),
  .ns-market-col .ns-market-item:nth-child(n+3),
  .ns-interview-list .ns-interview-card:nth-child(n+3),
  .ns-global-grid .ns-global-item:nth-child(n+4),
  .events-grid .event-card:nth-child(n+4),
  .past-events-list .past-event-item:nth-child(n+4),
  .live-upcoming-list .live-upcoming-item:nth-child(n+3),
  .replay-grid .replay-card:nth-child(n+5),
  .video-grid-lg .vgl-card:nth-child(n+5),
  .reports-grid .report-grid-card:nth-child(n+5),
  .fv-side .fv-side-item:nth-child(n+3) {
    display: none !important;
  }

  .ns-focus-list,
  .ns-policy-list,
  .ns-interview-list,
  .live-upcoming-list,
  .past-events-list {
    gap: 0 !important;
  }

  .ns-focus-main {
    min-height: auto !important;
  }

  .ns-focus-main .ns-focus-img {
    height: 188px !important;
  }

  .ns-focus-data,
  .ns-fi-meta,
  .ns-dc-meta,
  .ns-pi-meta,
  .ns-mi-meta,
  .ns-ic-meta,
  .ns-gi-meta,
  .ec-footer,
  .rc-meta,
  .vgl-meta,
  .rgc-meta {
    font-size: 10px !important;
    gap: 7px !important;
    flex-wrap: wrap;
  }

  .ns-pi-left,
  .ns-ic-avatar,
  .pe-date {
    display: none !important;
  }

  .event-card,
  .replay-card,
  .vgl-card,
  .report-grid-card {
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .featured-event,
  .live-now-card,
  .featured-reports,
  .fv-main {
    display: block !important;
  }

  .fe-image,
  .lnc-cover,
  .fr-cover,
  .fv-cover {
    width: 100% !important;
    height: 168px !important;
    min-height: 0 !important;
  }

  .fe-info,
  .lnc-info,
  .fr-right,
  .fv-info,
  .vgl-info,
  .rgc-info,
  .ec-info,
  .rc-info {
    padding: 12px !important;
  }

  .fr-left {
    width: 100% !important;
  }

  .fr-summary,
  .fr-meta span:nth-child(n+3),
  .fe-details,
  .lnc-meta,
  .fv-side {
    display: none !important;
  }

  .fr-title-area h2,
  .fe-info h3,
  .lnc-info h3,
  .fv-info h3 {
    font-size: 17px !important;
    line-height: 1.38 !important;
  }

  .fr-btns,
  .fe-actions,
  .cta-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .btn-primary,
  .btn-outline,
  .btn-primary-lg,
  .btn-outline-lg,
  .btn-register,
  .btn-detail {
    min-height: 42px !important;
    justify-content: center !important;
  }

  .events-cta {
    margin: 14px 0 !important;
    padding: 18px 14px !important;
    border-radius: 10px !important;
  }

  .events-cta h2 {
    font-size: 18px !important;
  }

  .events-cta p,
  .cta-contact {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .footer {
    margin-top: 18px !important;
    background: #0f1711 !important;
  }

  .footer-top {
    padding: 18px 0 10px !important;
  }

  .footer-grid {
    display: block !important;
  }

  .footer-brand {
    display: block !important;
    text-align: center !important;
  }

  .footer-logo {
    justify-content: center !important;
    margin-bottom: 6px !important;
  }

  .footer-logo span {
    font-size: 17px !important;
  }

  .footer-tagline {
    margin-bottom: 6px !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }

  .footer-desc {
    max-width: 320px;
    margin: 0 auto 10px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .footer-social {
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 4px !important;
  }

  .footer-social a {
    padding: 2px 8px !important;
    font-size: 11px !important;
    border-radius: 12px !important;
  }

  .footer-nav,
  .footer-qr {
    display: none !important;
  }

  .footer-bottom {
    padding: 9px 0 calc(9px + env(safe-area-inset-bottom)) !important;
  }

  .footer-bottom .container,
  .footer-bottom-inner {
    gap: 5px !important;
  }

  .footer-bottom-left,
  .footer-links {
    gap: 5px 10px !important;
  }

  .footer-bottom-left span,
  .footer-bottom-left a,
  .footer-links a,
  .footer-bottom p {
    font-size: 10px !important;
    line-height: 1.55 !important;
  }

  .footer-links a:nth-child(n+3) {
    display: none !important;
  }

  .float-toolbar {
    right: 12px !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: 998 !important;
  }

  .float-toolbar .ft-item {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.14) !important;
  }

  .float-toolbar .ft-item:not(:first-child) {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-focus.hero-headline {
    height: 316px !important;
    min-height: 316px !important;
  }

  .hero-focus.hero-headline .hf-title-main {
    font-size: 20px !important;
  }

  .news-card.featured .news-img,
  .report-cover,
  .video-thumb,
  .ns-focus-img,
  .ns-dc-img,
  .ec-cover,
  .rc-cover,
  .vgl-cover,
  .rgc-cover {
    height: 104px !important;
  }

  .ns-focus-main .ns-focus-img,
  .fe-image,
  .lnc-cover,
  .fr-cover,
  .fv-cover {
    height: 150px !important;
  }
}

/* Final mobile overflow correction. */
@media (max-width: 768px) {
  .hero-focus.hero-headline,
  .ns-channel-bar,
  .research-nav,
  .video-filter-bar {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-focus.hero-headline {
    border-radius: 10px !important;
  }

  .ns-channel-bar,
  .research-nav,
  .video-filter-bar {
    overflow: hidden !important;
  }

  .ns-channel-tabs,
  .rn-tabs,
  .vf-tabs {
    max-width: 100% !important;
    overflow-x: auto !important;
  }

  .mobile-nav-panel:not(.active) {
    visibility: hidden !important;
  }

  .mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-nav-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }
}
