.next-step-card-wrap {
  border-radius: var(--border-radius-border-radius-xl, 24px);
  min-height: 236px;
  position: relative;
  text-align: center;
  background-color: inherit;
  width: 100%;
  display: flex;
  align-items: center;      
  justify-content: center;  
  padding: var(--space-lg, 24px);
}
.next-step-card-content {
  gap: var(--space-lg, 24px);
  width: 100%;
}
.next-step-card-content .heading {
  font-weight: var(--font-weight-font-weight-extra-bold, 800); 
	line-height: var(--typography-line-height-heading1-lg, 56px);
}
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm, 8px);
	padding-bottom: var(--space-xs, 4px);
}
.stock-indicator .stock-value{
  color: var(--color-foreground-default, #010414);
  font-size: var(--typography-font-size-heading3-lg, 24px);
  line-height: var(--typography-line-height-heading3-lg, 34px);
  font-weight: var(--font-weight-font-weight-extra-bold, 800);
  margin: 0;
}
.stock-indicator svg {
  width: 24px;
  height: 24px;
}
.card-description p {
  font-weight: var(--font-weight-font-weight-medium, 500);
	line-height: var(--typography-line-height-body-lg, 22px);
  margin: 0;
}
.card-description p a {
  color: var(--color-surface-active, #E6007D);
  text-decoration: none;
}
.card-button {
  display: flex;
  gap: var(--space-sm, 8px);
  justify-content: center;
}
.paragraph--type--next-step-card:not(:has(.custom-width-viewport)) {
  border-radius: var(--border-radius-border-radius-xl, 24px);
}
.paragraph--type--next-step-card.option-plugin-background-color {
  border-radius: var(--border-radius-border-radius-xl, 24px);
}
.text_color_white .heading,
.text_color_white .card-description p {
  color: var(--color-background-default, #ffffff);
}
.next-step-card-wrapper:has(.custom-width-viewport) {
  padding: var(--space-2xl, 40px) 0;
  background: inherit;
}
.next-step-card-wrapper:has(.custom-width-viewport) .next-step-card-wrap {
  background-color:  var(--color-background-default, #ffffff);
}
.next-step-card-wrapper .custom-width-viewport {
  position: absolute;
  height: 100%;
  background: inherit;
  top: 0;
}
.card-block-title {
  margin-bottom: var(--space-lg, 24px);
}
.paragraph--type--next-step-card .inverted-shadow {
  display: none;
}
@media only screen and (max-width: 960px) {
.next-step-card-wrap {
	padding: var(--space-md, 16px);
}
.next-step-card-content .heading {
	line-height: var(--typography-line-height-heading1-sm, 38px);
}
.stock-indicator .stock-value{
  font-size: var(--typography-font-size-heading3-lg, 22px);
  line-height: var(--typography-line-height-heading3-lg, 30px);
}
}