/* ═══ Page « Praticienne Néo Echo System » ═══ */

/* .conteneur est un flex centré sur mobile : sans align-self, les sections
   se réduisent à la largeur de leur contenu (vidéos et filets décalés). */
.conteneur > section,
.conteneur > .page-hero,
.conteneur > .page-nav {
    align-self: stretch;
}

/* ── En-tête de page : plus d'air entre les éléments ── */
.page-hero {
    padding-top: 56px;
    padding-bottom: 24px;
}

/* Le logo tient lieu de titre de page : son alt est le h1 */
.neo-titre {
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

/* ── Logo Néo en haut de page ── */
.neo-logo {
    display: block;
    width: 260px;
    max-width: 62vw;
    height: auto;
    margin: 0 auto 46px;
    filter: drop-shadow(0 6px 18px rgba(60, 45, 30, 0.14));
}

/* ── Baseline sous le titre ── */
.neo-baseline {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--teal);
    max-width: 560px;
    padding: 0;
    margin: 0 auto 14px;
}

/* ── Encadré de présentation (haut de page) ── */
.neo-encadre {
    max-width: var(--text-width);
    margin: 8px auto 0;
    padding: 30px 36px;
    background: linear-gradient(150deg, var(--white90) 0%, rgba(245, 237, 224, 0.55) 100%);
    border: 1px solid rgba(200, 169, 110, 0.28);
    border-left: 3px solid var(--warm);
    border-radius: var(--radius);
    box-shadow: 0 3px 22px rgba(60, 45, 30, 0.07);
}

.neo-encadre p {
    padding: 0;
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-mid);
    text-align: left;
}

.neo-encadre p + p {
    margin-top: 16px;
}

.neo-encadre p.neo-encadre-accroche {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.45;
    color: var(--teal-dark);
}

/* ── Séparateur entre les grandes sections ── */
.neo-section {
    margin-top: 44px;
    padding-top: 38px;
    border-top: 1px solid rgba(200, 169, 110, 0.22);
}

.neo-section h2 {
    text-align: center;
    padding: 0 30px 8px;
}

/* ── Phrase mise en avant ── */
.neo-highlight {
    max-width: var(--text-width);
    margin: 36px auto 0;
    padding: 26px 34px;
    background: linear-gradient(150deg, var(--white90) 0%, rgba(245, 237, 224, 0.55) 100%);
    border: 1px solid rgba(200, 169, 110, 0.28);
    border-left: 3px solid var(--warm);
    border-radius: var(--radius);
    box-shadow: 0 3px 22px rgba(60, 45, 30, 0.07);
}

.neo-highlight p {
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--teal-dark);
    text-align: center;
}

.neo-highlight p + p {
    margin-top: 12px;
}

/* ── Vidéos YouTube ── */
.neo-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 24px;
    margin: 28px auto 0;
    max-width: var(--text-width);
}

.neo-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--teal-dark);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200, 169, 110, 0.28);
    transition: box-shadow var(--trans), transform var(--trans);
}

.neo-video:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.neo-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.neo-video--solo {
    max-width: var(--text-width);
    margin: 34px auto 0;
}

.neo-video-legende {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0;
    margin: 12px 0 0;
}

/* ── Liste « ce que vous trouverez dans votre espace » ── */
.neo-liste {
    list-style: none;
    max-width: var(--text-width);
    margin: 18px auto 0;
    padding: 0;
}

.neo-liste > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
}

.neo-liste > li:last-child {
    margin-bottom: 0;
}

.neo-liste > li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--warm);
}

.neo-sous-liste {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.neo-sous-liste li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
}

.neo-sous-liste li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 8px;
    height: 1px;
    background: var(--teal);
    opacity: 0.6;
}

@media (max-width: 700px) {
    .neo-encadre {
        padding: 24px 22px;
    }

    .neo-encadre p.neo-encadre-accroche {
        font-size: 19px;
    }

    .page-hero {
        padding-top: 32px;
    }

    .neo-logo {
        margin-bottom: 32px;
    }

    .neo-baseline {
        font-size: 17px;
    }

    .neo-section {
        margin-top: 34px;
        padding-top: 28px;
    }

    .neo-highlight {
        padding: 22px 22px;
    }

    .neo-highlight p {
        font-size: 18px;
    }

    .neo-videos {
        gap: 18px;
    }
}
