/**
 * Homepage hero — grafico animato SVG (desktop + mobile stesso asset).
 *
 * @package GDS-Fullcreative
 */

.gds-home-section--hero {
	overflow: visible;
}

.gds-home-section--hero .gds-hero__graphic {
	justify-content: flex-end;
}

.gds-home-section--hero .gds-hero__graphic-image,
.gds-home-section--hero .gds-hero__graphic-svg-wrap {
	display: block;
	width: min(100%, 712px);
	height: auto;
	aspect-ratio: 712 / 512;
	max-height: none;
	margin-right: 0;
	margin-bottom: 48px;
	border: 0;
	outline: none;
	background: transparent;
	opacity: 0;
	visibility: hidden;
}

/* Evita il flash del placeholder (anche prima del JS). */
.gds-home-section--hero:not(.gds-hero-anim-ready) .gds-hero__graphic-image,
.gds-home-section--hero:not(.gds-hero-anim-ready) .gds-hero__graphic-svg-wrap {
	width: 0 !important;
	height: 0 !important;
	min-width: 0;
	min-height: 0;
	max-width: 0;
	max-height: 0;
	margin: 0 !important;
	padding: 0;
	overflow: hidden;
	aspect-ratio: auto !important;
}

.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-image,
.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-svg-wrap {
	opacity: 1;
	visibility: visible;
}

.gds-home-section--hero .gds-hero__graphic-image {
	object-fit: contain;
}

.gds-home-section--hero .gds-hero__graphic-svg-wrap svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

#gds-hero-lines,
#gds-hero-yellow-path {
	pointer-events: none;
}

#gds-hero-dots-base,
#gds-hero-dots-colored,
#gds-hero-dots-yellow {
	pointer-events: none;
}

#gds-hero-yellow-path {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Da 1280px in giù la hero è impilata: grafico full-width container, allineato a sinistra. */
@media (max-width: 1280px) {
	.gds-home-section--hero .gds-hero__graphic {
		justify-content: flex-start;
	}

	.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-image,
	.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-svg-wrap {
		width: calc(100% * var(--gds-about-mobile-graphic-scale, 1));
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-image,
	.gds-home-section--hero.gds-hero-anim-ready .gds-hero__graphic-svg-wrap {
		opacity: 1 !important;
		visibility: visible !important;
	}
}
