:root {
    /* 暖岩主题：琥珀橙主色 + 松石青强调（与此前靛紫/卡片模板区分） */
    --primary-color: #ea580c;
    --primary-dark: #9a3412;
    --primary-soft: rgba(234, 88, 12, 0.11);
    --secondary-color: #0c0a09;
    --accent-color: #0f766e;
    --accent-soft: rgba(15, 118, 110, 0.14);
    --surface: #fafaf9;
    --surface-elevated: #ffffff;
    --surface-band: #fff7ed;
    --text-color: #1c1917;
    --text-muted: #57534e;
    --border-subtle: rgba(12, 10, 9, 0.11);
    --border-inner: rgba(12, 10, 9, 0.06);
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --radius-card: 0.375rem;
    --radius-inner: 0.25rem;
    --radius-pill: 999px;
    --shadow-soft: 0 1px 0 rgba(12, 10, 9, 0.06), 0 14px 40px rgba(12, 10, 9, 0.07);
    --shadow-hover: 0 3px 0 rgba(234, 88, 12, 0.45), 0 22px 55px rgba(12, 10, 9, 0.12);
    --section-pad-y: clamp(2.75rem, 6vw, 4.5rem);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background: var(--surface);
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

.container .row > [class*="col-"] {
    min-width: 0;
}

/* 与 flex 子项配合，避免长文案撑破卡片宽度 */
.z6b959minw-0 {
    min-width: 0;
}

/* —— 导航 —— */
.z6b959navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    padding: 0.6rem 0;
}

.z6b959navbar-brand img {
    height: 44px;
    width: auto;
    max-height: 44px;
    object-fit: contain;
}

.z6b959nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--radius-inner);
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: normal;
    word-break: break-word;
}

.z6b959nav-link:hover {
    color: var(--primary-dark) !important;
    background: var(--primary-soft);
}

/* —— 英雄区（新布局：分栏 + 装饰底纹） —— */
.z6b959hero-section {
    background: linear-gradient(155deg, #312e81 0%, var(--secondary-color) 42%, #3730a3 100%);
    color: #f8fafc;
    padding: clamp(3.25rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 5.75rem);
    position: relative;
    overflow: hidden;
}

.z6b959hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(99, 102, 241, 0.45), transparent 55%),
        radial-gradient(ellipse 50% 45% at 95% 75%, rgba(245, 158, 11, 0.14), transparent 50%);
    pointer-events: none;
}

.z6b959hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 0h36v36H0V0zm36 36h36v36H36V36z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.z6b959hero-content {
    position: relative;
    z-index: 1;
}

.z6b959hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
}

.z6b959hero-title {
    font-size: clamp(1.9rem, 4.8vw, 3.15rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.z6b959hero-subtitle {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    margin-bottom: 1.25rem;
    opacity: 0.93;
    max-width: 38rem;
}

.z6b959hero-lede {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    opacity: 0.88;
    max-width: 40rem;
    line-height: 1.7;
}

.z6b959hero-image-container {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.z6b959hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.14);
    object-fit: contain;
}

.z6b959hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.z6b959hero-buttons .btn {
    padding: 0.62rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.z6b959hero-buttons .btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.z6b959hero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.z6b959hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: #1e1b4b;
}

.z6b959hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.z6b959hero-buttons .btn-outline-light {
    background: transparent;
    color: #e0e7ff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.z6b959hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .z6b959hero-buttons {
        flex-direction: column;
    }

    .z6b959hero-buttons .btn {
        width: 100%;
    }
}

/* —— 导读条 —— */
.z6b959prose-section {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--section-pad-y) 0;
}

.z6b959prose-section .lead {
    color: var(--text-muted);
    max-width: 54rem;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.125rem);
}

/* —— 通用板块外壳（统一边距与边框节奏） —— */
.z6b959shell {
    padding: var(--section-pad-y) 0;
}

.z6b959shell--tint {
    background: var(--surface-band);
}

.z6b959shell--white {
    background: var(--surface-elevated);
}

.z6b959shell--deep {
    background: linear-gradient(180deg, #312e81 0%, var(--secondary-color) 100%);
    color: #e0e7ff;
}

.z6b959section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
}

