.p-widget-steps__item {
  display: flex;
  gap: 1rem;
}

.p-widget-steps__item-count {
  flex: 0 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-widget-steps__item-count-number {
  flex: 0 0 auto;
  padding: 0.3rem;
  color: var(--v-color__2);
  border: 2px solid var(--v-color__2);
  font-size: 90%;
  line-height: 1;
  width: 100%;
  text-align: center;
  border-radius: var(--v-border-radius__md);
}

.p-widget-steps__item--first .p-widget-steps__item-count-number {
  background-color: var(--v-color__4);
}

.p-widget-steps__item-count-line {
  flex: 1 1 0%;
  width: 1px;
  background-color: var(--v-color__2);
}

.p-widget-steps__item--last .p-widget-steps__item-count-line {
  display: none;
}

.p-widget-steps__item-content-title-h3 {
  margin-bottom: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.3rem;
  font-size: 1.3rem;
}

.p-widget-steps__item-content-text {
  padding-bottom: 2rem;
  font-size: 90%;
}

.p-widget-steps__item--last .p-widget-steps__item-content-text {
  padding-bottom: 0;
}

@media (min-width: 1200px) {
  .p-widget-steps__item {
    gap: 2rem;
  }

  .p-widget-steps__item-content-title-h3 {
    font-size: 1.5rem;
  }

  .p-widget-steps__item-content-text {
    font-size: 100%;
  }
}

@media (min-width: 1900px) {
  .p-widget-steps__item-content-title-h3 {
    font-size: 1.7rem;
  }
}
