.example-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.example-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

.change-card--today .example-flow__item {
  background-color: white;
}

.example-flow__label {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-buchner);
  color: var(--color-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 1;
}

.example-flow__text {
  margin: 0;
  line-height: 1.45;
}

.example-flow__arrow {
  align-self: center;
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  line-height: 1;
}

.example-flow__item--embed {
  align-items: stretch;
}

.example-flow__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.example-embed {
  width: 100%;
  overflow: hidden;
}

.example-embed__iframe {
  display: block;
  width: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .example-embed__iframe {
    height: 260px;
  }
}