/**
 * Layout globale: la nav .CS81U è position:fixed (70px / 64px da desktop).
 * Il contenuto in #sitewrapper deve iniziare sotto la barra.
 */
:root {
	--gv-header-height: 70px;
}

@media (min-width: 640px) {
	:root {
		--gv-header-height: 64px;
	}
}

/* Pagine interne, articoli, archivi — non homepage né pagine con hero già compensato */
body:not(.home):not(.gv-skip-header-offset) #sitewrapper {
	padding-top: var(--gv-header-height);
}

/* Ancore (#contatti ecc.) non finiscono sotto la barra */
body:not(.home) :target {
	scroll-margin-top: calc(var(--gv-header-height) + 12px);
}
