/* 故事分类筛选样式 */
.story-category-filter {
    margin-bottom: 20px;
    padding: 12px 15px;
    background-color: #f5f0e1;
    border-radius: 8px;
}

.story-category-filter h3 {
    font-size: 1.2em;
    color: #8B4513;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.story-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.story-category-item {
    padding: 4px 10px;
    background-color: transparent;
    border: 1px solid #D2691E;
    border-radius: 4px;
    text-decoration: none;
    color: #8B4513;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.story-category-item:hover,
.story-category-item.active {
    background-color: #D2691E;
    color: white;
}

/* 故事标题行样式 */
.story-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.story-title-row a:first-child {
    flex: 1;
    margin-right: 15px;
}

.story-title-row .story-category-link {
    font-size: 0.85em !important;
    color: #8B4513 !important;
    padding: 3px 10px;
    background-color: #f5f0e1;
    border: 1px solid #D2691E;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
}

.story-title-row .story-category-link:hover {
    background-color: #D2691E !important;
    color: #fff !important;
    border-color: #8B4513;
}

/* 故事摘要样式 */
.story-description {
    margin-top: 10px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    text-align: justify;
    padding: 0 5px;
}
