/* Ghostlight shadow-component demo stage. Same warm-dark contract as the other demo
   stages, so Ghostlight's sky-blue language stays the only blue on screen. */

body.demo-shadow-shell {
  background: #171918;
}

.shx-app {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.shx-card {
  width: min(820px, 100%);
  background: #202321;
  border: 1px solid #3a403b;
  border-radius: 18px;
  padding: 26px 28px 22px;
}

.shx-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.shx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #a6ada6;
}

.shx-kicker i,
.shx-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b59375;
  display: inline-block;
}

.shx-card h1 {
  margin: 6px 0 4px;
  font-size: 24px;
  color: #f0ede6;
}

.shx-heading p {
  margin: 0;
  color: #a6ada6;
  font-size: 14.5px;
  max-width: 56ch;
}

.shx-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #7d857f;
  border: 1px solid #3a403b;
  border-radius: 999px;
  padding: 5px 11px;
}

.shx-status i {
  background: #9db8a3;
}

.shx-note {
  color: #cfd4cd;
  font-size: 14px;
  max-width: 62ch;
  margin: 8px 0 18px;
}

.shx-component {
  display: block;
  border: 1px solid #3a403b;
  border-radius: 14px;
  background: #1b1e1c;
  padding: 18px;
}

.shx-sealed {
  margin-top: 18px;
  border: 1px dashed #3a403b;
  border-radius: 14px;
  padding: 14px 16px;
}

.shx-sealed h2 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #f0ede6;
}

.shx-sealed p {
  margin: 0 0 10px;
  color: #a6ada6;
  font-size: 13.5px;
}

.shx-sealed strong {
  color: #cfd4cd;
}

.shx-sealed-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shx-sealed-note {
  font-size: 12px;
  color: #7d857f;
}

.shx-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.shx-foot p {
  margin: 0;
  color: #a6ada6;
  font-size: 13px;
}

.shx-foot strong {
  color: #9db8a3;
  font-weight: 600;
}

@media (max-width: 640px) {
  .shx-heading { flex-direction: column; }
}
