/* Featured Card */
.featured-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.card-bg-pattern {
    height: 120px;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    opacity: 0.6;
}

.card-content {
    padding: 20px 30px;
    margin-top: -60px;
    position: relative;
    background: #fff;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.card-badge {
    background: #764ba2;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.action-btn {
    font-size: 18px;
    color: #999;
    margin-left: 10px;
    text-decoration: none !important;
    transition: color 0.2s;
}

.action-btn:hover {
    color: #666;
}

.poem-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 24px;
}

.poem-title a {
    color: #333;
    text-decoration: none;
}

.poem-author {
    font-size: 14px;
    color: #888;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: normal;
}

.poem-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    min-height: 80px;
}

.read-more-btn {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #764ba2;
    color: #764ba2;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.read-more-btn:hover {
    background: #764ba2;
    color: #fff;
}

/* Rank & Rec Panels */
.rank-panel, .rec-panel {
    min-height: 250px;
}

.rank-list li, .rec-list li {
    padding: 8px 0;
}

.rank-num {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #eee;
    color: #666;
    border-radius: 3px;
    margin-right: 8px;
    font-size: 12px;
}

.rank-1 { background: #e74c3c; color: #fff; }
.rank-2 { background: #e67e22; color: #fff; }
.rank-3 { background: #f1c40f; color: #fff; }