.z6b959section-head h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: -0.02em;
}

.z6b959section-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

.z6b959shell--deep .z6b959section-head h2 {
    color: #fff;
}

.z6b959shell--deep .z6b959section-head p {
    color: rgba(224, 231, 255, 0.88);
}

/* —— 特色卡（Bento 感） —— */
.card.z6b959feature-card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) var(--transition-easing),
        box-shadow var(--transition-speed) var(--transition-easing);
    border: 1px solid var(--border-subtle);
    height: 100%;
    background: var(--surface-elevated);
    overflow: hidden;
    box-sizing: border-box;
}

.card.z6b959feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.z6b959feature-icon {
    font-size: 1.65rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    background: var(--primary-soft);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-inner);
    margin: 0 auto 1rem;
    border: 1px solid var(--border-inner);
}

/* —— 场景条（关键词自然段落） —— */
.z6b959insight-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

.z6b959insight-panel h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.z6b959insight-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* —— 统计 —— */
.z6b959stats-section {
    background: linear-gradient(135deg, #4338ca, var(--secondary-color));
    color: #f8fafc;
    padding: var(--section-pad-y) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.z6b959stat-number {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--accent-color);
    line-height: 1.1;
}

.z6b959stat-label {
    font-size: clamp(0.8rem, 1.9vw, 0.95rem);
    opacity: 0.92;
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* —— 下载 —— */
.z6b959download-section {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 55%);
}

.z6b959download-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.z6b959download-subtitle {
    color: var(--text-muted);
}

.z6b959download-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    background: var(--surface-elevated);
    box-sizing: border-box;
    overflow: hidden;
    min-height: 0;
}

.z6b959download-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.z6b959platform-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.z6b959ios-icon {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: #fff;
}

.z6b959android-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
}

.z6b959download-info {
    background: var(--primary-soft);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
}

.z6b959info-item i {
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.z6b959info-item span {
    min-width: 0;
}

.z6b959download-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #fff;
}

@media (min-width: 768px) {
    .z6b959download-action .btn {
        width: auto;
        display: inline-flex;
    }
}

/* —— 新手指引 —— */
.z6b959guide-section {
    padding: var(--section-pad-y) 0;
    background: var(--surface-elevated);
}

.z6b959guide-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    padding: 1.35rem 1.5rem;
    height: 100%;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface-elevated) 100%);
    box-sizing: border-box;
    overflow: hidden;
    min-height: 0;
}

.z6b959guide-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.85rem;
}

.z6b959guide-panel ol,
.z6b959guide-panel ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.z6b959guide-panel li {
    margin-bottom: 0.45rem;
}

/* —— 安全 —— */
.z6b959security-section {
    padding: var(--section-pad-y) 0;
    background: var(--surface);
}

.z6b959security-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.z6b959security-subtitle {
    color: var(--text-muted);
}

.z6b959security-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.25rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.z6b959security-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.z6b959security-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    flex-shrink: 0;
}

.z6b959security-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.z6b959security-features {
    background: var(--primary-soft);
    padding: 1rem 1.1rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
}

.z6b959feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.z6b959feature-item:last-child {
    margin-bottom: 0;
}

.z6b959feature-item span {
    min-width: 0;
    font-size: 0.875rem;
}

.z6b959feature-item i {
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 0.12em;
}

.z6b959security-certificates {
    margin-top: 2.5rem;
}

.z6b959certificate-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    height: 100%;
    transition: transform 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 0;
}

.z6b959certificate-card:hover {
    transform: translateY(-3px);
}

.z6b959certificate-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.z6b959certificate-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
}

.z6b959certificate-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
}

/* —— FAQ —— */
.card.z6b959faq-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 0;
}

.card.z6b959faq-card:hover {
    box-shadow: var(--shadow-hover);
}

.card.z6b959faq-card .card-title {
    color: var(--secondary-color);
    font-size: 0.98rem;
    font-weight: 700;
}

/* —— 文章区 —— */
.z6b959article-strip {
    background: var(--gray-100);
    border-top: 1px solid var(--border-subtle);
}

#article .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
}

#article .card:hover {
    box-shadow: var(--shadow-hover);
}

