/**
 * Échelle typo partagée : grands titres de page (home + liste-cartes).
 * --mc-hero-title-size : titre de la page courante (H1 / équivalent home)
 * --mc-nav-title-size  : liens secondaires (Visiter, Boutique, Événements, parent « Visiter », etc.)
 */

body {
    --mc-hero-title-size: 36px;
    --mc-hero-title-size-scrolled: 32px;
    --mc-nav-title-size: 32px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    body {
        --mc-hero-title-size: 64px;
    }
}

@media (min-width: 1024px) {
    body {
        --mc-hero-title-size: 86px;
    }
}

@media (max-height: 871px) {
    body {
        --mc-hero-title-size: clamp(34px, 8.2vmin, 76px);
    }
}

@media (max-width: 1023px) and (max-height: 871px) {
    body {
        --mc-hero-title-size: clamp(30px, 6.4vmin, 60px);
    }
}
