.wp-block-pulp-process-with-stacked-image {
  --block-margin: var(--spacing-15);
  --grid-gap: 3rem;
}
.wp-block-pulp-process-with-stacked-image .block-image {
  grid-column: span 12;
  margin: 1rem;
}
.wp-block-pulp-process-with-stacked-image .block-body {
  grid-column: span 12;
  text-align: center;
}
@media (min-width: 768px) {
  .wp-block-pulp-process-with-stacked-image .block-body {
    grid-column: 4/span 6;
    padding: 0;
  }
}
.wp-block-pulp-process-with-stacked-image p {
  margin-inline: auto;
  max-width: 830px;
}
.wp-block-pulp-process-with-stacked-image .text-script {
  font-size: 2rem;
  line-height: var(--line-height-compact);
  max-width: 300px;
}
.wp-block-pulp-process-with-stacked-image[data-counter] {
  counter-increment: process-counter;
}
.wp-block-pulp-process-with-stacked-image[data-counter] .block-body {
  position: relative;
}
.wp-block-pulp-process-with-stacked-image[data-counter] .block-body::before {
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 0.1rem var(--color-charcoal);
  content: counter(process-counter, decimal-leading-zero);
  display: flex;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-regular);
  justify-content: center;
  line-height: var(--line-height-normal);
  margin-inline: auto;
  padding-bottom: 0.5em;
  text-align: center;
  width: clamp(5rem, 5.4545454545vw, 9rem);
}