section#faq.bg-white,
section#faq.z6b959shell--white {
    border-top: 1px solid var(--border-subtle);
}

/* —— 页脚 —— */
.z6b959footer {
    background: var(--secondary-color);
    padding: 2.75rem 0 1.35rem;
    color: #a8a29e;
}

.z6b959footer .z6b959footer-title {
    color: #fafaf9;
}

.z6b959footer-link {
    color: #a8a29e;
}

.z6b959footer-link:hover {
    color: var(--accent-color);
}

.z6b959footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.35rem;
}

.z6b959footer-bottom a {
    color: #d6d3d1;
}

.z6b959footer-bottom a:hover {
    color: var(--accent-color);
}

/* —— 子页 —— */
.z6b959page-shell {
    padding: clamp(1.75rem, 4vw, 3rem) 0;
    background: var(--surface);
    min-height: 50vh;
}

.z6b959page-shell .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-sizing: border-box;
}

.z6b959page-shell .card.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

.z6b959page-shell aside a {
    color: var(--primary-dark);
    text-decoration: none;
}

.z6b959page-shell aside a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--primary-dark) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(234, 88, 12, 0.22);
}

.z6b959sidebar-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jzMag_heroMain,
.jzMag_asideCard,
.jzMag_tline > li,
.jzMag_acquireRow,
.jzMag_details {
    animation: fadeIn 0.5s var(--transition-easing) forwards;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.45rem;
}

.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.65rem;
    border-radius: var(--radius-card);
    margin-top: 0.45rem;
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
    }
}

.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

.z6b959thumb-home {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.z6b959info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.z6b959info-item:last-child {
    margin-bottom: 0;
}

.z6b959stat-item {
    text-align: center;
    padding: 0.45rem 0.3rem;
    box-sizing: border-box;
}

.z6b959friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.z6b959friend-links li {
    display: inline;
}

.z6b959friend-links a {
    color: #a8a29e;
    text-decoration: none;
}

.z6b959friend-links a:hover {
    color: var(--accent-color);
}

.z6b959article-content {
    line-height: 1.75;
    word-break: break-word;
}

.z6b959article-content img {
    max-width: 100%;
    height: auto;
}

.z6b959diyfield {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.z6b959meta-tags {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.z6b959meta-tags .list-inline-item {
    margin-right: 0 !important;
    display: inline-block;
}

.z6b959tagitem a {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
}

.z6b959tagitem a:hover {
    background: rgba(234, 88, 12, 0.18);
}

.z6b959pages .pagelist a {
    color: var(--primary-dark);
}

/* 与主题色一致（避免 Bootstrap 默认蓝色与靛紫主题冲突） */
.z6b959text-brand {
    color: var(--primary-dark) !important;
}

@media (max-width: 767px) {
    .z6b959navbar {
        padding: 0.4rem 0;
    }

    .z6b959navbar .navbar-collapse {
        max-height: min(70vh, 28rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z6b959navbar .navbar-nav .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.9375rem;
    }

    .z6b959prose-section .lead {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.72;
        max-width: none;
    }

    .z6b959section-head {
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .z6b959section-head h2 {
        text-align: left;
    }

    .z6b959section-head p {
        font-size: 0.9rem;
        line-height: 1.62;
        text-align: left;
    }

    .z6b959shell--deep .z6b959section-head {
        text-align: center;
    }

    .z6b959shell--deep .z6b959section-head h2,
    .z6b959shell--deep .z6b959section-head p {
        text-align: center;
    }

    .z6b959guide-panel {
        padding: 1.1rem 1.15rem;
    }

    .z6b959guide-panel h3 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
        font-size: 1rem;
        line-height: 1.35;
    }

    .z6b959hero-section {
        padding-top: clamp(2rem, 7vw, 3rem);
        padding-bottom: clamp(2.25rem, 8vw, 3.5rem);
    }

    .z6b959hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .z6b959hero-lede {
        font-size: 0.9rem;
    }

    .z6b959hero-image-container {
        min-height: 160px;
        margin-top: 0.5rem;
    }

    .z6b959hero-buttons .btn-lg {
        --bs-btn-padding-y: 0.5rem;
        --bs-btn-padding-x: 1rem;
        font-size: 0.9375rem;
    }

    .z6b959stats-section {
        padding: clamp(2rem, 5vw, 2.75rem) 0;
    }

    .z6b959stat-label {
        max-width: none;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .z6b959stat-number {
        font-size: clamp(1.4rem, 5.2vw, 1.85rem);
    }

    .z6b959security-section,
    .z6b959download-section,
    .z6b959guide-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }

    .card.z6b959faq-card .card-body {
        padding: 0.85rem 1rem;
    }

    .z6b959footer {
        padding: 2rem 0 1.1rem;
    }

    .z6b959footer-bottom p.small.mb-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0.4rem;
    }

    .z6b959footer-bottom p.small.mb-2 > span {
        opacity: 0.45;
        flex: 0 0 auto;
    }

    .z6b959page-shell {
        padding-top: 1.35rem !important;
        padding-bottom: 1.75rem !important;
    }

    .z6b959page-shell h1.h3 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.35;
        word-break: break-word;
    }

    .z6b959page-shell header .small {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        row-gap: 0.25rem;
    }

    .z6b959security-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .z6b959thumb-home {
        height: 96px !important;
    }

    #article h3.h5,
    #article .card-body h3.h6,
    #article .card-body h3 {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        line-height: 1.35;
        word-break: break-word;
    }

    .listbox .e2 li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .z6b959thumb-list,
    .z6b959thumb-related {
        height: 72px !important;
    }

    .z6b959thumb-side {
        height: 50px !important;
    }

    .z6b959thumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }

    .z6b959download-card .card-body {
        padding: 1rem !important;
    }

    .z6b959download-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.65rem;
        margin-bottom: 0.85rem !important;
    }

    .z6b959download-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .z6b959platform-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .z6b959download-info {
        padding: 0.95rem 1rem;
    }

    .z6b959download-action .btn {
        width: 100%;
        white-space: normal;
    }

    .z6b959insight-panel {
        padding: 1.1rem 1.15rem;
    }
}

