/* ========== what-is-halal.css — 什么是清真认证页专属样式 ========== */

.category-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .category-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== 数据统计卡片 ========== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 36px 0;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0044bd;
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
    line-height: 1.5;
}
.stat-source {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

/* ========== 标准对比 ========== */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 28px 0;
}
.standard-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.25s ease;
}
.standard-card:hover {
    border-color: #0044bd;
    box-shadow: 0 6px 20px rgba(0,68,189,0.06);
}
.standard-card.featured-std {
    border-color: #0044bd;
    background: linear-gradient(135deg, rgba(0,68,189,0.02), rgba(0,68,189,0.05));
}
.standard-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}
.standard-card .std-code {
    font-size: 13px;
    font-weight: 600;
    color: #0044bd;
    display: inline-block;
    padding: 2px 10px;
    background: rgba(0,68,189,0.06);
    border-radius: 4px;
    margin-bottom: 12px;
}
.standard-card ul {
    padding-left: 18px;
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}
.standard-card ul li {
    margin-bottom: 4px;
}

/* ========== 行业应用区块 ========== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.industry-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
}
.industry-item:hover {
    border-color: #0044bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,68,189,0.06);
}
.industry-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.industry-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}
.industry-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ========== 中国企业区块 ========== */
.cn-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.cn-benefit-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(0,68,189,0.03), rgba(31,188,120,0.02));
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
}
.cn-benefit-card .benefit-num {
    font-size: 28px;
    font-weight: 800;
    color: #0044bd;
    margin-bottom: 8px;
}
.cn-benefit-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}
.cn-benefit-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ========== 内链按钮 ========== */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0044bd;
    background: rgba(0,68,189,0.05);
    border: 1px solid rgba(0,68,189,0.12);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.inline-cta:hover {
    background: rgba(0,68,189,0.1);
    border-color: #0044bd;
    text-decoration: none;
    color: #0044bd;
}

/* ========== 图例标记 ========== */
.info-callout {
    background: linear-gradient(135deg, rgba(5,150,105,0.04), rgba(5,150,105,0.02));
    border: 1px solid rgba(5,150,105,0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.info-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}
.info-callout-body {
    font-size: 14px;
    color: #334155;
    line-height: 1.7;
}
.info-callout-body strong {
    color: #059669;
}

/* ========== 交叉链接卡片 hover（替代内联 onmouseover/onmouseout） ========== */
.cross-link-card:hover {
    border-color: #0044bd;
    box-shadow: 0 4px 12px rgba(0,68,189,0.08);
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cn-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .standard-grid {
        grid-template-columns: 1fr;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .cn-benefit-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 26px;
    }
}
