/* ==========================================================================
   PAGES INTERNES — Neuf Seizième
   --------------------------------------------------------------------------
   Ce fichier n'est chargé que sur les pages NON-accueil (voir functions.php,
   ns_enqueue_assets : `if ( ! is_front_page() )`). Objectif : ne pas alourdir
   la home (LCP) avec du CSS qu'elle n'utilise pas.

   Il RÉUTILISE le langage visuel de style.css :
     - variables :root (--accent #0265ff, greys charte, --shadow-*, radius 4px)
     - composants .section / .container / .section-label / .section-title
     - boutons .btn / .btn-primary / .btn-outline
     - animation .reveal / .revealed (IntersectionObserver, js/main.js)
   Aucune variable n'est redéfinie ici : on consomme les tokens existants.
   Titres = Neue Montreal (var(--font-heading)), corps = Manrope (var(--font)).
   Tous les arrondis = 4px (charte Kevin 2026-07-07).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO DE PAGE INTERNE (.page-hero)
   Petit bandeau titre + sous-titre, fond blanc + halo bleu très léger,
   centré. Le halo est un radial-gradient discret derrière le titre pour
   rester cohérent avec l'univers "accent bleu sur blanc" de la home.
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    text-align: center;
    padding: calc(var(--header-h) + 96px) 0 72px;
    background: var(--bg-light);
    overflow: hidden;
}

.page-hero::before {
    /* Halo bleu très léger, centré haut, non interactif */
    content: "";
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 120%);
    height: 520px;
    background: radial-gradient(
        ellipse at center,
        rgba(2, 101, 255, 0.10) 0%,
        rgba(2, 101, 255, 0.04) 38%,
        rgba(2, 101, 255, 0) 70%
    );
    pointer-events: none;
    z-index: 0;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: var(--type-h1);
    font-weight: 500;
    letter-spacing: var(--ls-title);
    line-height: 1.08;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 18px;
}

.page-hero-subtitle {
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   FIL D'ARIANE (.ns-breadcrumb)
   Rendu par ns_breadcrumb() (inc/breadcrumb.php) en tête des heros internes.
   Charte : Manrope 13px, liens gris muted -> accent au hover, maillon courant
   text-primary non cliquable, séparateurs › discrets. Centré (heros centrés),
   wrap propre en mobile. Microdata schema.org BreadcrumbList (SEO).
   -------------------------------------------------------------------------- */
.ns-breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.ns-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.ns-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ns-breadcrumb-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ns-breadcrumb-link:hover,
.ns-breadcrumb-link:focus-visible {
    color: var(--accent);
}

.ns-breadcrumb-current {
    color: var(--text-primary);
    /* Le libellé courant peut être long (titre d'article) : on tronque proprement. */
    max-width: 42ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ns-breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.55;
    user-select: none;
}

@media (max-width: 600px) {
    .ns-breadcrumb-list {
        font-size: 12px;
        gap: 6px;
    }

    .ns-breadcrumb-current {
        max-width: 24ch;
    }
}

/* --------------------------------------------------------------------------
   2. BLOCS DE CONTENU GÉNÉRIQUES
   -------------------------------------------------------------------------- */

/* Section resserrée en largeur pour la lecture (about, contact) */
.page-section {
    padding: 88px 0;
    background: var(--bg-light);
}

.page-section--soft {
    background: var(--bg-soft);
}

/* En-tête de section centré réutilisable */
.page-section-head {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.page-section-head .section-label {
    margin-bottom: 16px;
}

.page-section-head .section-title {
    margin-bottom: 14px;
}

.page-section-head p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Deux colonnes texte (histoire / mission) */
.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.page-split-text h2 {
    font-size: var(--type-h2);
    margin-bottom: 20px;
}

.page-split-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.page-split-text p:last-child {
    margin-bottom: 0;
}

/* Visuel latéral (image ou placeholder) en ratio 9:16 clin d'œil à l'agence */
.page-split-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--accent-tint) 0%, #ffffff 60%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
}

.page-split-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder générique (aucune image encore fournie) */
.ns-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: var(--accent);
    text-align: center;
    padding: 24px;
}

.ns-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.55;
}

.ns-placeholder span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. CARTES VALEURS (about) — grille de cartes sobres
   -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(2, 101, 255, 0.18);
}

.value-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-tint);
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   4. ÉQUIPE (about) — cartes photo + nom + rôle
   -------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-tint), var(--grey-100));
    border: 1px solid var(--border-soft);
    margin-bottom: 16px;
}

.team-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo .ns-placeholder svg {
    width: 34px;
    height: 34px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   5. STATS / CHIFFRES CLÉS
   Réutilise les classes .stats-grid / .stat-card / .stat-number / .stat-label
   déjà ciblées par les media queries de style.css (base manquante = ici).
   -------------------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: var(--ls-title);
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Bandeau stats sur fond bleu (variante pleine) */
.stats-band {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-md);
}

.stats-band .stat-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px;
}

.stats-band .stat-number {
    color: #ffffff;
}

