/* 
 * FILE: /skin/fun/css/kalimba-content.css
 * VERSION: V31
 * DESC: 样式修正版 (Fixed: Removed "seo" class names, targeted parent sections directly)
 */

/* --- 通用排版样式 (针对 指南 & 扩展 区域) --- */
.instruction-section article,
.explore-section article {
    margin-bottom: 0;
}

/* 标题样式 */
.instruction-section h2,
.explore-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.instruction-section h3,
.explore-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 25px;
    color: var(--text-main);
}

.instruction-section p,
.explore-section p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* 特性网格 (Feature Grid) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: var(--background);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: transform 0.2s;
}
.feature-item:hover { transform: translateY(-3px); }

.feature-item.orange { border-left-color: #e67e22; }
.feature-item.green { border-left-color: #2ecc71; }

.feature-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
}

.feature-icon {
    width: 20px; height: 20px; fill: currentColor; opacity: 0.8;
}

.feature-desc {
    font-size: 0.95rem; color: var(--text-muted); display: block; line-height: 1.5;
}

/* 底部导流区域 (CTA Box) */
.guide-cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.guide-cta-text { flex: 1 1 300px; }
.guide-cta-btn { flex: 0 0 auto; }

.btn-brown {
    display: inline-block;
    text-decoration: none;
    background: #795548;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-brown:hover {
    transform: translateY(-2px);
    background: #5d4037;
    color: #fff;
}