@media (max-width: 575px) {
    #article .z6b959thumb-home {
        height: 88px !important;
    }

    .z6b959thumb-list,
    .z6b959thumb-related {
        height: 64px !important;
    }

    .z6b959thumb-side {
        height: 46px !important;
    }

    .z6b959thumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }

    .z6b959hero-kicker {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        line-height: 1.35;
        max-width: 100%;
    }

    .z6b959footer-bottom {
        font-size: 0.8125rem;
    }
}

/* ========== 首页 jzMag ========== */
/* 板块边框：统一 1px 权重与色值，圆角 + overflow 防内容挤出 */
.jzMag_heroGrid > * {
    min-width: 0;
}

.jzMag_hero {
    background: radial-gradient(120% 80% at 100% 0%, #292524 0%, #0c0a09 55%);
    color: #fafaf9;
    padding: clamp(2.75rem, 7vw, 4.75rem) 0 clamp(3.25rem, 8vw, 5rem);
    position: relative;
    overflow: hidden;
}

.jzMag_hero::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -35%;
    width: 55%;
    height: 85%;
    background: linear-gradient(145deg, rgba(234, 88, 12, 0.14), transparent 55%);
    pointer-events: none;
    border-radius: 50%;
}

.jzMag_heroGrid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .jzMag_heroGrid {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        align-items: end;
    }
}

.jzMag_eyebrow {
    font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #fdba74;
    display: block;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
}

.jzMag_hero h1 {
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
    max-width: 14ch;
}

.jzMag_dek {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    color: #d6d3d1;
    margin: 0 0 1.25rem;
    max-width: 36rem;
    line-height: 1.55;
    overflow-wrap: break-word;
}

.jzMag_lede {
    font-size: 0.95rem;
    color: #a8a29e;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    max-width: 40rem;
    border-left: 2px solid #ea580c;
    padding-left: 1rem;
}

.jzMag_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.jzMag_actions .btn {
    border-radius: 0;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
    letter-spacing: 0.02em;
}

.jzMag_actions .btn-light {
    background: #fafaf9;
    color: #0c0a09;
    border: none;
}

