/*	*********************************************	*/
/*	Hero Section Pleine Hauteur et Centrée	*/
/*	*********************************************	*/
.tm-hero-full {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Tablette et mobile */
@media (max-width: 980px) {
    .tm-hero-full {
        min-height: auto; /* le contenu (3 textes + slider) dicte la hauteur plutôt que de forcer le plein écran */
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* Mobile en paysage (hauteur très réduite) */
@media (max-width: 980px) and (orientation: landscape) {
    .tm-hero-full {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}