/*
 * Play home — Paper Garden
 * Final hub-only layer for the approved 1+2 concept.
 */

.play-shell--storybook,
html[data-theme] .play-shell--storybook {
  --story-paper: #f7f2e9;
  --story-paper-soft: #fbf8f2;
  --story-surface: #fffdf9;
  --story-ink: #2f2d28;
  --story-muted: #726d65;
  --story-coral: #b95348;
  --story-coral-deep: #963f37;
  --story-sage: #7d875d;
  --story-ocher: #c69c4d;
  --story-taupe: #9b8871;
  --story-line: #ded5c8;
  --story-line-strong: #d4c8b8;
  --story-serif: "Noto Serif KR", "Nanum Myeongjo", "AppleMyungjo", Batang, serif;
  --story-sans: "font-R", Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--story-ink);
  background: #fff;
  font-family: var(--story-sans);
  color-scheme: light;
}

.play-shell--storybook *,
.play-shell--storybook *::before,
.play-shell--storybook *::after {
  box-sizing: border-box;
}

.play-shell--storybook .play-app {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.play-shell--storybook a {
  color: inherit;
  text-decoration: none;
}

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

/* Local navigation */
.play-shell--storybook .play-home-nav {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 76px;
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(105, 91, 72, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.play-shell--storybook .play-home-nav__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(760px, 100%);
  height: 100%;
  margin: 0 auto;
}

.play-shell--storybook .play-home-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 0 18px;
  color: #4d4943;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 180ms ease, background-color 180ms ease;
}

.play-shell--storybook .play-home-nav__link::after {
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--story-coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.play-shell--storybook .play-home-nav__link:hover,
.play-shell--storybook .play-home-nav__link:focus-visible,
.play-shell--storybook .play-home-nav__link.is-active {
  color: var(--story-coral-deep);
}

.play-shell--storybook .play-home-nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Hero */
.play-shell--storybook .play-home-hero {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 540px;
  margin: 0 !important;
  padding: 0 24px 44px !important;
  overflow: hidden;
  border: 0 !important;
  background: var(--story-paper) !important;
}

.play-shell--storybook .play-home-hero::after {
  position: absolute;
  right: -6%;
  bottom: -39px;
  left: -6%;
  z-index: 3;
  height: 76px;
  border-radius: 50% 50% 0 0 / 36% 36% 0 0;
  background: #fff;
  content: "";
  transform: rotate(-0.7deg);
}

.play-shell--storybook .play-home-hero__inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: 496px;
  margin: 0 auto;
  overflow: hidden;
}

.play-shell--storybook .play-header__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52%;
  min-width: 0;
  min-height: 496px;
  padding: 40px 0 56px 16px;
}

