:root {
    --blue: #1f3270;
    --blue-soft: #6b7fc8;
    --yellow: #ffe50d;
    --yellow-soft: #fff6b2;
    --white: #ffffff;
    --panel: rgba(255, 255, 255, 0.54);
    --line: rgba(31, 50, 112, 0.15);
    --shadow: rgba(31, 50, 112, 0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.visuellement-cache {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lien-evitement {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--yellow);
    color: var(--blue);
    transform: translateY(-120%);
}

.lien-evitement:focus {
    transform: translateY(0);
}

:where(a, button, input, textarea, select):focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

body {
    min-height: 100vh;
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #6b7fc8 0%, #a990c0 58%, #c9a0c8 100%);
    color: var(--blue);
}

h1,
h2,
h3,
h4,
h5,
h6,
.marque,
.nav-site a,
.lien-bouton,
.section-heading,
.exposant-entete strong,
.programme-ligne time {
    font-family: "Montserrat", "Fira Sans", sans-serif;
}

img,
iframe {
    max-width: 100%;
    display: block;
}

.conteneur {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}

.entete-site {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
}

.entete-interieur {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 122px;
    padding: 1rem 0 0.2rem;
}

.bloc-logos-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
}

.logo-partenaire {
    display: grid;
    place-items: center;
    width: 140px;
    min-height: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--blue);
    text-align: center;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1.15;
}

.logo-maison {
    width: 220px;
    min-height: 90px;
    font-size: 0.84rem;
    background: transparent;
}

.logo-ltc {
    width: 190px;
    min-height: 90px;
    background: transparent;
}

.logo-edt-header {
    width: 190px;
    min-height: 90px;
    background: transparent;
}

.logo-edt-header img {
    /* le logo EDT est jaune : on ajoute un contour bleu pour le distinguer du fond blanc, sans lui donner un traitement visuel différent des autres logos */
    filter: drop-shadow(0 0 1px var(--blue)) drop-shadow(0 1px 3px rgba(31, 50, 112, 0.45));
}

.logo-partenaire span {
    max-width: 100%;
}

.logo-partenaire img {
    width: 100%;
    max-height: 76px;
    object-fit: contain;
}

.bandeau-navigation {
    /* bandeau indépendant : reste épinglé en haut même quand le bloc logos défile */
    position: sticky;
    top: 0;
    z-index: 21;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(31, 50, 112, 0.12);
    border-bottom: 1px solid rgba(31, 50, 112, 0.15);
    box-shadow: 0 8px 24px rgba(31, 50, 112, 0.08);
}

.bandeau-navigation-interieur {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-site {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.75rem 0;
}

.bouton-menu {
    display: none;
}

.bouton-fermer-nav {
    display: none;
}

.nav-site a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 50, 112, 0.18);
    background: rgba(255, 255, 255, 0.8);
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-site a:hover,
.nav-site a.actif {
    background: linear-gradient(180deg, #fff9c7 0%, var(--yellow) 100%) !important;
    color: var(--blue) !important;
    border-color: var(--yellow) !important;
    box-shadow: 0 8px 16px rgba(255, 229, 13, 0.28);
    transform: translateY(-1px);
}

.corps-page {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
}

.heros {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.2rem 1rem 0;
    margin-top: -16rem;
}

.heros h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-top: 1rem;
    font-weight: 900;
    line-height: 0.9;
}

.heros .ligne {
    display: block;
}

.heros .principal {
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    color: var(--yellow);
    text-shadow: 0 0 0 var(--blue), 0 4px 0 rgba(31, 50, 112, 0.14);
}

.heros .secondaire {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: var(--blue);
}

.heros .accent {
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-edt {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto -21rem;
    max-width: min(980px, 100%);
}

.logo-edt img {
    display: block;
    width: min(900px, 100%);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(31, 50, 112, 0.14));
}

.info-evenement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
}

.pastille-horaire {
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    border: 2px solid var(--blue);
    font-weight: 800;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.3);
}

.date-evenement {
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.lieu-evenement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.15rem;
    padding-left: 0.4rem;
}

