/* Pages - Home */

/* Featured Card Override */
.featured-section {
    padding: 0;
    margin-bottom: var(--space-12);
}

.hero-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: rgba(19, 34, 68, 0.6);
    border-radius: 2.5rem;
    /* Match the new card radius */
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(12px);
}

/* Add a glow behind the featured card */
.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(32, 201, 151, 0.08), transparent 50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-card {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-card-content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    order: 2;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-card-content {
        order: 1;
    }
}

.hero-card-media {
    background-color: #000;
    height: min(400px, 50vh);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    order: 1;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .hero-card-media {
        order: 2;
        height: auto;
        border-bottom: none;
        border-left: 1px solid var(--color-border);
    }
}

.hero-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-card-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
    color: #fff;
}

.hero-card-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    max-width: 500px;
}

/* Filters */
.filters-section {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-10);
}