/* Shared hero metadata: artwork-colored score and status, neutral episode count. */
body.home-page .hero-facts {
    --hero-fact-accent: 180, 193, 255;
    align-items: center;
    gap: 8px 14px !important;
}

body.home-page .hero-facts .hero-fact {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    min-width: 0;
    min-height: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none;
    color: rgba(255, 255, 255, .74) !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .4);
    transition: color .45s ease, border-color .45s ease;
}

body.home-page .hero-facts .hero-fact.is-score {
    padding: 3px 11px !important;
    border: 1px solid rgba(var(--hero-fact-accent), .2) !important;
    border-radius: 999px !important;
    background: rgba(9, 12, 18, .3) !important;
    color: rgb(var(--hero-fact-accent)) !important;
    font-size: 15px !important;
    font-weight: 700;
}

body.home-page .hero-facts .hero-fact.is-status {
    color: rgb(var(--hero-fact-accent)) !important;
}

.hero-fact-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 700px) {
    body.home-page .hero-facts { gap: 4px 10px !important; }
    body.home-page .hero-facts .hero-fact { font-size: 11px !important; }
    body.home-page .hero-facts .hero-fact.is-score { font-size: 12px !important; }
    .hero-fact-icon { width: 13px; height: 13px; flex-basis: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page .hero-facts .hero-fact { transition: none; }
}
