/* 推荐内容列表样式 */ 
.recommended-section {
    padding: 30px 0;
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.03);
}

html:not(.light-theme) .recommended-section {
    background-color: rgba(255, 255, 255, 0.03);
}

.recommended-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.recommended-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.recommended-item {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

html:not(.light-theme) .recommended-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.recommended-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

html:not(.light-theme) .recommended-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.recommended-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.recommended-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

html:not(.light-theme) .recommended-item-title {
    color: rgba(255, 255, 255, 0.9);
}

.recommended-item-meta {
    color: #666;
    font-size: 14px;
    background-color: rgba(92, 107, 192, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

html:not(.light-theme) .recommended-item-meta {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(92, 107, 192, 0.2);
}

@media (max-width: 768px) {
    .recommended-item a {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .recommended-item-title {
        margin-bottom: 8px;
    }
}
