﻿/* FEATURED MANAGEMENT CARDS (dark/yellow theme, mobile-first) */
.featured-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.featured-list {
    width: 100%;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--container-padding);
    justify-items: center;
    align-items: start;
    width: 100%;
}

.featured-card {
    background: linear-gradient(135deg, var(--bg-dark-lighter) 0%, #202020 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(217, 168, 50, 0.1);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl);
    transform: translateY(0);
    width: 200px;
    max-width: 100%;
    margin: 0;
}

    .featured-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(217, 168, 50, 0.3);
        border-color: var(--primary-gold-light);
    }

.card-img-top, .album-art, .featured-artwork {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.card-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
    .featured-card, .music-card {
        width: 100%;
        max-width: 100%;
    }
    .card-img-top, .album-art, .featured-artwork {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    .card-img-top, .album-art, .featured-artwork {
        height: 80px;
    }
}

.featured-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.featured-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .featured-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

.featured-description {
    color: var(--text-muted);
    font-size: 1.2rem;
}