.jzMag_actions .btn-outline-light {
    background: transparent;
    color: #fafaf9;
    border: 1px solid rgba(250, 250, 249, 0.45);
}

.jzMag_actions .btn-primary {
    background: #ea580c;
    border: none;
    color: #fff;
}

.jzMag_actions .btn-primary:hover {
    background: #c2410c;
    color: #fff;
}

.jzMag_heroAside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jzMag_asideCard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.15rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #e7e5e4;
    overflow-wrap: break-word;
}

.jzMag_asideCard strong {
    color: #fdba74;
    font-weight: 600;
}

.jzMag_heroFig {
    margin: 0;
    text-align: center;
}

.jzMag_heroFig img {
    max-width: min(280px, 100%);
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991px) {
    .jzMag_actions {
        flex-direction: column;
    }

    .jzMag_actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* —— 导读：双栏分栏排版 —— */
.jzMag_intro {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: #fafaf9;
    border-bottom: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_introHead {
    max-width: 12rem;
    margin-bottom: 1.5rem;
}

.jzMag_introHead span {
    display: block;
    font-family: ui-monospace, monospace;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: #ea580c;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.jzMag_introHead h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    color: #0c0a09;
    line-height: 1.2;
}

.jzMag_introCols {
    column-count: 1;
    column-gap: 2.5rem;
    color: #44403c;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.78;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .jzMag_introCols {
        column-count: 2;
    }
}

.jzMag_introCols p {
    margin: 0 0 1rem;
    break-inside: avoid;
}

.jzMag_introCols strong {
    color: #0c0a09;
}

/* —— 能力：时间线 + 术语表 —— */
.jzMag_cap {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: #fff;
    border-top: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_secTitle {
    margin-bottom: 2rem;
    max-width: 38rem;
    min-width: 0;
}

.jzMag_secTitle h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0c0a09;
    margin: 0 0 0.5rem;
}

.jzMag_secTitle p {
    margin: 0;
    color: #57534e;
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: break-word;
}

.jzMag_tline {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid #ea580c;
    box-sizing: border-box;
}

.jzMag_tline > li {
    position: relative;
    padding: 0 0 1.85rem 1.25rem;
}

.jzMag_tline > li:last-child {
    padding-bottom: 0;
}

.jzMag_tline > li::before {
    content: "";
    position: absolute;
    left: calc(-1.5rem - 5px);
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ea580c;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.35);
    box-sizing: border-box;
}

.jzMag_tline h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0c0a09;
    margin: 0 0 0.45rem;
}

.jzMag_tline p {
    margin: 0;
    color: #57534e;
    font-size: 0.95rem;
    line-height: 1.7;
}