.stats-band .stat-label {
    color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
   6. CTA FINAL (réutilisable sur les pages internes)
   Version compacte du bloc CTA de la home, tokens identiques.
   -------------------------------------------------------------------------- */
.page-cta {
    text-align: center;
    padding: 88px 0;
    background: var(--bg-soft);
}

.page-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.page-cta h2 {
    font-size: var(--type-h2);
    margin-bottom: 16px;
}

.page-cta p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.page-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. PAGE CONTACT — 2 colonnes (formulaire + infos)
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* Bandeau de statut (succès / erreur) après soumission */
.contact-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
}

.contact-notice svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.contact-notice--success {
    background: var(--success-100);
    color: #0a7a34;
    border: 1px solid var(--success-200);
}

.contact-notice--error {
    background: var(--danger-100);
    color: #b30000;
    border: 1px solid var(--danger-200);
}

.contact-field {
    margin-bottom: 20px;
}

.contact-field:last-of-type {
    margin-bottom: 28px;
}

.contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-field .req {
    color: var(--danger);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--text-muted);
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.contact-form-wrap .btn-primary {
    width: 100%;
}

.contact-form-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* Colonne infos */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent);
    margin-top: 2px;
}

.contact-info-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.contact-social:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.contact-social svg {
    width: 18px;
    height: 18px;
}

/* Carte "prise de RDV" mise en avant */
.contact-book-card {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.contact-book-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-book-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.contact-book-card .btn {
    background: #ffffff;
    color: var(--brand);
    width: 100%;
}

.contact-book-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-deep);
    border-color: transparent;
}

/* --------------------------------------------------------------------------
   8. PAGES LÉGALES (.legal-content)
   Mise en page article sobre, largeur de lecture confortable (~760px).
   -------------------------------------------------------------------------- */

/* Bandeau d'avertissement TODO (visible tant que Kevin n'a pas complété) */
.legal-warning {
    max-width: 760px;
    margin: 0 auto 48px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--warning-100);
    border: 1px solid var(--warning-200);
    border-radius: var(--radius-md);
    color: #8a4b12;
    font-size: 14px;
    line-height: 1.55;
}

.legal-warning svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: var(--warning);
}

.legal-warning strong {
    color: #7a3f0e;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content .legal-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}

.legal-content h2 {
    font-size: 24px;
    margin: 44px 0 16px;
    padding-top: 8px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--accent-hover);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Champ à compléter par Kevin : surligné pour être repérable */
.legal-fill {
    background: var(--warning-100);
    color: #8a4b12;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 3px;
    border: 1px dashed var(--warning-200);
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-split-visual {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .page-hero {
        padding: calc(var(--header-h) + 64px) 0 56px;
    }

    .page-section,
    .page-cta {
        padding: 64px 0;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap,
    .stats-band {
        padding: 28px 22px;
    }

    .page-split-text h2 {
        font-size: var(--type-h3);
    }

    .legal-content h2 {
        font-size: 21px;
    }
}

/* ==========================================================================
   10. PAGES « SERVICES & FORMATS » (page-{slug}.php → service-detail.php)
       - .service-hero-tags / .service-tag : pills du hero
       - .service-steps : « comment on le produit » (étapes numérotées)
       - .service-videos : galerie d'exemples (façade .case-study-video-visual,
         base stylée dans style.css ; ici uniquement la grille)
       Réutilise .values-grid / .value-card / .page-* pour le reste.
   ========================================================================== */

/* --- Pills du hero --- */
.service-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

/* --- « Comment on le produit » : étapes numérotées --- */
.service-steps {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: ns-step;
}

.service-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-step:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 101, 255, 0.18);
}

.service-step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.service-step-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.service-step-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Galerie d'exemples vidéo (façade 9:16 dans style.css) --- */
.service-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.service-videos[data-videos="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
}

.service-videos[data-videos="1"] {
    grid-template-columns: minmax(0, 300px);
    max-width: 300px;
}

.service-videos-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 680px) {
    .service-videos,
    .service-videos[data-videos="2"] {
        grid-template-columns: repeat(2, 1fr);
        max-width: 420px;
        gap: 14px;
    }

    .service-step {
        padding: 20px;
        gap: 16px;
    }

    .service-step-num {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* ============================================================
   Page « Études de cas » (liste) — cartes vers /cas-{slug}/
   ============================================================ */
.cases-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cases-list-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.cases-list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-tint);
}

.cases-list-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cases-list-logo {
    height: 30px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.cases-list-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    background: var(--accent-tint);
    color: var(--accent);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.cases-list-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: var(--ls-title, -0.03em);
    color: var(--text-primary);
}

.cases-list-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--border-light);
    list-style: none;
}

.cases-list-kpis li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cases-list-kpi-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.cases-list-kpi-label {
    font-family: var(--font);
    font-size: 13px;
    color: var(--text-secondary);
}

.cases-list-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.cases-list-more svg {
    transition: transform var(--transition-fast);
}

.cases-list-card:hover .cases-list-more svg {
    transform: translateX(3px);
}

@media (max-width: 860px) {
    .cases-list-grid {
        grid-template-columns: 1fr;
    }
}

/* Filtre secteur de la page Études de cas (liste) */
.cases-list-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.cases-list-card.hidden {
    display: none;
}
