/*
 * Sensory Stack strip — shared component for learn.denverzenden.com
 * Loaded on homepage + every SEO article. The three interactive guides
 * (/music/, /stroboscopic-light/, /vibration/) have their own inline copy
 * with a "current" pill highlight.
 *
 * CSS variable fallbacks let this render correctly on any page in the library
 * regardless of which custom properties the host page has defined.
 */

.sensory-stack-strip {
  background: var(--cream-warm, #F5EFE0);
  border-top: 1px solid var(--line, rgba(20, 16, 31, 0.08));
  border-bottom: 1px solid var(--line, rgba(20, 16, 31, 0.08));
  padding: 1.8rem 1.5rem;
  font-family: var(--font-sans, 'Inter', -apple-system, sans-serif);
}
.sensory-stack-strip .stack-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sensory-stack-strip .stack-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal, #1F8A82);
  font-weight: 600;
  margin: 0 0 0.9rem;
}
.sensory-stack-strip .stack-pills {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sensory-stack-strip .stack-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border: 1.5px solid var(--line-strong, rgba(20, 16, 31, 0.16));
  border-radius: 14px;
  background: var(--paper, #FFFFFF);
  text-decoration: none;
  color: var(--ink-soft, #2A2538);
  transition: all 0.25s;
  min-width: 130px;
}
.sensory-stack-strip .stack-pill:hover {
  border-color: var(--gold, #B8923C);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 16, 31, 0.08);
}
.sensory-stack-strip .stack-pill-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  line-height: 1;
  color: var(--gold, #B8923C);
}
.sensory-stack-strip .stack-pill-name {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink, #14101F);
}
.sensory-stack-strip .stack-pill-sub {
  font-size: 0.92rem;
  color: var(--ink-muted, #5A5468);
  margin-top: 0.2rem;
  letter-spacing: 0.04em; font-style: italic;}
.sensory-stack-strip .stack-hub-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted, #5A5468);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.15s;
}
.sensory-stack-strip .stack-hub-link:hover {
  color: var(--gold, #B8923C);
  border-color: var(--gold, #B8923C);
}
