/* src/client/pages/Playground.css */
.playground {
  padding: calc(var(--header-height)  + 2rem) var(--page-padding-x) 6rem;
  min-width: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.playground-head {
  margin-bottom: 3rem;
}

.playground-eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin: 0 0 .5rem;
  font-size: .8rem;
  font-weight: 600;
}

.playground-title {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
}

.playground-lede {
  color: #f5f5f7a6;
  max-width: 52ch;
  margin: 0;
}

.playground-section {
  border-top: 1px solid #f5f5f71a;
  margin-top: 3rem;
  padding-top: 2rem;
}

.playground-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.playground-section-title {
  margin: 0;
  font-size: 1.35rem;
}

.playground-section-note {
  color: #f5f5f773;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85rem;
}

.playground-full {
  position: relative;
  width: min(1440px, calc(100vw - 2 * var(--page-padding-x)  - 17px));
  left: 50%;
  transform: translateX(-50%);
}

.playground-showcase {
  width: 100%;
}

.playground-hint {
  color: #f5f5f773;
  margin: 1rem 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
}

.playground-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.playground-specimen {
  display: flex;
  overflow: hidden;
  background: linear-gradient(#ffffff05, #ffffff05), repeating-conic-gradient(#ffffff08 0% 25%, #0000 0% 50%) 0 0 / 16px 16px;
  border: 1px solid #f5f5f71a;
  border-radius: 12px;
  flex-direction: column;
}

.playground-specimen-wide {
  grid-column: 1 / -1;
}

.playground-specimen-stage {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items:  center;
  min-height: 120px;
  padding: 1.75rem;
}

.playground-specimen-wide .playground-specimen-stage {
  min-height: unset;
}

.playground-specimen-label {
  color: #f5f5f78c;
  background: #00000059;
  border-top: 1px solid #f5f5f714;
  padding: .5rem .75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
}
