/* 行业洞察页 — 专业 ERP 软件风格 */

.industry-news-section {
    padding: 0 0 5rem;
    position: relative;
    z-index: 1;
}

/* ─── 指标条 ─── */
.news-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: -2rem auto 2.5rem;
    position: relative;
    z-index: 2;
}

.news-metric {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.news-metric-value {
    display: block;
    font-family: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b1224;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #0f766e, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-metric-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

/* ─── 双栏布局 ─── */
.news-layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 300px);
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 4rem;
}

.news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f766e;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.news-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 8px #22d3ee;
}

.news-section-head h2,
.news-topics-head h2 {
    font-size: clamp(1.375rem, 2.8vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0b1224;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.news-section-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 36rem;
}

/* ─── 主内容：骨架 + 筹备卡片 ─── */
.news-feed-panel {
    position: relative;
    margin-top: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
}

.news-skeleton-list {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    filter: blur(2px);
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
}

.news-skeleton-card {
    padding: 1.25rem;
    background: rgba(248, 250, 252, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.news-skeleton-line {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: newsShimmer 1.6s ease-in-out infinite;
    margin-bottom: 0.65rem;
}

.news-skeleton-line.w-tag { width: 72px; height: 8px; margin-bottom: 0.85rem; }
.news-skeleton-line.w-title { width: 75%; height: 14px; }
.news-skeleton-line.w-text { width: 100%; }
.news-skeleton-line.short { width: 60%; margin-bottom: 0; }

@keyframes newsShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.news-coming-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.92) 40%);
}

.news-coming-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(99, 102, 241, 0.12));
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: #0f766e;
    margin-bottom: 1.25rem;
}

.news-coming-icon svg {
    width: 28px;
    height: 28px;
}

.news-coming-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b1224;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.news-coming-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.news-coming-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* RSS 资讯列表 */
.news-feed-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-feed-item {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 118, 110, 0.12);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.news-feed-item:hover {
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.08);
}

.news-feed-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.news-feed-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.news-feed-tag.market { background: rgba(34, 211, 238, 0.12); color: #0e7490; }
.news-feed-tag.store { background: rgba(45, 212, 191, 0.12); color: #0f766e; }
.news-feed-tag.wholesale { background: rgba(129, 140, 248, 0.15); color: #4f46e5; }
.news-feed-tag.reading { background: rgba(251, 191, 36, 0.15); color: #b45309; }
.news-feed-tag.policy { background: rgba(248, 113, 113, 0.12); color: #b91c1c; }

.news-feed-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.news-feed-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.news-feed-title a {
    color: inherit;
    text-decoration: none;
}

.news-feed-title a:hover {
    color: #0d9488;
}

.news-feed-summary {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 0.45rem;
}

.news-feed-source {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
}

.news-feed-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

.news-feed-note a {
    color: #0d9488;
    text-decoration: none;
}

.news-feed-note a:hover {
    text-decoration: underline;
}

/* ─── 按钮 ─── */
.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.news-btn-primary {
    color: #070b14;
    background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 50%, #6366f1 100%);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.25);
}

.news-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.35);
    color: #070b14;
}

.news-btn-ghost {
    color: #0f766e;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 118, 110, 0.25);
}

.news-btn-ghost:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.4);
    color: #0f766e;
}

.news-btn-outline {
    color: #f8fafc;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.news-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ─── 侧边栏 ─── */
.news-side-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.25rem 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    margin-bottom: 1rem;
}

.news-side-card h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.news-side-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.news-side-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.news-side-links a:hover {
    background: rgba(34, 211, 238, 0.08);
    color: #0f766e;
}

.news-side-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #0f766e;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
}

.news-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-topic-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: #475569;
    padding: 0.4rem 0;
}

.news-topic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.news-topic-dot.store { background: #14b8a6; }
.news-topic-dot.wholesale { background: #3b82f6; }
.news-topic-dot.market { background: #f59e0b; }
.news-topic-dot.reading { background: #ec4899; }
.news-topic-dot.policy { background: #6366f1; }

.news-side-cta {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2);
}

.news-side-cta-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.news-side-cta h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.news-side-cta p {
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

.news-side-cta-btn {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #070b14;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #22d3ee, #14b8a6);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 0.75rem;
}

.news-side-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.4);
    color: #070b14;
}

.news-side-cta-link {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(148, 163, 184, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.news-side-cta-link:hover {
    color: #22d3ee;
}

/* ─── 专题矩阵 ─── */
.news-topics-section {
    margin-bottom: 3rem;
}

.news-topics-head {
    text-align: center;
    margin-bottom: 2rem;
}

.news-topics-head .news-eyebrow {
    margin-bottom: 0.85rem;
}

.news-topics-head .news-section-desc {
    margin: 0 auto;
}

.news-topics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.news-topic-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.35rem 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.news-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #14b8a6, #6366f1);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.news-topic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1);
}

.news-topic-card:hover::before {
    opacity: 1;
}

.news-topic-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.news-topic-card-icon svg {
    width: 22px;
    height: 22px;
}

.news-topic-card-icon.store { background: rgba(13, 148, 136, 0.12); color: #0f766e; }
.news-topic-card-icon.wholesale { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.news-topic-card-icon.market { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.news-topic-card-icon.reading { background: rgba(236, 72, 153, 0.12); color: #db2777; }
.news-topic-card-icon.policy { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }

.news-topic-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0b1224;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.news-topic-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ─── 底部 CTA ─── */
.news-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0f172a 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.news-cta-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.news-cta-content p {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.65;
    margin: 0;
    max-width: 32rem;
}

.news-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ─── 响应式 ─── */
@media (max-width: 1024px) {
    .news-topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .news-side-card,
    .news-side-cta {
        margin-bottom: 0;
    }

    .news-side-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .news-metrics {
        grid-template-columns: 1fr;
        margin-top: -1.5rem;
    }

    .news-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem 1.5rem;
    }

    .news-cta-actions {
        width: 100%;
    }

    .news-cta-actions .news-btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 560px) {
    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .news-topics-grid {
        grid-template-columns: 1fr;
    }

    .news-feed-panel {
        min-height: 320px;
    }

    .news-coming-card {
        padding: 2rem 1.25rem;
    }

    .news-coming-actions {
        flex-direction: column;
        width: 100%;
    }

    .news-coming-actions .news-btn {
        width: 100%;
    }
}
