.callout {
  /* Needed to position the neural net banner */
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--margin);
}

.callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%; /* Space for rotation */
  height: 100%;
  background: var(--main-gradient);
  border-radius: var(--margin);
  transform-origin: 0;
  transform: perspective(15cm) rotateY(-5deg);
}

.callout .text {
  padding: var(--small-margin);
  width: 80%;
  color: white;
  z-index: 1;
}

/* Phone */
@media (max-width: 650px) {
  .callout {
    padding: var(--margin) var(--small-margin);
  }
}
