section.tarjetas  {
	padding: 3rem;
	color: rgb(var(--n-dark) / 1);
	background: rgb(var(--b) / 1);
}
section.tarjetas article {
	position: relative;
	width: 100%;
}

section.tarjetas .cards-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: hidden;
	width: 100%;
}

section.tarjetas .cards-track dd {
	position: relative;
	flex: 0 0 28%;
	box-sizing: border-box;
	margin: 0;
	transition: flex 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content:  start;
}
section.tarjetas .cards-track dd .icon{
	font-size: 5rem;
	color: rgb(var(--n-dark) / .25);
}
section.tarjetas .cards-track dd.is-active {
	flex: 0 0 44%;
	background: rgb(var(--n-dark) / 1);
	color: rgb(var(--b) / 1);
}
section.tarjetas .cards-track dd.is-active .icon{
	color: #f33;
}

section.tarjetas .cards-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 25px;
	height: 50%;
	cursor: pointer;
	background: rgb(var(--n-dark) / 1);
	color: #f33;
	padding: 0;
}

section.tarjetas .cards-btn.prev {
	left: 0;
}

section.tarjetas .cards-btn.next {
	right: 0;
}

section.tarjetas .cards-btn.hidden {
	display: none;
}

