@media (min-width: 992px) {
  :is(.wp-block-s2b-stages) .stages {
    padding: clamp(1.875rem, 1.0714rem + 2.2321vw, 3.75rem);
    border: 1px solid #ff80ac;
    border-radius: 30px;
  }
}
:is(.wp-block-s2b-stages) .stages__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
:is(.wp-block-s2b-stages) .stage {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
}
@media (max-width: 991px) {
  :is(.wp-block-s2b-stages) .stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
:is(.wp-block-s2b-stages) .stage__index {
  font-size: clamp(2rem, 1.625rem + 1.0417vw, 2.875rem);
  line-height: 1.4;
  color: #ff0059;
  text-align: right;
}
@media (max-width: 991px) {
  :is(.wp-block-s2b-stages) .stage__index {
    text-align: left;
  }
}
:is(.wp-block-s2b-stages) .stage__inner {
  display: grid;
  grid-template-rows: auto 0fr;
  max-width: 800px;
  padding: 40px clamp(1.875rem, 1.0714rem + 2.2321vw, 3.75rem);
  border: 1px solid #ff80ac;
  border-radius: 30px;
  background-color: transparent;
  transition: 250ms ease-in-out all;
}
@media (max-width: 991px) {
  :is(.wp-block-s2b-stages) .stage__inner {
    padding: 30px clamp(1.875rem, 1.0714rem + 2.2321vw, 3.75rem);
  }
}
:is(.wp-block-s2b-stages) .stage__title {
  cursor: pointer;
}
:is(.wp-block-s2b-stages) .stage__content {
  overflow: hidden;
  padding-top: 0;
  transition: 250ms ease-in-out all;
}
:is(.wp-block-s2b-stages) .stage.is-active .stage__inner {
  grid-template-rows: auto 1fr;
  border-color: #fff3f5;
  background-color: #fff3f5;
}
:is(.wp-block-s2b-stages) .stage.is-active .stage__content {
  padding-top: 20px;
}