/* Drawn stroke reveal */
.draw-stage {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 32px;
}

.draw-layout {
  display: grid;
  width: min(980px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.draw-mark {
  width: 100%;
  overflow: visible;
}

.draw-mark path,
.draw-mark circle {
  fill: none;
  stroke: #111315;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.draw-mark .accent {
  stroke: var(--coral);
}

@media (max-width: 780px) {
  .draw-layout {
    grid-template-columns: 1fr;
  }
}
