.wireframe {
  position: relative;
  display: grid;
  min-height: 12rem;
  place-items: center;
  overflow: hidden;
  border: 2px dashed currentColor;
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, currentColor 8px, currentColor 9px);
  opacity: .42;
  aspect-ratio: 16 / 9;
}

.wireframe::before,
.wireframe::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: .55;
}

.wireframe::before {
  width: 36%;
  height: 36%;
  top: 16%;
  left: 12%;
}

.wireframe::after {
  width: 64%;
  height: 16%;
  right: 10%;
  bottom: 18%;
}

.wireframe-square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.wireframe-label {
  position: relative;
  z-index: 1;
  padding: .35rem .75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .wireframe {
    min-height: 9rem;
    border-radius: 1rem;
  }
}
