.scrub-showcase {
  grid-column: 1 / -1;
  min-height: 520px;
  background: #ffe8dc;
}

.development-badge {
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff4ed;
}

.scrub-visual {
  min-height: 300px;
  background: var(--orange);
  display: grid;
  place-items: center;
}

.scrub-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#11111112 1px, transparent 1px), linear-gradient(90deg, #11111112 1px, transparent 1px);
  background-size: 32px 32px;
}

.scrub-editor {
  position: relative;
  width: min(540px, 70%);
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff9f4;
  box-shadow: 10px 12px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.scrub-editor-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font: 800 11px Manrope, sans-serif;
  letter-spacing: .08em;
}

.scrub-editor-top span { padding: 6px 10px; border-radius: 999px; background: #ffd2bd; }
.scrub-lines { display: grid; gap: 8px; padding: 15px 2px; }
.scrub-lines i { display: block; height: 7px; border-radius: 9px; background: #d8d1ca; }
.rough-lines i:nth-child(2) { width: 78%; }
.rough-lines i:nth-child(3) { width: 92%; }
.rough-lines i:nth-child(4) { width: 48%; }
.clean-lines i { background: #282421; }
.clean-lines i:nth-child(2) { width: 88%; }
.clean-lines i:nth-child(3) { width: 64%; }

.scrub-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a4512f;
  font: 800 9px Manrope, sans-serif;
  letter-spacing: .1em;
}

.scrub-divider::before, .scrub-divider::after { content: ""; height: 1px; flex: 1; background: #ffb08f; }
.scrub-button { margin-top: 4px; padding: 11px 13px; border: 2px solid var(--ink); border-radius: 10px; background: var(--orange); font-size: 12px; font-weight: 800; text-align: center; }

.scrub-note {
  position: absolute;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 4px 5px 0 var(--ink);
}

.note-soft { left: 8%; top: 18%; transform: rotate(-8deg); }
.note-serious { right: 8%; bottom: 14%; background: #fff; transform: rotate(7deg); }

@media (max-width: 900px) { .scrub-showcase { grid-column: auto; } }
@media (max-width: 520px) {
  .scrub-editor { width: 82%; padding: 14px; box-shadow: 7px 8px 0 var(--ink); }
  .scrub-note { font-size: 10px; }
  .note-soft { left: 2%; }
  .note-serious { right: 2%; }
}