.play-shell--storybook .play-header__copy h1 {
  max-width: 580px;
  margin: 0;
  color: var(--story-ink);
  font-family: var(--story-serif);
  font-size: clamp(50px, 4.25vw, 68px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.play-shell--storybook .play-intro {
  margin: 30px 0 0;
  color: #666159;
  font-family: var(--story-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

.play-shell--storybook .play-home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--story-coral);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  box-shadow: 0 8px 20px rgba(189, 85, 72, 0.14);
  transition: background-color 180ms ease, transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.play-shell--storybook .play-home-hero__cta:hover {
  background: var(--story-coral-deep);
  transform: translateY(-2px);
}

.play-shell--storybook .play-home-hero__cta:active {
  transform: scale(.985);
}

.play-shell--storybook .play-home-hero__cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.play-shell--storybook .play-home-hero__cta:hover svg {
  transform: translateX(3px);
}

.play-shell--storybook .play-home-hero__art {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
}

/* Main paper area */
.play-shell--storybook .play-home-main {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 98px;
  background:
    radial-gradient(circle at 18% 14%, rgba(166, 143, 111, 0.035) 0 1px, transparent 1.4px) 0 0 / 11px 11px,
    #fff;
}

.play-shell--storybook .play-revisit-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  margin: 0 0 24px;
  padding: 12px 52px 12px 18px;
  border: 1px solid #e3c7bf;
  border-radius: 10px;
  background: #fae9e4;
  color: #625953;
  box-shadow: none;
}

.play-shell--storybook .play-revisit-banner[hidden] {
  display: none !important;
}

.play-shell--storybook .play-revisit-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.play-shell--storybook .play-revisit-banner__text strong {
  color: var(--story-coral-deep);
}

.play-shell--storybook .play-revisit-banner button {
  position: absolute;
  top: 5px;
  right: 6px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #766961;
  cursor: pointer;
}

.play-shell--storybook .play-panel,
.play-shell--storybook .play-panel[hidden] {
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

.play-shell--storybook .play-home-card {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--story-line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--story-ink);
  box-shadow: 0 12px 38px rgba(78, 64, 45, 0.035);
  transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.play-shell--storybook .play-home-card::before,
.play-shell--storybook .play-home-card::after {
  content: none;
}

.play-shell--storybook .play-home-card:hover {
  border-color: #cdbdab;
  box-shadow: 0 18px 48px rgba(78, 64, 45, 0.09);
  transform: translateY(-3px);
}

.play-shell--storybook .play-home-card:focus-visible,
.play-shell--storybook .play-home-nav__link:focus-visible,
.play-shell--storybook .play-home-hero__cta:focus-visible,
.play-shell--storybook .play-home-archive-link:focus-visible {
  outline: 3px solid var(--story-coral-deep);
  outline-offset: 4px;
}

/* Featured test */
.play-shell--storybook .play-home-featured {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  min-height: 500px;
}

.play-shell--storybook .play-home-featured__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 54px 28px 48px 48px;
}

.play-shell--storybook .play-home-featured__eyebrow {
  display: block;
  margin: 0 0 20px;
  color: var(--story-coral);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.play-shell--storybook .play-home-featured__title {
  display: block;
  margin: 0;
  color: var(--story-ink);
  font-family: var(--story-serif);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.play-shell--storybook .play-home-featured__description {
  display: block;
  margin: 22px 0 0;
  color: var(--story-muted);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

.play-shell--storybook .play-home-featured__meta,
.play-shell--storybook .play-home-test-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #746f68;
  font-size: 14px;
  line-height: 1;
}

.play-shell--storybook .play-home-featured__meta {
  margin-top: auto;
  padding-top: 28px;
}

.play-shell--storybook .play-home-featured__meta svg,
.play-shell--storybook .play-home-test-card__meta svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.play-shell--storybook .play-home-featured__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 156px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--story-coral);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(189, 85, 72, 0.14);
  transition: background-color 180ms ease;
}

.play-shell--storybook .play-home-featured:hover .play-home-featured__button {
  background: var(--story-coral-deep);
}

.play-shell--storybook .play-home-featured__button svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.play-shell--storybook .play-home-featured:hover .play-home-featured__button svg {
  transform: translateX(4px);
}

@media (hover: hover) and (pointer: fine) {
  .play-shell--storybook .play-home-card:hover {
    border-color: #cdbdab;
    box-shadow: 0 18px 48px rgba(78, 64, 45, 0.09);
    transform: translateY(-3px);
  }
}

@media (hover: none), (pointer: coarse) {
  .play-shell--storybook .play-home-card:hover {
    border-color: var(--story-line);
    box-shadow: 0 12px 38px rgba(78, 64, 45, 0.035);
    transform: none;
  }

  .play-shell--storybook .play-home-card:active {
    transform: scale(.985);
  }
}

.play-shell--storybook .play-home-featured__visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(249, 242, 231, 0.46), rgba(255, 253, 249, 0.22));
}

.play-shell--storybook .play-home-featured__visual::before {
  position: absolute;
  inset: 11% 9%;
  border-radius: 50%;
  background: rgba(218, 197, 166, 0.13);
  content: "";
  filter: blur(18px);
}

.play-shell--storybook .play-home-featured__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 108%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

/* Secondary psychology tests */
.play-shell--storybook .play-home-test-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.play-shell--storybook .play-home-test-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 300px;
  padding: 36px 32px 30px;
}

.play-shell--storybook .play-home-test-card:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 220px;
  padding-right: 42%;
}

.play-shell--storybook .play-home-test-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: #f0f0e6;
  color: var(--story-sage);
}

.play-shell--storybook .play-home-test-card--love .play-home-test-card__icon,
.play-shell--storybook .play-home-test-card--drink .play-home-test-card__icon {
  background: #faeee8;
  color: var(--story-coral);
}

