:root {
  color-scheme: dark;
  background: #171711;
  color: #f4efda;
}

.editorial {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 18rem);
  align-content: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 7rem max(1.25rem, calc((100% - 76rem) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(232, 201, 74, 0.2), transparent 22rem),
    #171711;
}

.editorial__kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: #e8c94a;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

h1 .a11y-text-split__line {
  width: fit-content;
  overflow: visible;
  animation: line-in 900ms both cubic-bezier(.16, 1, .3, 1);
  animation-delay: calc(180ms + var(--a11y-text-split-line-index) * 140ms);
  transform-origin: left bottom;
}

.editorial__aside {
  align-self: end;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #6c6856;
  color: #aaa692;
  font-size: 0.9rem;
  line-height: 1.55;
}

.recipe {
  color: #171711;
  background: #e8c94a;
}

@keyframes line-in {
  from {
    opacity: 0;
    transform: translateY(105%) rotate(2deg);
  }
}

@media (max-width: 44rem) {
  .editorial {
    grid-template-columns: 1fr;
  }

  .editorial__aside {
    max-width: 18rem;
  }
}
