.playground-search-stage {
  width: min(640px, 100vw);
  margin: 0 auto;
  padding: 0;
  background: #fff;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.playground-search-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px 10px 8px;
  box-sizing: border-box;
  border-bottom: 0.5px solid #e4e4e4;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.playground-search-back {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  color: #6b7280;
  font-size: 17px;
  text-decoration: none;
  padding: 4px 4px 4px 0;
}

.playground-search-back:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
  border-radius: 4px;
}

.playground-search-back-icon {
  display: inline-block;
  width: 10px;
  height: 16px;
  flex: 0 0 auto;
  position: relative;
}

.playground-search-back-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.playground-search-back-label {
  font-size: 17px;
  line-height: 1;
}

.playground-search-form {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.playground-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 28px 0 30px;
  border: none;
  border-radius: 10px;
  background:
    url("/static/playground/shadows/icon-search-figma.svg") 9px center / 14px 14px no-repeat,
    rgba(118, 118, 128, 0.12);
  color: #111827;
  font-size: 16px;
  line-height: 1;
  outline: none;
}

.playground-search-input::placeholder {
  color: rgba(60, 60, 67, 0.3);
}

.playground-search-input:focus {
  background:
    url("/static/playground/shadows/icon-search-figma.svg") 9px center / 14px 14px no-repeat,
    rgba(118, 118, 128, 0.16);
}

.playground-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23aeaeb2'/%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat;
  cursor: pointer;
  flex-shrink: 0;
}

.playground-search-body {
  padding-bottom: 48px;
}

.playground-search-hint {
  margin: 0;
  padding: 48px 24px;
  color: rgba(60, 60, 67, 0.6);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.playground-search-body .playground-feed-list {
  padding: 16px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.playground-answer-search-body .playground-detail-answer-list {
  width: 100%;
  padding: 8px 12px 24px;
  box-sizing: border-box;
}