.lieu-evenement strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    color: var(--blue);
}

.lieu-evenement span {
    font-size: 0.9rem;
    color: var(--blue);
}

.statistiques {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1.2rem;
    width: min(100%, 760px);
    margin: 1.2rem auto 0;
}

.carte-statistique {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 10px 22px var(--shadow);
}

.nombre-statistique {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 900;
    color: var(--blue);
}

.libelle-statistique {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
}

.ligne-cta {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.8rem;
}

.bouton-secondaire {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 18px rgba(31, 50, 112, 0.2);
}

button,
.lien-bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff7a6 0%, var(--yellow) 100%);
    color: var(--blue);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.03em;
    padding: 0.9rem 1.6rem;
    box-shadow: 0 10px 18px rgba(255, 229, 13, 0.25);
    cursor: pointer;
    text-decoration: none;
}

.bloc-description {
    margin: 2.3rem auto 0;
    padding: 1.4rem 1.6rem;
    max-width: 920px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(31, 50, 112, 0.06);
}

.bloc-description p {
    color: var(--blue);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.8;
    text-align: center;
}

.section-acces {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 1.6rem;
    margin-top: 2.5rem;
}

.carte-acces {
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(31, 50, 112, 0.06);
}

.carte-info {
    padding: 1.8rem 1.5rem;
}

.carte-info h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    color: var(--blue);
}

.carte-info ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: var(--blue);
    font-size: 1rem;
    line-height: 1.5;
}

.carte-info li {
    position: relative;
    padding-left: 1.1rem;
    font-weight: 600;
}

.carte-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -0.1em;
    color: var(--blue);
    font-size: 1.8rem;
    line-height: 1;
}

.carte-plan {
    min-height: 330px;
    overflow: hidden;
}

.carte-google-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-height: 330px;
    padding: 1.5rem;
    text-align: center;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.35);
}

.carte-google-info p {
    line-height: 1.6;
    font-weight: 600;
}

.lien-carte-extern {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}

.carte-google-iframe {
    display: none;
    min-height: 330px;
}

.carte-google-iframe iframe {
    width: 100%;
    min-height: 330px;
    border: 0;
}

.carte-google-iframe.is-visible {
    display: block;
}

.carte-google-info.is-hidden {
    display: none;
}

.pied-site {
    margin-top: 3rem;
    padding: 2.5rem 0 1.5rem;
    background: rgba(31, 50, 112, 0.9);
    color: var(--white);
}

