/* Home-page "Currently Featured Auditions & Events" section. Self-contained so
   it doesn't pull the heavier list-page CSS into the static homepage. */

.featured-section {
    width: 100%;
    padding: 48px 20px 8px;
    box-sizing: border-box;
}

.featured-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.featured-heading {
    font-family: 'STIX Two Text', serif;
    color: #8e44ad;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 8px;
}

.featured-blurb {
    text-align: center;
    color: #555;
    font-family: 'Inter', sans-serif;
    margin: 0 auto 28px;
    max-width: 640px;
    line-height: 1.6;
}

.featured-blurb a,
.featured-empty a {
    color: #8e44ad;
    font-weight: 600;
    text-decoration: none;
}

.featured-blurb a:hover,
.featured-empty a:hover {
    text-decoration: underline;
}

.featured-empty {
    text-align: center;
    color: #777;
    font-family: 'Inter', sans-serif;
    background: #f6f1fa;
    border: 1px dashed #d6c2e6;
    border-radius: 10px;
    padding: 28px 20px;
    margin: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(142, 68, 173, 0.18);
}

.featured-card-image {
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-card-body {
    padding: 14px 16px 18px;
    font-family: 'Inter', sans-serif;
}

.featured-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    background: #8e44ad;
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 8px;
}

.featured-badge-event {
    background: #2c3e50;
}

.featured-card-title {
    font-family: 'STIX Two Text', serif;
    font-size: 1.15rem;
    margin: 0 0 4px;
    color: #2c3e50;
    line-height: 1.25;
}

.featured-card-subtitle {
    margin: 0 0 4px;
    color: #555;
    font-size: 0.92rem;
}

.featured-card-dates {
    margin: 0;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 520px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .featured-heading {
        font-size: 1.6rem;
    }
}
