.stack-cards__item {
	margin-bottom:60px;
  overflow: hidden; 
  border-radius: calc(1em * 2);
}

@media only screen and (max-width: 425px) {
	.stack-cards {
	  --stack-cards-gap: calc(1.75 * 1.25em); 
	  padding:0 0 30px 0!important;
	  }
	.stack-cards .grid {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.col-6 {
		flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
		max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
	}
}

@media only screen and (min-width: 768px) {
	.stack-cards {
	  --stack-cards-gap: calc(1.75 * 1.25em); 
	  /* padding:0 0 0px 0!important; */
	}


	.stack-cards__item {
	  position: relative;
	  position: -webkit-sticky;
	  position: sticky;
	  /* top: var(--space-xxl); */
	  top: 10px;
	  height: 0;
	  padding-bottom: 50%;
	  /* margin-bottom:60px; */
	  -webkit-transform-origin: center top;
			  transform-origin: center top;
	  overflow: hidden; 
	  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	  
	}

	.stack-cards__item > * {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%; 
	}
}