.watch-create-section {
  border-top: 1px solid color-mix(in oklab, var(--dusty) 30%, transparent);
  background: var(--fg);
  color: var(--blush);
  padding: 6rem 1.5rem;
}

.watch-create-inner {
  margin: 0 auto;
  max-width: 80rem;
}

.watch-create-header {
  display: grid;
  margin-bottom: 3rem;
  gap: 0.75rem 3rem;
}

.watch-create-badge {
  display: inline-flex;
  width: fit-content;
  color: var(--dusty);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.watch-create-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.watch-create-title span {
  color: var(--dusty);
}

.watch-create-description {
  margin: 0;
  max-width: 24rem;
  color: color-mix(in oklab, var(--blush) 70%, transparent);
  font-size: 0.875rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.watch-create-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.watch-create-video-item {
  margin: 0;
}

.watch-create-video-frame {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--dusty) 18%, transparent);
  border-radius: 0.75rem;
  background: color-mix(in oklab, white 5%, transparent);
}

.watch-create-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-create-caption {
  margin-top: 0.75rem;
  color: color-mix(in oklab, var(--blush) 70%, transparent);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .watch-create-header {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
    align-items: end;
  }

  .watch-create-badge,
  .watch-create-title {
    grid-column: 1;
  }

  .watch-create-description {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    justify-self: end;
  }

  .watch-create-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .watch-create-video-frame {
    aspect-ratio: 3 / 4;
  }
}
