.wp-block-meta-dev-journey .steps {
  counter-reset: step-counter;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  justify-content: center;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .wp-block-meta-dev-journey .steps::before {
    content: "";
    position: absolute;
    inset: 36px 10% auto 10%;
    height: 4px;
    background: linear-gradient(to right, var(--wp--preset--color--accent), var(--wp--preset--color--secondary), var(--wp--preset--color--secondary-alt));
    z-index: 0;
  }
}
.wp-block-meta-dev-journey .step {
  position: relative;
  z-index: 1;
  counter-increment: step-counter;
  text-align: center;
  font-size: 0.8125rem;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .wp-block-meta-dev-journey .step {
    width: 50%;
  }
}
@media screen and (min-width: 680px) {
  .wp-block-meta-dev-journey .step {
    width: 33.333%;
  }
}
@media screen and (min-width: 1024px) {
  .wp-block-meta-dev-journey .step {
    width: 20%;
  }
}
.wp-block-meta-dev-journey .step i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  width: 78px;
  height: 78px;
  border-radius: 100px;
  background-color: var(--wp--preset--color--secondary);
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
  box-shadow: 0 0 0 0px hsla(from var(--wp--preset--color--secondary) h s l/0.1);
}
.wp-block-meta-dev-journey .step i svg {
  max-width: 32px;
  max-height: 32px;
  fill: var(--wp--preset--color--primary);
}
.wp-block-meta-dev-journey .step i::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #222;
  color: var(--wp--preset--color--tertiary, var(--wp--preset--color--secondary));
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 30px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.wp-block-meta-dev-journey .step .content {
  background: var(--wp--custom--color--background);
  border-radius: var(--wp--custom--border--radius);
  padding: 24px 20px;
  height: 100%;
}
.wp-block-meta-dev-journey .step .content p {
  line-height: 1.4;
}
.wp-block-meta-dev-journey .step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.wp-block-meta-dev-journey .step ul {
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--wp--preset--color--secondary-alt);
  font-size: 0.75rem;
  gap: 4px;
  line-height: 1;
}
.wp-block-meta-dev-journey .step ul li {
  border-radius: 20px;
  background-color: hsla(from var(--wp--preset--color--secondary) h s l/0.15);
  padding: 5px 9px;
  font-weight: 500;
}
.wp-block-meta-dev-journey .step:hover i {
  box-shadow: 0 0 0 10px hsla(from var(--wp--preset--color--accent) h s l/0.2);
  background: var(--wp--preset--color--accent);
}
