.edi-historia {
	--edi-historia-accent: #8cc600;
	--edi-historia-card-width: calc((100% - 76px) / 3);
	--edi-historia-edge-gap: clamp(24px, 3vw, 48px);
	--edi-historia-gap: 38px;
	--edi-historia-ink: #fff;
	--edi-historia-muted: rgba(255, 255, 255, 0.86);
	--edi-historia-line: #8cc600;
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	background: #92278f;
	color: var(--edi-historia-ink);
	font-family: Arial, "Helvetica Neue", sans-serif;
	overflow: hidden;
}

.edi-historia__inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 96px clamp(22px, 3.5vw, 54px);
}

.edi-historia__header {
	max-width: 760px;
	margin: 0 auto clamp(38px, 5vw, 58px);
	text-align: center;
}

.edi-historia__kicker,
.edi-historia__periodo {
	margin: 0;
	color: var(--edi-historia-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.edi-historia__title {
	margin: 10px 0 0;
	color: var(--edi-historia-ink);
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.edi-historia__intro {
	max-width: 660px;
	margin: 20px auto 0;
	color: var(--edi-historia-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.edi-historia__timeline {
	box-sizing: border-box;
	width: auto;
	margin-inline: var(--edi-historia-edge-gap);
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 0 22px;
	outline: none;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--edi-historia-accent) transparent;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scroll-padding-inline: 0;
}

.edi-historia__timeline::-webkit-scrollbar {
	display: none;
}

.edi-historia__timeline:focus-visible {
	outline: 2px solid var(--edi-historia-accent);
	outline-offset: 6px;
}

.edi-historia__track {
	position: relative;
	display: flex;
	gap: var(--edi-historia-gap);
	box-sizing: border-box;
	width: 100%;
	min-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
	counter-reset: none;
}

.edi-historia__track > .edi-historia__item {
	list-style: none;
	list-style-type: none;
	counter-increment: none;
}

.edi-historia__track > .edi-historia__item::marker {
	font-size: 0;
	content: "";
}

.edi-historia__item:not(:last-child)::before {
	position: absolute;
	top: 47px;
	left: 7px;
	width: calc(100% + var(--edi-historia-gap));
	height: 1px;
	background: var(--edi-historia-line);
	content: "";
}

.edi-historia__item {
	position: relative;
	flex: 0 0 var(--edi-historia-card-width);
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
}

.edi-historia__periodo {
	min-height: 22px;
	margin-bottom: 17px;
	font-size: 0.9rem;
}

.edi-historia__marker {
	position: relative;
	z-index: 1;
	display: block;
	width: 15px;
	height: 15px;
	margin-bottom: 23px;
	border: 4px solid #92278f;
	border-radius: 50%;
	background: var(--edi-historia-accent);
	box-shadow: 0 0 0 1px var(--edi-historia-accent);
}

.edi-historia__item--without-period .edi-historia__marker {
	margin-top: 39px;
}

.edi-historia__item-title {
	margin: 0;
	color: var(--edi-historia-ink);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	font-weight: 600;
	line-height: 1.25;
}

.edi-historia__description {
	margin: 12px 0 0;
	color: var(--edi-historia-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

@media (max-width: 1024px) {
	.edi-historia {
		--edi-historia-card-width: calc((100% - 28px) / 2);
		--edi-historia-edge-gap: 28px;
		--edi-historia-gap: 28px;
	}

	.edi-historia__inner {
		padding-block: 72px;
	}
}

@media (max-width: 767px) {
	.edi-historia {
		--edi-historia-card-width: 100%;
		--edi-historia-edge-gap: 22px;
		--edi-historia-gap: 20px;
	}

	.edi-historia__inner {
		padding: 48px 22px;
	}

	.edi-historia__header {
		margin-bottom: 38px;
	}

	.edi-historia__timeline {
		overflow-x: auto;
		overflow-y: hidden;
		padding: 4px 0 22px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
	}

	.edi-historia__track {
		display: grid;
		grid-auto-columns: 100%;
		grid-auto-flow: column;
		gap: var(--edi-historia-gap);
		width: 100%;
		min-width: 100%;
	}

	.edi-historia__item {
		width: auto;
		min-width: 0;
		padding-left: 0;
	}

	.edi-historia__periodo {
		min-height: 22px;
		margin-bottom: 17px;
	}

	.edi-historia__marker {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 0 23px;
	}

	.edi-historia__item--without-period .edi-historia__marker {
		margin-top: 39px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.edi-historia__timeline {
		scroll-behavior: auto;
	}
}