.pied-interieur {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.info-pied .marque {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    text-align: center;
    color: var(--yellow);
}

.info-pied ul,
.contact-pied ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-pied a,
.contact-pied a {
    color: var(--yellow);
    text-decoration: none;
}

.liens-sociaux {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.liens-sociaux a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transition: background 0.2s ease, color 0.2s ease;
}

.liens-sociaux a:hover {
    background: var(--yellow);
    color: var(--blue);
}

.contact-pied h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.copyright-pied {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-pied a {
    color: var(--yellow);
    text-decoration: underline;
}

.copyright-pied a:hover {
    color: var(--white);
}

.edition-section {
    margin-top: 4.5rem;
    scroll-margin-top: 170px;
}

.programme-inscription {
    margin-top: 2rem;
    text-align: center;
}

.contenu-politique {
    max-width: 850px;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.contenu-politique h1 {
    margin-bottom: 0.5rem;
}

.contenu-politique h2 {
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.contenu-politique h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contenu-politique p {
    max-width: 75ch;
    margin-bottom: 0.8rem;
    line-height: 1.65;
}

.contenu-politique ul {
    max-width: 75ch;
    margin: 0 0 0.8rem 1.2rem;
    padding: 0;
}

.contenu-politique li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.contenu-politique a:not(.lien-bouton) {
    color: var(--blue);
    font-weight: 700;
}

.date-politique {
    color: rgba(31, 50, 112, 0.72);
    font-size: 0.85rem;
}

.contenu-erreur {
    min-height: 55vh;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1rem;
}

.code-erreur {
    color: var(--blue);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
}

.repere-edition {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    margin: 2.5rem auto 0;
    color: var(--blue);
    font-family: "Montserrat", "Fira Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

.repere-edition span {
    padding: 0.15rem 1.25rem;
}

.repere-edition span:first-child {
    padding-left: 0;
    font-size: 0.95rem;
}

.repere-edition span + span {
    border-left: 3px solid var(--yellow);
}

.titre-edition {
    margin: 2.5rem 0 0;
    color: var(--blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    margin: 20px 0 0.6rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--yellow);
    text-shadow:
        -1.5px -1.5px 0 var(--blue),
        1.5px -1.5px 0 var(--blue),
        -1.5px 1.5px 0 var(--blue),
        1.5px 1.5px 0 var(--blue),
        0 -1.5px 0 var(--blue),
        0 1.5px 0 var(--blue),
        -1.5px 0 0 var(--blue),
        1.5px 0 0 var(--blue);
}

.programme-liste {
    display: grid;
    gap: 0.7rem;
}

.programme-ligne {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    padding: 1.15rem 1.3rem;
    background: rgba(255, 255, 255, 0.58);
    border-left: 5px solid var(--yellow);
    border-radius: 10px;
}

.programme-ligne time {
    font-size: 1.2rem;
    font-weight: 900;
}

.programme-ligne h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.programme-ligne p {
    font-size: 0.9rem;
    line-height: 1.45;
}

.exposants-grille {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.exposant-bloc {
    position: relative;
    min-height: 190px;
    padding: 1.15rem;
    background: linear-gradient(145deg, var(--blue) 0%, #334a93 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 5px solid var(--yellow);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(31, 50, 112, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.exposant-bloc:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(31, 50, 112, 0.3);
}

.exposant-entete {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
}

.exposant-bloc:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.exposant-logo {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 170px;
    height: 88px;
    max-width: 100%;
    aspect-ratio: 170 / 88;
    padding: 0.65rem;
    border: 1px solid rgba(31, 50, 112, 0.18);
    border-radius: 9px;
    background-color: var(--white) !important;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.exposants-grille .exposant-bloc:nth-child(1) .exposant-logo { background: url("../img/logos/Logo%20adeliance.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(2) .exposant-logo { background: url("../img/logos/Logo%20ADESS.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(3) .exposant-logo { background: url("../img/logos/Logo%20Adie.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(4) .exposant-logo { background: url("../img/logos/Logos%20French%20tech%20-%20Anticipa.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(5) .exposant-logo { background: url("../img/logos/Logo%20Q%20AVANT-PREMIE%CC%80RES.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(6) .exposant-logo { background: url("../img/logos/LOGO_AVENIR_ACTIF_BRE_HD.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(7) .exposant-logo { background: url("../img/logos/Logo%20AJOCA.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(8) .exposant-logo { background: url("../img/logos/BGE_BRETAGNE.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(9) .exposant-logo { background: url("../img/logos/Logo-BCI-NOIR-CONTOUR.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(10) .exposant-logo { background: url("../img/logos/Logo%20CMQe%20vecto.svg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(11) .exposant-logo { background: url("../img/logos/Logo_CCI_22_cartouche_bleu_vecto_CMJN.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(12) .exposant-logo { background: url("../img/logos/CA_BRETAGNE_V_RVB.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(13) .exposant-logo { background: url("../img/logos/cma-logo-2018-rouge-principal-local-rectangle-CRMAB.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(14) .exposant-logo { background: url("../img/logos/CLUB%20Logo%201.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(15) .exposant-logo { background: url("../img/logos/Logo%20DGFIP.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(16) .exposant-logo { background: url("../img/logos/Logo-FAB-Vect.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(17) .exposant-logo { background: url("../img/logos/Logo%20France%20Travail.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(18) .exposant-logo { background: url("../img/logos/Logo%20Images%20%26%20R%C3%A9seaux.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(19) .exposant-logo { background: url("../img/logos/Logo%20INPI%202025.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(20) .exposant-logo {
    background: url("../img/logos/LOGO%20LTC%20NOIR-300dpi.png") center / contain no-repeat;
    background-color: #ffffff;
    font-size: 0;
}
.exposants-grille .exposant-bloc:nth-child(21) .exposant-logo { background: url("../img/logos/Logos%20Ordre%20des%20experts%20comptables.png") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(22) .exposant-logo { background: url("../img/logos/RB_NB.jpg") center / contain no-repeat; font-size: 0; }
.exposants-grille .exposant-bloc:nth-child(23) .exposant-logo { background: url("../img/logos/Logos%20R%C3%A9seau%20Iniative.png") center / contain no-repeat; font-size: 0; }

.exposants-grille .exposant-logo {
    background-color: var(--white) !important;
    background-size: 92% auto;
    background-position: center center;
    padding: 0.2rem;
}

.exposants-grille .exposant-bloc:nth-child(21) .exposant-logo {
    padding: 0.1rem;
    border-color: rgba(31, 50, 112, 0.08);
    background-size: 100% auto;
    background-position: center center;
}

@media (max-width: 720px) {
    .exposants-grille {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exposant-logo {
        width: 150px;
        height: 78px;
        aspect-ratio: 150 / 78;
    }
}

.exposant-entete strong {
    font-size: 1rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}

.popup-exposant {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.popup-exposant[hidden] {
    display: none;
}

.popup-exposant-fond {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 55, 0.55);
}

.popup-exposant-panneau {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    background: var(--white);
    color: var(--blue);
    border-top: 5px solid var(--yellow);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(15, 23, 55, 0.35);
}

.popup-exposant-fermer {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: rgba(31, 50, 112, 0.08);
    color: var(--blue);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.popup-exposant-fermer:hover {
    background: rgba(31, 50, 112, 0.16);
}

.bouton-gestion-cookies {
    position: fixed;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 15;
    padding: 0.3rem 0.65rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(31, 50, 112, 0.15);
    border-radius: 999px;
    color: rgba(31, 50, 112, 0.75);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(31, 50, 112, 0.1);
}

.bouton-gestion-cookies:hover {
    background: var(--white);
    color: var(--blue);
}

#popup-exposant-titre {
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.popup-exposant-corps p {
    margin-bottom: 0.9rem;
    line-height: 1.55;
}

.popup-exposant-corps p:last-child {
    margin-bottom: 0;
}

.popup-exposant-espace {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem !important;
    background: rgba(31, 50, 112, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.popup-exposant-corps ul {
    margin: -0.4rem 0 0.9rem 1.2rem;
    padding: 0;
}

.popup-exposant-corps li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.popup-exposant-contact {
    margin-top: 1.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(31, 50, 112, 0.15);
}

.popup-exposant-contact p {
    margin-bottom: 0.3rem;
    font-size: 0.92rem;
}

.popup-exposant-contact a {
    color: var(--blue);
    font-weight: 700;
}

.plan-salon {
    margin: 0;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.plan-salon img {
    width: 100%;
    height: auto;
}

.plan-salon figcaption {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
}

@media (max-width: 720px) {
    .pied-site {
        padding-top: 2rem;
        padding-bottom: 1.25rem;
    }

    .pied-interieur {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .info-pied {
        text-align: center;
    }

    .info-pied .marque {
        width: 100%;
        max-width: none;
        margin-bottom: 1rem;
        font-size: 1rem;
        justify-content: center;
    }

    .info-pied ul {
        justify-items: center;
        gap: 0.65rem;
        font-size: 0.9rem;
    }

    .info-pied li {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .liens-sociaux {
        justify-content: center;
        margin-top: 1.4rem;
    }

    .contact-pied {
        padding-top: 1.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .contact-pied h2 {
        text-align: center;
    }

    .contact-pied ul {
        justify-items: center;
        gap: 0.65rem;
        font-size: 0.9rem;
    }
}

.carte-plan iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 18px;
}

@media (max-width: 720px) {
    .repere-edition,
    .titre-edition {
        display: none;
    }

    .corps-page {
        padding-top: 1rem;
    }

    .edition-section {
        margin-top: 0;
    }

    .entete-interieur {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
        padding: 0.75rem 1rem;
    }

    .bloc-logos-header {
        flex: 1;
        min-width: 0;
        justify-content: center;
        gap: 0.6rem;
    }

    .logo-partenaire {
        flex: 0 1 auto;
        width: 78px;
        min-height: 48px;
    }

    .logo-partenaire img {
        width: 78px;
        height: 48px;
        object-fit: contain;
    }

    .heros {
        margin-top: 0;
        padding-top: 0;
        overflow-x: clip;
    }

    .logo-edt {
        height: 235px;
        overflow: hidden;
        position: relative;
        margin-bottom: 0;
    }

    .logo-edt img {
        position: absolute;
        top: -34%;
        left: 50%;
        width: 145%;
        max-width: none;
        transform: translateX(-50%);
    }

    .info-evenement {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 0.7rem 0.9rem;
        margin-top: 1.6rem;
    }

    .pastille-horaire,
    .date-evenement {
        justify-self: center;
    }

    .pastille-horaire {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .date-evenement {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .lieu-evenement {
        grid-column: 1 / -1;
        align-items: center;
        padding-left: 0;
        text-align: center;
    }

    .logo-partenaire {
        flex: 1;
        width: auto;
    }

    .bandeau-navigation-interieur {
        padding: 0.6rem 1rem;
    }

    .bouton-menu {
        position: static;
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(31, 50, 112, 0.18);
        border-radius: 999px;
        background: var(--white);
        color: var(--blue);
        font-family: "Montserrat", "Fira Sans", sans-serif;
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.04em;
    }

    .bouton-menu-icone {
        display: grid;
        gap: 4px;
        width: 18px;
    }

    .bouton-menu-icone span {
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
    }

    .nav-site {
        display: none;
        width: min(1100px, calc(100% - 2rem));
        margin-top: 0;
        padding: 0 0 1rem;
    }

    .nav-site.est-ouvert {
        display: grid;
        grid-template-columns: 1fr;
        position: fixed;
        inset: 0;
        z-index: 30;
        width: 100vw;
        height: 100dvh;
        max-width: none;
        align-content: start;
        align-self: stretch;
        justify-self: stretch;
        gap: 0.75rem;
        margin: 0;
        padding: 5rem 1.25rem 2rem;
        background: rgba(255, 255, 255, 0.98);
        overflow-y: auto;
    }

    .bouton-fermer-nav {
        display: none;
    }

    .nav-site.est-ouvert .bouton-fermer-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        min-width: 44px;
        min-height: 44px;
        padding: 0.6rem 1rem;
        border: 1px solid rgba(31, 50, 112, 0.18);
        border-radius: 999px;
        background: var(--white);
        color: var(--blue);
        font-family: "Montserrat", "Fira Sans", sans-serif;
        font-weight: 800;
    }

    body.menu-ouvert {
        overflow: hidden;
    }

    .nav-site a {
        min-height: 48px;
    }

    .statistiques {
        grid-template-columns: 1fr;
    }

    .section-acces {
        grid-template-columns: 1fr;
    }

    .exposant-bloc {
        min-height: 220px;
    }

    .bloc-description p,
    .programme-ligne p,
    .carte-info li {
        font-size: 1.05rem;
    }

    .programme-ligne {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.35rem;
    }

    .programme-ligne time {
        font-size: 1rem;
    }

    .exposants-grille {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 721px) and (max-width: 900px) {
    .heros {
        margin-top: -13rem;
        padding-top: 0;
    }

    .logo-edt {
        height: 390px;
        margin-bottom: 0;
        overflow: hidden;
        align-items: flex-start;
    }

    .logo-edt img {
        width: min(650px, 100%);
        transform: none;
    }

    .info-evenement {
        position: relative;
        z-index: 1;
        margin-top: 0.65rem;
    }

    .bloc-description p,
    .carte-info li,
    .programme-ligne p {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .exposants-grille {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exposant-bloc {
        min-height: 220px;
    }
}

@media (min-width: 721px) and (max-width: 1400px) {
    .repere-edition {
        font-size: 0.95rem;
    }

    .repere-edition span {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .repere-edition span:first-child {
        font-size: 1.05rem;
    }
}

