/**Layer 83: Recommendations*/
.reco-section {
    padding: 2rem 0
}

.reco-header {
    margin-bottom: 1.5rem
}

.reco-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0
}

.reco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem
}

.reco-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    transition: all .3s;
    cursor: pointer;
    position: relative
}

.reco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15)
}

.reco-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .25rem .75rem;
    background: rgba(239, 68, 68, .9);
    color: #fff;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600;
    z-index: 1
}

.reco-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem
}

.reco-content {
    padding: 1.25rem
}

.reco-category {
    font-size: .75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .5rem
}

.reco-item-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 .75rem 0;
    line-height: 1.4
}

.reco-reason {
    font-size: .75rem;
    color: #8b5cf6;
    background: rgba(139, 92, 246, .1);
    padding: .5rem;
    border-radius: 6px;
    display: inline-block
}

.reco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem
}

.reco-tag {
    padding: .25rem .5rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
    font-size: .625rem
}

.reco-score {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700
}

@media (max-width:768px) {
    .reco-grid {
        grid-template-columns: 1fr
    }
}