/* =========================
   Page univers — Bloc d'accroche
========================= */

#universes-hub-hero {
    min-height: 55svh;
    padding-block: 5rem;
}

.universes-hub-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 820px;
    line-height: 1.15;
}

.universes-hub-hero__lead {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.universes-hub-hero__chips {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.universes-hub-chip {
    color: rgba(255, 255, 255, 0.7);
    font-size: .8rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.universes-hub-chip:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 576px) {
    #universes-hub-hero {
        min-height: auto;
        padding-block: 4rem 3rem;
    }

    .universes-hub-chip {
        font-size: .75rem;
        padding: 5px 12px;
    }
}


/* =========================
   Page univers — Grille des 4 univers
========================= */

.universe-block {
    border-top: 1px solid rgba(208, 208, 208, 0.5);
    padding-block: 3.5rem;
}

.universe-block + .universe-block {
    /* La bordure top de chaque bloc suffit — pas besoin de border-bottom */
}

/* Panneau image */
.universe-block__media {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.universe-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.universe-block:hover .universe-block__img {
    transform: scale(1.04);
}

.universe-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 44, 0.42);
    pointer-events: none;
}

/* Badge numéro + icône sur l'image */
.universe-block__badge {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.universe-block__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--isatis-warning);
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Panneau contenu */
.universe-block__inner {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.universe-block__title {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--isatis-primary);
    margin: 0;
    border-left: 4px solid var(--isatis-warning);
    padding-left: 0.875rem;
    line-height: 1.25;
}

.universe-block__situation {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

.universe-block__promesse {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--isatis-primary);
    line-height: 1.6;
    margin: 0;
}

/* Zone offre d'entrée */
.universe-block__offre {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.universe-block__offre-label {
    font-size: 0.8rem;
    color: var(--isatis-muted);
    margin: 0 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.universe-block__offre-label strong {
    color: var(--isatis-primary);
    font-weight: 600;
}

.universe-block__offre-desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 0.875rem;
}

.universe-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.universe-block__list li {
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.55;
}

.universe-block__list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--isatis-warning);
    margin-top: 0.45em;
}

.universe-block__cta {
    align-self: flex-start;
    border-radius: 25px;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 991px) {
    .universe-block__media {
        min-height: 280px;
    }

    .universe-block__inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .universe-block__media {
        min-height: 220px;
    }

    .universe-block__inner {
        padding: 2rem 1.25rem;
    }

    .universe-block__badge {
        bottom: 1rem;
        left: 1rem;
    }

    .universe-block__number {
        font-size: 2.25rem;
    }

    .universe-block__cta {
        width: 100%;
        justify-content: center;
    }
}


/* =========================
   Page univers — Fermeture (CTA)
========================= */

.universes-closing-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 620px;
    line-height: 1.2;
}

.universes-closing-lead {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.8;
}
