/* KidsFocus Feature Walkthroughs — extends ../styles.css */
/* Brand-aligned with tokens.css */

.shot {
  margin: 40px 0;
  text-align: center;
}
.shot img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  background: var(--surface);
}
.shot figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-2);
  font-style: normal;
  font-weight: 500;
}
.shot.small img { max-width: 520px; }

/* Per-step screenshots use the .step-shot pattern from ../styles.css
   (figure > img + figcaption inside each .steps li). The grid-based
   variant that used to live here was removed: nothing referenced it and
   it overrode the shared pattern, since features.css loads after
   styles.css on every walkthrough page. */

/* Two-up screenshot row */
.shot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.shot-row .shot { margin: 0; }
@media (max-width: 760px) {
  .shot-row { grid-template-columns: 1fr; }
}

/* Who-is-this-for chips on the hub */
.who {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 8px;
  border: 1px solid transparent;
}
.who.parent {
  background: #E8F4F5; /* subtle teal */
  color: var(--parent-action);
  border-color: rgba(1, 105, 111, 0.1);
}
.who.kid {
  background: var(--pink-soft);
  color: var(--pink-text);
  border-color: rgba(204, 21, 81, 0.15);
}

/* Feature hub header */
.hero.features {
  /* Inherits from styles.css .hero */
}
.hero.features .eyebrow {
  background: var(--surface);
  color: var(--pink-text);
}
.hero.features .accent { color: var(--pink-text); }

.btn-pink {
  background: var(--pink-text);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-pink:hover {
  background: var(--pink-hover);
  box-shadow: var(--shadow-hover);
}

/* App UI element reference — inline pill that looks like a button */
.ui {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