.jzMag_matrix {
    display: grid;
    gap: 1px;
    background: rgba(12, 10, 9, 0.1);
    border: 1px solid rgba(12, 10, 9, 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .jzMag_matrix {
        grid-template-columns: 1fr 1fr;
    }
}

.jzMag_matrix > div {
    padding: 1.1rem 1.25rem;
    background: #fafaf9;
    min-width: 0;
}

.jzMag_mtag {
    display: block;
    font-family: ui-monospace, monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ea580c;
    margin: 0 0 0.35rem;
    overflow-wrap: anywhere;
}

.jzMag_matrix p {
    margin: 0;
    font-size: 0.92rem;
    color: #44403c;
    line-height: 1.65;
}

/* —— 开户：横向步骤带 —— */
.jzMag_onboard {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: linear-gradient(180deg, #fff7ed 0%, #fafaf9 100%);
    border-top: 1px solid rgba(12, 10, 9, 0.1);
    border-bottom: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_steps {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.jzMag_step {
    flex: 0 0 min(17.5rem, calc(100% - 1.25rem));
    max-width: calc(100% - 0.5rem);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(12, 10, 9, 0.1);
    padding: 1.2rem 1.25rem;
    position: relative;
    box-sizing: border-box;
    min-width: 0;
}

.jzMag_stepNum {
    font-family: ui-monospace, monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(234, 88, 12, 0.25);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.jzMag_step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #0c0a09;
}

.jzMag_step p,
.jzMag_step li {
    font-size: 0.9rem;
    color: #57534e;
    line-height: 1.6;
}

.jzMag_step ul,
.jzMag_step ol {
    margin: 0;
    padding-left: 1.1rem;
}

@media (min-width: 992px) {
    .jzMag_steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: hidden;
        gap: 0;
        border: 1px solid rgba(12, 10, 9, 0.1);
        border-radius: var(--radius-card);
        background: rgba(12, 10, 9, 0.1);
    }

    .jzMag_step {
        flex: none;
        max-width: none;
        border: none;
        border-right: 1px solid rgba(12, 10, 9, 0.1);
        border-radius: 0;
        margin: 0;
    }

    .jzMag_step:last-child {
        border-right: none;
    }
}

/* —— 指标：窄幅通栏 —— */
.jzMag_metrics {
    background: #0c0a09;
    color: #fafaf9;
    padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.jzMag_metricsHead {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1.75rem;
}

.jzMag_metricsHead h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fafaf9;
}

.jzMag_metricsHead p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: #a8a29e;
    overflow-wrap: break-word;
}

.jzMag_metricsInner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    text-align: center;
    border: 1px solid rgba(250, 250, 249, 0.12);
    border-radius: var(--radius-inner);
    overflow: hidden;
    box-sizing: border-box;
}

.jzMag_metric {
    flex: 1 1 45%;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    border-left: 1px solid rgba(250, 250, 249, 0.12);
    box-sizing: border-box;
}

.jzMag_metric:first-child {
    border-left: none;
}

@media (max-width: 575px) {
    .jzMag_metric {
        flex: 1 1 42%;
        border-left: none;
        border-top: 1px solid rgba(250, 250, 249, 0.12);
        padding-top: 0.85rem;
    }

    .jzMag_metric:nth-child(-n + 2) {
        border-top: none;
    }
}

@media (min-width: 992px) {
    .jzMag_metric {
        flex: 1 1 0;
        border-left: 1px solid rgba(250, 250, 249, 0.12);
    }

    .jzMag_metric:first-child {
        border-left: none;
    }
}

.jzMag_metricVal {
    font-family: ui-monospace, "Consolas", monospace;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    color: #fdba74;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.jzMag_metricLbl {
    font-size: 0.78rem;
    line-height: 1.35;
    color: #a8a29e;
    max-width: 14rem;
    margin: 0 auto;
}

.jzMag_metricsNote {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: #78716c;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* —— 下载：通栏分割 —— */
.jzMag_acquire {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: #fafaf9;
}

.jzMag_acquireRow {
    display: grid;
    gap: 1rem 1.75rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(12, 10, 9, 0.1);
    align-items: start;
    box-sizing: border-box;
    min-width: 0;
}

@media (min-width: 768px) {
    .jzMag_acquireRow {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
}

.jzMag_acquireRow:first-of-type {
    border-top: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_acquireIcon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0a09;
    color: #fafaf9;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.jzMag_acquireIcon.jzMag_acquireIcon--green {
    background: #14532d;
}

.jzMag_acquireBody {
    min-width: 0;
}

.jzMag_acquireBody h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0c0a09;
}

.jzMag_acquireBody p,
.jzMag_acquireBody li {
    margin: 0;
    font-size: 0.9rem;
    color: #57534e;
    line-height: 1.55;
}

.jzMag_acquireList {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.jzMag_acquireList li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.jzMag_acquireList li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: 700;
}

.jzMag_acquireRow .btn {
    border-radius: 0;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .jzMag_acquireRow {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.75rem;
        align-items: start;
    }

    .jzMag_acquireIcon {
        grid-column: 1;
        grid-row: 1;
    }

    .jzMag_acquireBody {
        grid-column: 2;
        grid-row: 1;
    }

    .jzMag_acquireRow .btn {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        white-space: normal;
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.jzMag_acquireFoot {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: #78716c;
    line-height: 1.65;
    max-width: 48rem;
}

/* —— 安全：行带状 —— */
.jzMag_trust {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: #fff;
}

.jzMag_trustRows {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(12, 10, 9, 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-sizing: border-box;
}

.jzMag_trustRow {
    display: grid;
    gap: 0.75rem 1.25rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(12, 10, 9, 0.1);
    align-items: start;
    box-sizing: border-box;
    min-width: 0;
}

@media (min-width: 768px) {
    .jzMag_trustRow {
        grid-template-columns: 10rem 1fr;
    }
}

.jzMag_trustRow:last-child {
    border-bottom: none;
}

.jzMag_trustRow h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ea580c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.jzMag_trustRow ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jzMag_trustRow li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: #44403c;
    line-height: 1.55;
    margin-bottom: 0.35rem;
}

.jzMag_trustRow li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #0f766e;
}

.jzMag_certs {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .jzMag_certs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.jzMag_cert {
    background: #fafaf9;
    border: 1px dashed rgba(12, 10, 9, 0.14);
    border-radius: var(--radius-inner);
    padding: 1.1rem 1.15rem;
    text-align: left;
    box-sizing: border-box;
    min-height: 0;
}

.jzMag_cert h4 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0c0a09;
}

.jzMag_cert p {
    margin: 0;
    font-size: 0.82rem;
    color: #57534e;
    line-height: 1.55;
}

/* —— FAQ：原生 details —— */
.jzMag_support {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: #fafaf9;
    border-top: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_details {
    border: 1px solid rgba(12, 10, 9, 0.1);
    background: #fff;
    margin-bottom: 0.65rem;
    border-radius: var(--radius-inner);
    overflow: hidden;
    box-sizing: border-box;
}

.jzMag_details summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0c0a09;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    word-break: break-word;
    hyphens: auto;
}

.jzMag_details summary::-webkit-details-marker {
    display: none;
}

.jzMag_details summary::after {
    content: "+";
    font-family: ui-monospace, monospace;
    font-weight: 400;
    color: #ea580c;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.12em;
}

.jzMag_details[open] summary::after {
    content: "−";
}

.jzMag_detailsBody {
    padding: 0 1.15rem 1.1rem;
    margin: 0;
    font-size: 0.9rem;
    color: #57534e;
    line-height: 1.65;
    border-top: 1px solid rgba(12, 10, 9, 0.1);
    word-break: break-word;
}

/* —— 文章栅格 —— */
.jzMag_feed {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: #fff;
    border-top: 1px solid rgba(12, 10, 9, 0.1);
}

.jzMag_feedHead {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .jzMag_feedHead {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

#article.jzMag_feed .card {
    border-radius: var(--radius-card);
    border: 1px solid rgba(12, 10, 9, 0.1);
    border-top: 3px solid #ea580c;
    box-shadow: none;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 0;
}

#article.jzMag_feed .card:hover {
    box-shadow: 0 12px 40px rgba(12, 10, 9, 0.08);
}

#article.jzMag_feed .card-img-top {
    border-radius: 0;
}

@media (max-width: 767px) {
    .jzMag_hero h1 {
        max-width: none;
    }

    .jzMag_introHead {
        max-width: none;
    }

    .jzMag_secTitle {
        max-width: none;
        text-align: left;
    }

    .jzMag_secTitle h2 {
        text-wrap: balance;
    }

    .jzMag_metricsHead {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .jzMag_metricsNote {
        text-align: left;
    }

    .jzMag_feedHead .btn {
        width: 100%;
        align-self: stretch;
    }

    .jzMag_tline {
        padding-left: 1.15rem;
    }

    .jzMag_tline > li {
        padding-left: 1rem;
    }

    .jzMag_tline > li::before {
        left: calc(-1.15rem - 5px);
    }

    .jzMag_metricsInner {
        flex-direction: column;
        text-align: left;
    }

    .jzMag_metric {
        flex: 1 1 100%;
        border-left: none;
        border-top: 1px solid rgba(250, 250, 249, 0.12);
        padding-top: 1rem;
    }

    .jzMag_metric:first-child {
        border-top: none;
        padding-top: 0.5rem;
    }

    .jzMag_metricLbl {
        margin: 0;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .jzMag_eyebrow {
        letter-spacing: 0.16em;
        font-size: 0.62rem;
    }

    .jzMag_matrix > div {
        padding: 1rem 0.95rem;
    }

    .jzMag_acquireFoot {
        font-size: 0.8125rem;
    }

    .jzMag_trustRow h3 {
        word-break: break-word;
    }
}
