.art-page-layout {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.left-half.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.right-half {
  flex: 1;
}

.left-half .embla__controls {
  position: static;
  transform: none;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