.play-shell--storybook .play-home-test-card--money .play-home-test-card__icon {
  background: #f5eee2;
  color: #a27c42;
}

.play-shell--storybook .play-home-test-card__icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.45;
}

.play-shell--storybook .play-home-test-card__title {
  display: block;
  color: var(--story-ink);
  font-family: var(--story-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.play-shell--storybook .play-home-test-card__description {
  display: block;
  margin-top: 12px;
  color: var(--story-muted);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.play-shell--storybook .play-home-test-card__meta {
  margin-top: auto;
  padding-top: 26px;
}

.play-shell--storybook .play-home-test-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 27px;
  width: 22px;
  height: 22px;
  color: var(--story-coral);
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.play-shell--storybook .play-home-test-card:hover .play-home-test-card__arrow,
.play-shell--storybook .play-home-pick:hover .play-home-pick__arrow {
  transform: translateX(4px);
}

/* Daily picks */
.play-shell--storybook .play-home-picks {
  padding-top: 66px;
  scroll-margin-top: 96px;
}

.play-shell--storybook .play-home-tests {
  scroll-margin-top: 96px;
}

.play-shell--storybook .play-home-picks__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--story-ink);
  font-family: var(--story-serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.play-shell--storybook .play-home-picks__title svg {
  width: 28px;
  height: 28px;
  color: var(--story-sage);
  stroke-width: 1.5;
}

.play-shell--storybook .play-home-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.play-shell--storybook .play-home-pick {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 28px;
  align-items: center;
  min-height: 170px;
  padding: 16px 24px 16px 12px;
}

.play-shell--storybook .play-home-pick__image {
  display: block;
  width: 150px;
  height: 126px;
  max-width: none;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.play-shell--storybook .play-home-pick__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 10px;
}

.play-shell--storybook .play-home-pick__title {
  color: var(--story-ink);
  font-family: var(--story-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.play-shell--storybook .play-home-pick__description {
  max-width: 240px;
  margin-top: 10px;
  color: var(--story-muted);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.play-shell--storybook .play-home-pick__arrow {
  width: 22px;
  height: 22px;
  color: var(--story-coral);
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.play-shell--storybook .play-home-archive-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  min-height: 48px;
  margin: 58px auto 0;
  padding: 0 2px;
  border-bottom: 2px solid rgba(217, 105, 89, 0.5);
  color: #49443e;
  font-size: 18px;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease;
}

.play-shell--storybook .play-home-archive-link:hover {
  border-color: var(--story-coral);
  color: var(--story-coral-deep);
}

.play-shell--storybook .play-home-archive-link svg {
  width: 20px;
  height: 20px;
  color: var(--story-coral);
}

@media (max-width: 980px) {
  .play-shell--storybook .play-home-hero {
    min-height: 500px;
  }

  .play-shell--storybook .play-home-hero__inner,
  .play-shell--storybook .play-header__copy {
    min-height: 456px;
  }

  .play-shell--storybook .play-header__copy {
    width: 56%;
    padding-left: 4px;
  }

  .play-shell--storybook .play-header__copy h1 {
    font-size: clamp(44px, 6vw, 58px);
  }

  .play-shell--storybook .play-home-featured {
    grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
    min-height: 460px;
  }

  .play-shell--storybook .play-home-featured__copy {
    padding: 44px 18px 40px 36px;
  }

  .play-shell--storybook .play-home-test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-shell--storybook .play-home-test-card,
  .play-shell--storybook .play-home-test-card:nth-child(n + 4) {
    grid-column: span 1;
    min-height: 250px;
    padding: 30px 30px 26px;
  }

  .play-shell--storybook .play-home-test-card:last-child {
    grid-column: 1 / -1;
  }

  .play-shell--storybook .play-home-pick {
    grid-template-columns: 122px minmax(0, 1fr) 24px;
  }

  .play-shell--storybook .play-home-pick__image {
    width: 118px;
    height: 106px;
  }
}

@media (max-width: 840px) {
  .play-shell--storybook .play-home-pick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .play-shell--storybook .play-home-nav {
    height: 60px;
    padding: 0 8px;
  }

  .play-shell--storybook .play-home-nav__link {
    padding: 0 4px;
    font-size: 13px;
    white-space: nowrap;
  }

  .play-shell--storybook .play-home-nav__link::after {
    right: 12px;
    left: 12px;
  }

  .play-shell--storybook .play-home-hero {
    min-height: 520px;
    padding: 0 18px 34px !important;
  }

  .play-shell--storybook .play-home-hero__inner {
    min-height: 486px;
  }

  .play-shell--storybook .play-header__copy {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 62px 4px 0;
  }

  .play-shell--storybook .play-header__copy h1 {
    width: 100%;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1.28;
  }

  .play-shell--storybook .play-intro {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .play-shell--storybook .play-home-hero__cta {
    min-height: 48px;
    margin-top: 20px;
    padding: 0 18px;
    font-size: 15px;
  }

  .play-shell--storybook .play-home-hero__art {
    top: auto;
    bottom: 12px;
    left: 6%;
    width: 120%;
    height: 300px;
    object-fit: cover;
    object-position: 69% center;
  }

  .play-shell--storybook .play-home-main {
    width: min(100% - 32px, 560px);
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .play-shell--storybook .play-home-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .play-shell--storybook .play-home-featured__copy {
    min-height: 320px;
    padding: 30px 28px 28px;
  }

  .play-shell--storybook .play-home-featured__title {
    font-size: clamp(38px, 11vw, 48px);
  }

  .play-shell--storybook .play-home-featured__description {
    font-size: 16px;
  }

  .play-shell--storybook .play-home-featured__eyebrow {
    margin-bottom: 14px;
  }

  .play-shell--storybook .play-home-featured__description {
    margin-top: 16px;
  }

  .play-shell--storybook .play-home-featured__meta {
    padding-top: 20px;
  }

  .play-shell--storybook .play-home-featured__button {
    min-height: 48px;
    margin-top: 20px;
  }

  .play-shell--storybook .play-home-featured__visual {
    min-height: 250px;
    border-top: 1px solid rgba(222, 213, 200, 0.72);
  }

  .play-shell--storybook .play-home-featured__visual img {
    width: 100%;
    height: 250px;
  }

  .play-shell--storybook .play-home-test-grid,
  .play-shell--storybook .play-home-pick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .play-shell--storybook .play-home-test-card,
  .play-shell--storybook .play-home-test-card:nth-child(n + 4),
  .play-shell--storybook .play-home-test-card:last-child {
    grid-column: 1;
    min-height: 190px;
    padding: 18px 20px;
  }

  .play-shell--storybook .play-home-test-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .play-shell--storybook .play-home-test-card__icon svg {
    width: 23px;
    height: 23px;
  }

  .play-shell--storybook .play-home-test-card__title {
    font-size: 24px;
  }

  .play-shell--storybook .play-home-test-card__description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .play-shell--storybook .play-home-test-card__meta {
    padding-top: 12px;
  }

  .play-shell--storybook .play-home-test-card__arrow {
    right: 20px;
    bottom: 20px;
  }

  .play-shell--storybook .play-home-picks {
    padding-top: 46px;
  }

  .play-shell--storybook .play-home-picks__title {
    font-size: 25px;
  }

  .play-shell--storybook .play-home-pick {
    grid-template-columns: 118px minmax(0, 1fr) 24px;
    min-height: 140px;
    padding: 12px 18px 12px 6px;
  }

  .play-shell--storybook .play-home-pick__image {
    width: 116px;
    height: 104px;
  }

  .play-shell--storybook .play-home-pick__title {
    font-size: 22px;
  }

  .play-shell--storybook .play-home-pick__description {
    font-size: 14px;
  }

  .play-shell--storybook .play-home-archive-link {
    margin-top: 46px;
  }
}

@media (max-width: 410px) {
  .play-shell--storybook .play-home-nav__link {
    font-size: 12px;
    letter-spacing: -0.05em;
  }

  .play-shell--storybook .play-home-hero {
    min-height: 500px;
  }

  .play-shell--storybook .play-home-hero__inner {
    min-height: 466px;
  }

  .play-shell--storybook .play-home-hero__art {
    height: 280px;
  }

  .play-shell--storybook .play-home-pick {
    grid-template-columns: 92px minmax(0, 1fr) 20px;
    padding-right: 12px;
  }

  .play-shell--storybook .play-home-pick__image {
    width: 92px;
    height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-shell--storybook *,
  .play-shell--storybook *::before,
  .play-shell--storybook *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
