/*
 * Hero de catálogo (Películas / Series). Archivo nuevo y aislado —
 * nunca se modifica assets/css/style.css. Reutiliza el fondo oscuro
 * ya existente del body; solo aporta el bloque en sí.
 *
 * Segunda versión: mismo diseño, mucho más compacto — el layout real
 * del sitio lo muestra en la columna de contenido junto al sidebar
 * (no a todo el ancho como en las capturas de referencia), así que
 * el tamaño original se veía demasiado grande. Se redujeron
 * paddings, tamaños de fuente y márgenes en todos los elementos.
 */

.mrs-catalog-hero {
    position: relative;
    width: 100%;
    padding: 1.25rem 1rem 1.35rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 16px;
    background: radial-gradient(ellipse at top, rgba(90, 70, 200, 0.12), transparent 60%), #0d1220;
    overflow: hidden;
}

.mrs-catalog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: rgba(47, 128, 237, 0.12);
    border: 1px solid rgba(47, 128, 237, 0.35);
    color: #7fd6a8;
}

.mrs-catalog-hero__badge-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
}

.mrs-catalog-hero__badge-icon svg {
    width: 100%;
    height: 100%;
}

.mrs-catalog-hero--movies .mrs-catalog-hero__badge {
    background: rgba(47, 128, 237, 0.12);
    border-color: rgba(47, 128, 237, 0.35);
    color: #7ab8f5;
}

.mrs-catalog-hero--tvshows .mrs-catalog-hero__badge {
    background: rgba(45, 200, 140, 0.12);
    border-color: rgba(45, 200, 140, 0.35);
    color: #7fd6a8;
}

.mrs-catalog-hero__title {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    line-height: 1.15;
    font-weight: 800;
}

.mrs-catalog-hero__title-gradient {
    display: inline;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mrs-catalog-hero__title-white {
    display: inline;
    color: #fff;
}

.mrs-catalog-hero__title-gradient::after {
    content: " ";
}

.mrs-catalog-hero__subtitle {
    max-width: 520px;
    margin: 0 auto 0.85rem;
    color: rgba(220, 226, 240, 0.75);
    font-size: 0.82rem;
    line-height: 1.45;
}

.mrs-catalog-hero__stats {
    display: flex;
    justify-content: center;
}

.mrs-catalog-hero__stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
}

.mrs-catalog-hero__stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.mrs-catalog-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(220, 226, 240, 0.6);
}

@media (min-width: 768px) {
    .mrs-catalog-hero {
        padding: 1.75rem 1.5rem 1.75rem;
    }

    .mrs-catalog-hero__title {
        font-size: 1.85rem;
    }

    .mrs-catalog-hero__subtitle {
        font-size: 0.88rem;
    }

    .mrs-catalog-hero__stat-number {
        font-size: 1.5rem;
    }
}
