.showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 5rem 0;
}

.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.showcase__media > * {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 50rem) {
  .showcase__item {
    flex-direction: row;
    gap: 2rem;
  }

  .showcase__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
