/* ========== 攻略列表区 ========== */
.featured-section { background: linear-gradient(180deg, #15100c, #1a1410); padding: 50px 0 30px; border-bottom: 1px solid rgba(201,169,110,0.1); }
.section-title { margin-bottom: 32px; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card {
    position: relative;
    background: linear-gradient(180deg, #2a2218 0%, #1a1410 100%);
    border: 1px solid rgba(201,169,110,0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 10px 32px rgba(201,169,110,0.15);
}
.feature-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.feature-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.feature-card:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-img .feature-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}
.feature-card-img .feature-badge {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--red), #8b0000);
    color: #fff; font-size: 10px; padding: 4px 10px; letter-spacing: 1px;
}
.feature-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.feature-card-body .feat-cat {
    display: inline-block; font-size: 10px; color: var(--gold);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 2px 8px; letter-spacing: 1px; margin-bottom: 10px; align-self: flex-start;
}
.feature-card-body .feat-title {
    font-size: 16px; font-weight: 700; color: #ddd; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.4;
}
.feature-card-body .feat-desc {
    font-size: 11px; color: #6a5040; line-height: 1.5; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.feature-card-body .feat-meta {
    display: flex; align-items: center; gap: 16px; font-size: 11px; color: #5a4a38;
}
.feature-card-body .feat-meta .meta-icon { display: flex; align-items: center; gap: 4px; }

/* ========== 攻略列表区 ========== */
.strategy-section { background: linear-gradient(180deg, #1a1410 0%, #151210 30%, #1e1814 100%); padding: 56px 0 0; border-top: 1px solid rgba(201,169,110,0.1); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header .section-title { margin-bottom: 24px; }
.section-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab-btn { font-size: 12px; padding: 7px 18px; }

/* 排序+搜索微调 */
.sort-bar { max-width: 800px; margin: 14px auto 0; padding: 0 10px; }
.search-box-sm {
    display: flex; align-items: center;
    background: #1e1814; border: 1px solid #3a3028;
    padding: 8px 12px; width: 260px; transition: border-color 0.3s, box-shadow 0.3s;
}
.search-box-sm:focus-within { border-color: var(--gold-dark); box-shadow: 0 0 12px rgba(201,169,110,0.12); }
.search-box-sm svg { color: #6a5040; flex-shrink: 0; }
.search-box-sm input { flex: 1; background: none; border: none; outline: none; color: #ccc; font-size: 13px; padding: 0 8px; letter-spacing: 1px; }
.search-box-sm input::placeholder { color: #4a4038; }
.search-clear-sm { background: none; border: none; color: #6a5040; font-size: 16px; cursor: pointer; line-height: 1; transition: color 0.3s; }
.search-clear-sm:hover { color: var(--gold); }

/* 攻略列表 */
.strategy-list { display: flex; flex-direction: column; gap: 14px; }

.article-card {
    display: flex; align-items: stretch;
    background: linear-gradient(180deg, #2a2218 0%, #1e1814 100%);
    border: 1px solid #3a3028; overflow: hidden; cursor: pointer;
    transition: all 0.4s;
}
.article-card:hover { border-color: var(--gold-dark); box-shadow: 0 4px 20px rgba(201,169,110,0.1); }
.article-card .article-thumb {
    width: 220px; min-width: 220px; overflow: hidden; position: relative;
    background: #1a1410;
}
.article-card .article-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-card .article-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.article-card .article-cat {
    display: inline-block; font-size: 10px; color: var(--gold);
    border: 1px solid rgba(201,169,110,0.3); padding: 2px 8px;
    letter-spacing: 1px; margin-bottom: 10px; align-self: flex-start;
}
.article-card .article-title {
    font-size: 16px; font-weight: 700; color: #ddd; margin-bottom: 8px; letter-spacing: 1px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.article-card .article-excerpt {
    font-size: 12px; color: #6a5040; line-height: 1.6; margin-bottom: 14px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card .article-footer {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    border-top: 1px solid #2a2018; padding-top: 12px;
}
.article-card .article-footer .meta-left { display: flex; align-items: center; gap: 16px; font-size: 11px; color: #5a4a38; }
.article-card .article-footer .meta-right { display: flex; align-items: center; gap: 10px; }
.meta-tag {
    display: inline-block; font-size: 10px; padding: 2px 6px;
    border: 1px solid rgba(201,169,110,0.2); color: var(--gold-dark); letter-spacing: 1px;
}
.article-card .btn-read {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--gold); font-size: 11px; font-weight: 600;
    letter-spacing: 1px; text-decoration: none;
    padding: 5px 14px; border: 1px solid var(--gold-dark);
    transition: all 0.3s;
}
.article-card .btn-read:hover {
    background: rgba(201,169,110,0.15); text-decoration: none;
    box-shadow: 0 0 12px rgba(201,169,110,0.15);
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .article-card { flex-direction: column; }
    .article-card .article-thumb { width: 100%; min-width: 100%; height: 180px; }
    .sort-bar { flex-direction: column; align-items: stretch; }
    .search-box-sm { width: 100%; }
}
