@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================================================================
   template_09 — Pastel handwritten-marker static home
   -------------------------------------------------------------------------
   Soft lavender + violet + cream early-childhood feel adapted to a primary
   school. All custom selectors are scoped under `.sh-template_09` so
   nothing here leaks into other templates. Caveat is loaded via @import
   above so inner pages get the script font without depending on the
   homepage's per-view content_for :head block.
   ========================================================================= */

.sh-template_09 {
  --ps-lavender:      #E0DCFC;
  --ps-lavender-soft: #EFEDFD;
  --ps-violet:        #3F2D7A;
  --ps-violet-soft:   #6B5BB0;
  --ps-cream:         #FAF8F0;
  --ps-cream-warm:    #F4EFDC;
  --ps-yellow:        #F4D75D;
  --ps-yellow-soft:   #FBEBA0;
  --ps-pink:          #F8C8D8;
  --ps-pink-soft:     #FBE0EA;
  --ps-mint:          #D5EDE2;
  --ps-mint-soft:     #ECF7F1;
  --ps-ink:           #2A2540;
  --ps-ink-soft:      #5A547A;
  --ps-shadow:        0 8px 24px -12px rgba(63, 45, 122, 0.25);

  background: var(--ps-cream);
  color: var(--ps-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
}

.sh-template_09 * { box-sizing: border-box; }

.sh-template_09 h1,
.sh-template_09 h2,
.sh-template_09 h3,
.sh-template_09 h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ps-violet);
  margin: 0;
}

.sh-template_09 p { margin: 0; }

.sh-template_09 a { color: inherit; text-decoration: none; }
.sh-template_09 a:focus-visible,
.sh-template_09 button:focus-visible {
  outline: 3px solid var(--ps-violet);
  outline-offset: 3px;
  border-radius: 6px;
}

.sh-template_09 .sh-shell {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.sh-template_09 .sh-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ps-violet);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  z-index: 999;
}
.sh-template_09 .sh-skip-link:focus { left: 1rem; top: 1rem; }

/* Marker underline -------------------------------------------------------- */
/* `.ps-marker` wraps a highlighted word + the squiggly SVG that sits behind
   it. The word renders in Caveat (script) so the highlight reads as a
   handwritten flourish; the SVG is positioned absolutely behind the word
   and stretches to fill the wrapping inline-block. */
.sh-template_09 .ps-marker {
  position: relative;
  display: inline-block;
  padding: 0 .15em;
  white-space: nowrap;
}
.sh-template_09 .ps-marker-word {
  position: relative;
  z-index: 1;
  font-family: "Caveat", "Kalam", "Bradley Hand", cursive;
  font-weight: 700;
  font-style: italic;
  color: var(--ps-violet);
  letter-spacing: 0;
}
.sh-template_09 .ps-marker-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.18em;
  width: 100%;
  height: .55em;
  color: var(--ps-yellow);
  z-index: 0;
  pointer-events: none;
}

/* Sticker labels ---------------------------------------------------------- */
.sh-template_09 .ps-sticker {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 0.02em;
  color: var(--ps-violet);
  background: var(--ps-pink);
  box-shadow: 0 2px 6px -2px rgba(63, 45, 122, 0.18);
  transform: rotate(-2deg);
}
.sh-template_09 .ps-sticker-pink   { background: var(--ps-pink); }
.sh-template_09 .ps-sticker-yellow { background: var(--ps-yellow); }
.sh-template_09 .ps-sticker-mint   { background: var(--ps-mint); }
.sh-template_09 .ps-sticker-cream  { background: var(--ps-cream-warm); }
.sh-template_09 .ps-sticker-violet { background: var(--ps-violet); color: #fff; }
.sh-template_09 .ps-sticker:nth-of-type(2n) { transform: rotate(2deg); }

/* Buttons ---------------------------------------------------------------- */
.sh-template_09 .sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.sh-template_09 .sh-btn-primary {
  background: var(--ps-violet);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(63, 45, 122, 0.55);
}
.sh-template_09 .sh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(63, 45, 122, 0.55);
}
.sh-template_09 .sh-btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ps-violet);
  border: 1.5px solid var(--ps-violet);
}
.sh-template_09 .sh-btn-ghost:hover {
  background: #fff;
}

/* Nav -------------------------------------------------------------------- */
.sh-template_09 .sh-nav {
  background: var(--ps-cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sh-template_09 .sh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}
.sh-template_09 .sh-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--ps-violet);
  font-size: 1.05rem;
}
.sh-template_09 .sh-nav-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--ps-violet);
  background: var(--ps-lavender);
  border-radius: 50%;
}
.sh-template_09 .sh-nav-mark svg {
  width: 1.1rem;
  height: 1.1rem;
}
.sh-template_09 .sh-nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ps-ink);
  flex: 0 1 auto;
  flex-wrap: nowrap;
}
.sh-template_09 .sh-nav-links a,
.sh-template_09 .sh-nav-links .sh-nav-dropdown-btn {
  white-space: nowrap;
}
/* Top-level plain links (no sub-pages) take the same shape as the
   dropdown buttons so a child-less item like "International Students"
   doesn't read as a different style. */
.sh-template_09 .sh-nav-links > .sh-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  color: var(--ps-violet);
  font-weight: 600;
  text-decoration: none;
}
.sh-template_09 .sh-nav-links > .sh-nav-link:hover { color: var(--ps-violet-soft); }

.sh-template_09 .sh-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--ps-lavender);
  color: var(--ps-violet);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.sh-template_09 .sh-nav-cta:hover {
  background: var(--ps-violet);
  color: #fff;
  transform: translateY(-1px);
}

/* Sign-in link — quiet violet text link before the CTA. */
.sh-template_09 .sh-nav-auth {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ps-violet);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  padding: 0.55rem 0.4rem;
}
.sh-template_09 .sh-nav-auth:hover {
  color: var(--ps-violet-soft);
  border-bottom-color: var(--ps-yellow);
}

/* Avatar dropdown — visible when a user/guardian is signed in.
   Wraps the homepage's lavender circle vocabulary so the avatar
   reads as the school's brand. */
.sh-template_09 .sh-nav-user {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.sh-template_09 .sh-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.14s ease;
}
.sh-template_09 .sh-nav-user-btn:hover { background: var(--ps-lavender-soft); }
.sh-template_09 .sh-nav-user-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ps-lavender);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px -6px rgba(63, 45, 122, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}
.sh-template_09 .sh-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-template_09 .sh-nav-user-avatar-initials {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ps-violet);
  letter-spacing: 0.02em;
}
.sh-template_09 .sh-nav-user-btn .sh-nav-chevron {
  width: 10px;
  height: 6px;
  color: var(--ps-violet);
  transition: transform 0.18s ease;
}
.sh-template_09 .sh-nav-user-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(180deg);
}

.sh-template_09 .sh-nav-user-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--ps-lavender-soft);
  border-radius: 16px;
  box-shadow: 0 18px 40px -22px rgba(63, 45, 122, 0.45);
  padding: 8px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_09 .sh-nav-user-menu.hidden { display: none; }

.sh-template_09 .sh-nav-user-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 14px;
  border-bottom: 1px dashed rgba(63, 45, 122, 0.15);
  margin-bottom: 4px;
}
.sh-template_09 .sh-nav-user-identity-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ps-lavender);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px -6px rgba(63, 45, 122, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}
.sh-template_09 .sh-nav-user-identity-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sh-template_09 .sh-nav-user-identity-text { min-width: 0; flex: 1; }
.sh-template_09 .sh-nav-user-identity-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ps-violet);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-template_09 .sh-nav-user-identity-email {
  font-size: 12.5px;
  color: var(--ps-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-template_09 .sh-nav-user-link,
.sh-template_09 .sh-nav-user-signout {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ps-ink);
  text-decoration: none;
  text-align: left;
  background: transparent;
  border: 0;
  width: 100%;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.sh-template_09 .sh-nav-user-link:hover,
.sh-template_09 .sh-nav-user-signout:hover {
  background: var(--ps-lavender-soft);
  color: var(--ps-violet);
}
.sh-template_09 .sh-nav-user-signout-form { margin: 0; }

/* --- Mobile drawer identity strip + signout ----------------------------- */
.sh-template_09 .sh-nav-mobile-divider {
  height: 1px;
  background: rgba(63, 45, 122, 0.16);
  margin: 18px 0;
}
.sh-template_09 .sh-nav-mobile-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sh-template_09 .sh-nav-mobile-identity-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ps-lavender);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px -6px rgba(63, 45, 122, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}
.sh-template_09 .sh-nav-mobile-identity-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sh-template_09 .sh-nav-mobile-identity-text { min-width: 0; flex: 1; }
.sh-template_09 .sh-nav-mobile-identity-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ps-violet);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-template_09 .sh-nav-mobile-identity-email {
  font-size: 13px;
  color: var(--ps-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-template_09 .sh-nav-mobile-signout {
  background: transparent;
  border: 0;
  padding: 14px 8px;
  border-bottom: 1px dashed rgba(63, 45, 122, 0.18);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ps-violet);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.sh-template_09 .sh-nav-mobile-signout-form { margin: 0; }

/* Hamburger button — hidden on wide screens, shown when inline nav
   moves into the drawer below 980px. */
.sh-template_09 .sh-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ps-violet);
  border-radius: 8px;
}
.sh-template_09 .sh-nav-toggle svg { width: 24px; height: 24px; }
.sh-template_09 .sh-nav-toggle:hover { background: var(--ps-lavender-soft); }

/* Mobile / tablet drawer */
.sh-template_09 .sh-nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: var(--ps-cream);
  border-left: 1px solid var(--ps-lavender);
  box-shadow: -24px 0 60px -28px rgba(63, 45, 122, 0.4);
  z-index: 80;
  padding: 96px 28px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
}
.sh-template_09 .sh-nav-open + .sh-nav-mobile,
.sh-template_09.sh-nav .sh-nav-open ~ .sh-nav-mobile { /* fallback */ }
.sh-template_09 .sh-nav.sh-nav-open + .sh-nav-mobile,
.sh-template_09 .sh-nav.sh-nav-open ~ .sh-nav-mobile {
  transform: translateX(0);
  visibility: visible;
}

.sh-template_09 .sh-nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sh-template_09 .sh-nav-mobile-link {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px dashed rgba(63, 45, 122, 0.18);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ps-violet);
  text-decoration: none;
}
.sh-template_09 .sh-nav-mobile-link:hover {
  color: var(--ps-violet-soft);
}
.sh-template_09 .sh-nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ps-violet);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

body.sh-nav-locked { overflow: hidden; }

/* Past 980px the inline nav fits comfortably; below, hide it and
   surface the hamburger + drawer instead. */
@media (max-width: 980px) {
  .sh-template_09 .sh-nav-links { display: none; }
  .sh-template_09 .sh-nav-cta-wrap,
  .sh-template_09 .sh-nav-user,
  .sh-template_09 .sh-nav-auth { display: none; }
  .sh-template_09 .sh-nav-toggle { display: inline-flex; }
}
@media (min-width: 981px) {
  .sh-template_09 .sh-nav-mobile { display: none; }
}

/* Hero ------------------------------------------------------------------- */
.sh-template_09 .sh-hero {
  position: relative;
  background: var(--ps-lavender);
  overflow: hidden;
  padding-block: 4rem 5rem;
}
.sh-template_09 .sh-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sh-template_09 .sh-hero-deco .sh-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--ps-violet);
  opacity: 0.18;
}
.sh-template_09 .sh-dot-a { width: 10px;  height: 10px; top: 12%; left: 8%; }
.sh-template_09 .sh-dot-b { width: 6px;   height: 6px;  top: 32%; left: 18%; opacity: .25; }
.sh-template_09 .sh-dot-c { width: 14px;  height: 14px; top: 70%; left: 12%; opacity: .12; }
.sh-template_09 .sh-dot-d { width: 8px;   height: 8px;  top: 22%; right: 10%; opacity: .22; }
.sh-template_09 .sh-dot-e { width: 12px;  height: 12px; top: 65%; right: 18%; opacity: .15; }

.sh-template_09 .sh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sh-template_09 .sh-hero-copy { text-align: center; }
.sh-template_09 .sh-hero-eyebrow {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ps-violet);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.sh-template_09 .sh-hero-title {
  font-size: clamp(2.2rem, 5.4vw, 4.1rem);
  color: var(--ps-violet);
  margin-bottom: 1.2rem;
}
.sh-template_09 .sh-hero-title .ps-marker-word {
  font-size: 1.05em;
}
.sh-template_09 .sh-hero-lede {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  color: var(--ps-ink-soft);
  font-size: 1.05rem;
}
.sh-template_09 .sh-hero-ctas {
  display: flex;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
}

/* Hero medallions — polka-dot circle behind a child portrait */
.sh-template_09 .sh-hero-medallion {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
}
.sh-template_09 .sh-hero-medallion-disc {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.7) 1.5px, transparent 2px) 0 0 / 22px 22px,
    var(--ps-violet);
}
.sh-template_09 .sh-hero-medallion-disc-yellow {
  background:
    radial-gradient(circle at 25% 30%, rgba(63, 45, 122, 0.4) 1.5px, transparent 2px) 0 0 / 22px 22px,
    var(--ps-yellow);
}
.sh-template_09 .sh-hero-medallion-img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-hero-medallion-left  { transform: rotate(-4deg); }
.sh-template_09 .sh-hero-medallion-right { transform: rotate(4deg); }

@media (max-width: 900px) {
  .sh-template_09 .sh-hero-inner { grid-template-columns: 1fr; }
  .sh-template_09 .sh-hero-medallion {
    max-width: 220px;
    margin-inline: auto;
  }
  .sh-template_09 .sh-hero-medallion-left  { order: -1; }
}

/* Section kicker --------------------------------------------------------- */
.sh-template_09 .sh-section-kicker {
  display: flex;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ps-violet-soft);
  letter-spacing: 0.04em;
  margin-bottom: .9rem;
}
.sh-template_09 .sh-section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--ps-violet);
}

/* Principal band --------------------------------------------------------- */
.sh-template_09 .sh-principal {
  background: var(--ps-cream);
  padding-block: 5rem;
}
.sh-template_09 .sh-principal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.sh-template_09 .sh-principal-copy .sh-section-kicker { justify-content: flex-start; }
.sh-template_09 .sh-principal-copy .sh-section-title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.sh-template_09 .sh-principal-lede {
  margin-top: 1rem;
  color: var(--ps-ink-soft);
  font-size: 1.05rem;
  max-width: 540px;
}
.sh-template_09 .sh-principal-roster {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.sh-template_09 .sh-principal-avatars {
  display: flex;
}
.sh-template_09 .sh-principal-avatar {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 3px solid var(--ps-cream);
  background: var(--ps-lavender);
  overflow: hidden;
  margin-left: -.6rem;
}
.sh-template_09 .sh-principal-avatar:first-child { margin-left: 0; }
.sh-template_09 .sh-principal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-template_09 .sh-principal-avatar-more {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ps-violet);
  background: var(--ps-yellow);
}
.sh-template_09 .sh-principal-roster-label {
  font-weight: 500;
  color: var(--ps-ink-soft);
}
.sh-template_09 .sh-principal-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 0;
  margin: 1.4rem 0 0;
}
.sh-template_09 .sh-principal-chip {
  padding: .4rem .9rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ps-violet);
  font-size: .85rem;
  font-weight: 500;
  box-shadow: var(--ps-shadow);
}

.sh-template_09 .sh-principal-feature {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
}
.sh-template_09 .sh-principal-feature-disc {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 30%, rgba(63, 45, 122, 0.35) 2px, transparent 2.5px) 0 0 / 26px 26px,
    var(--ps-pink);
}
.sh-template_09 .sh-principal-feature-disc .sh-principal-feature-dot { display: none; }
.sh-template_09 .sh-principal-feature-img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-principal-feature-caption {
  position: absolute;
  bottom: -.3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  background: #fff;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--ps-shadow);
  white-space: nowrap;
}
.sh-template_09 .sh-principal-feature-name {
  font-weight: 700;
  color: var(--ps-violet);
}

@media (max-width: 900px) {
  .sh-template_09 .sh-principal-inner { grid-template-columns: 1fr; }
  .sh-template_09 .sh-principal-feature { max-width: 360px; margin-inline: auto; }
  .sh-template_09 .sh-principal-copy .sh-section-kicker { justify-content: center; }
  .sh-template_09 .sh-principal-copy { text-align: center; }
  .sh-template_09 .sh-principal-roster { justify-content: center; }
  .sh-template_09 .sh-principal-chips { justify-content: center; }
  .sh-template_09 .sh-principal-lede { margin-inline: auto; }
}

/* Programs grid ---------------------------------------------------------- */
.sh-template_09 .sh-programs {
  background: var(--ps-cream);
  padding-block: 5rem;
}
.sh-template_09 .sh-programs-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.sh-template_09 .sh-programs-lede {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--ps-ink-soft);
  font-size: 1.05rem;
}
.sh-template_09 .sh-programs-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.sh-template_09 .sh-program {
  position: relative;
  padding: 1.6rem;
  border-radius: 28px;
  box-shadow: var(--ps-shadow);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.sh-template_09 .sh-program-bg-lavender { background: var(--ps-lavender); }
.sh-template_09 .sh-program-bg-yellow   { background: var(--ps-yellow-soft); }
.sh-template_09 .sh-program-bg-cream    { background: var(--ps-cream-warm); }
.sh-template_09 .sh-program-bg-mint     { background: var(--ps-mint); }
.sh-template_09 .sh-program-art {
  position: relative;
  height: 8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sh-template_09 .sh-program-icon {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  color: var(--ps-violet);
}
.sh-template_09 .sh-program-icon svg {
  width: 2rem;
  height: 2rem;
}
.sh-template_09 .sh-program-stamp {
  position: absolute;
  bottom: .65rem;
  right: .65rem;
}
.sh-template_09 .sh-program-title {
  font-size: 1.25rem;
  color: var(--ps-violet);
}
.sh-template_09 .sh-program-copy {
  color: var(--ps-ink-soft);
  font-size: .95rem;
}
.sh-template_09 .sh-program-more {
  display: inline-block;
  margin-top: .25rem;
  font-weight: 600;
  color: var(--ps-violet);
}
.sh-template_09 .sh-program-more:hover { text-decoration: underline; }

/* Tours ------------------------------------------------------------------ */
.sh-template_09 .sh-tours {
  background: var(--ps-lavender-soft);
  padding-block: 5rem;
}
.sh-template_09 .sh-tours-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}
.sh-template_09 .sh-tours-copy .sh-section-kicker { justify-content: flex-start; }
.sh-template_09 .sh-tours-lede {
  margin: 1rem 0 1.8rem;
  color: var(--ps-ink-soft);
  font-size: 1.05rem;
}
.sh-template_09 .sh-tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sh-template_09 .sh-tour {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-tour-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ps-violet);
}
.sh-template_09 .sh-tour-chip-pink   { background: var(--ps-pink); transform: rotate(-3deg); }
.sh-template_09 .sh-tour-chip-yellow { background: var(--ps-yellow); transform: rotate(2deg); }
.sh-template_09 .sh-tour-chip-month {
  font-size: .7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sh-template_09 .sh-tour-chip-day {
  font-size: 1.3rem;
  line-height: 1;
}
.sh-template_09 .sh-tour-day {
  display: block;
  font-weight: 700;
  color: var(--ps-violet);
}
.sh-template_09 .sh-tour-date-full {
  display: block;
  color: var(--ps-ink-soft);
  font-size: .9rem;
}
.sh-template_09 .sh-tour-sep { margin: 0 .35rem; }
.sh-template_09 .sh-tour-cta {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--ps-violet);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
}
.sh-template_09 .sh-tour-cta:hover {
  background: var(--ps-violet-soft);
}

@media (max-width: 900px) {
  .sh-template_09 .sh-tours-inner { grid-template-columns: 1fr; }
  .sh-template_09 .sh-tours-copy .sh-section-kicker { justify-content: center; }
  .sh-template_09 .sh-tours-copy { text-align: center; }
}

/* Testimonials ----------------------------------------------------------- */
.sh-template_09 .sh-testimonials {
  background: var(--ps-cream);
  padding-block: 5rem;
}
.sh-template_09 .sh-testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sh-template_09 .sh-testimonials-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.sh-template_09 .sh-testimonial-card {
  position: relative;
  padding: 2rem 1.6rem 1.4rem;
  background: var(--ps-lavender-soft);
  border-radius: 28px;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-testimonial-card-0 { transform: rotate(-1.2deg); background: var(--ps-lavender-soft); }
.sh-template_09 .sh-testimonial-card-1 { transform: rotate(1deg);    background: var(--ps-pink-soft); }
.sh-template_09 .sh-testimonial-card-2 { transform: rotate(-.6deg);  background: var(--ps-mint-soft); }
.sh-template_09 .sh-testimonial-mark {
  position: absolute;
  top: -.4rem;
  left: 1.2rem;
  font-family: "Caveat", cursive;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--ps-violet);
  opacity: .6;
}
.sh-template_09 .sh-testimonial-quote {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--ps-ink);
  font-style: italic;
}
.sh-template_09 .sh-testimonial-meta {
  font-size: .9rem;
  color: var(--ps-ink-soft);
}
.sh-template_09 .sh-testimonial-name {
  font-weight: 700;
  color: var(--ps-violet);
}
.sh-template_09 .sh-testimonial-dash { margin: 0 .25rem; }

/* Find us / contact form ------------------------------------------------- */
.sh-template_09 .sh-findus {
  background: var(--ps-lavender);
  padding-block: 5rem;
}
.sh-template_09 .sh-findus-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}
.sh-template_09 .sh-findus-copy .sh-section-kicker { justify-content: flex-start; }
.sh-template_09 .sh-findus-intro {
  margin: 1rem 0 1.6rem;
  color: var(--ps-ink-soft);
  font-size: 1.05rem;
}
.sh-template_09 .sh-findus-details {
  display: grid;
  gap: 1rem;
  margin: 0;
}
.sh-template_09 .sh-findus-detail dt {
  margin-bottom: .35rem;
}
.sh-template_09 .sh-findus-detail dd {
  margin: 0;
  color: var(--ps-ink);
  font-weight: 500;
}
.sh-template_09 .sh-findus-detail dd a:hover { color: var(--ps-violet); text-decoration: underline; }

/* Re-skin the contact form partial — Tailwind utility classes set the
   default look but we want lavender chrome + a violet pill submit. We
   target the rendered turbo_frame/form children rather than rewriting
   the partial so the rest of the app's contact form still works. */
.sh-template_09 .sh-findus-form > * {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-findus-form input[type="text"],
.sh-template_09 .sh-findus-form input[type="email"],
.sh-template_09 .sh-findus-form textarea {
  background: var(--ps-lavender-soft);
  border-color: var(--ps-lavender);
  color: var(--ps-ink);
}
.sh-template_09 .sh-findus-form input:focus,
.sh-template_09 .sh-findus-form textarea:focus {
  border-color: var(--ps-violet);
  box-shadow: 0 0 0 3px rgba(63, 45, 122, 0.18);
}
.sh-template_09 .sh-findus-form input[type="submit"] {
  background: var(--ps-violet);
  border-radius: 999px;
}
.sh-template_09 .sh-findus-form input[type="submit"]:hover {
  background: var(--ps-violet-soft);
}

@media (max-width: 900px) {
  .sh-template_09 .sh-findus-inner { grid-template-columns: 1fr; }
  .sh-template_09 .sh-findus-copy .sh-section-kicker { justify-content: center; }
  .sh-template_09 .sh-findus-copy { text-align: center; }
}

/* Footer ----------------------------------------------------------------- */
.sh-template_09 .sh-footer {
  background: var(--ps-cream-warm);
  color: var(--ps-violet);
  padding-block: 3.5rem 2rem;
}
.sh-template_09 .sh-footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.sh-template_09 .sh-footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--ps-violet);
  margin-bottom: 1rem;
}
.sh-template_09 .sh-footer-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ps-pink);
  color: var(--ps-violet);
}
.sh-template_09 .sh-footer-mark svg { width: 1.1rem; height: 1.1rem; }
.sh-template_09 .sh-footer-heading {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-violet);
  margin-bottom: .9rem;
}
.sh-template_09 .sh-footer-contact p { margin-bottom: .35rem; color: var(--ps-ink-soft); }
.sh-template_09 .sh-footer-contact a:hover { color: var(--ps-violet); text-decoration: underline; }
.sh-template_09 .sh-footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  color: var(--ps-ink-soft);
}
.sh-template_09 .sh-footer-nav a:hover { color: var(--ps-violet); text-decoration: underline; }
.sh-template_09 .sh-footer-ack {
  font-size: .9rem;
  color: var(--ps-ink-soft);
}
.sh-template_09 .sh-footer-bottom {
  border-top: 1px solid rgba(63, 45, 122, 0.18);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ps-ink-soft);
  font-size: .85rem;
}
.sh-template_09 .sh-footer-bottom-links {
  display: flex;
  gap: 1.2rem;
}
.sh-template_09 .sh-footer-bottom-links a:hover { color: var(--ps-violet); }

/* ---------- App store badges (Bluedesk parent app) ---------- */
.sh-template_09 .sh-footer-apps {
  margin-top: 24px;
}
.sh-template_09 .sh-footer-apps-blurb {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 320px;
}
.sh-template_09 .sh-footer-apps-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sh-template_09 .sh-app-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  transition: transform 120ms ease;
}
.sh-template_09 .sh-app-badge svg {
  display: block;
  height: 40px;
  width: auto;
}

/* =========================================================================
   Inner pages — Journal layout, threaded with the homepage's pastel-marker
   -------------------------------------------------------------------------
   Secondary pages render via _inner_body.slim, fully bypassing the row /
   slide / column pipeline. The visual vocabulary borrows the homepage's
   loudest gestures — the marker squiggle on the title, polka-dot decor,
   Caveat-script accents, lavender surfaces — so /p/<slug> reads as the
   same brand as /. Selectors scoped under .sh-template_09.
   ========================================================================= */

.sh-template_09 .sh-caveat {
  font-family: "Caveat", "Kalam", "Bradley Hand", cursive;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.sh-template_09 .static-home-inner-main {
  background: var(--ps-cream);
  color: var(--ps-ink);
  padding-bottom: 0;
  position: relative;
  overflow-x: clip;
}

/* --- Hero ---------------------------------------------------------------- */
.sh-template_09 .sh-journal-hero {
  position: relative;
  background: var(--ps-lavender);
  padding: 88px 0 96px;
  overflow: hidden;
  border-bottom: 1px dashed rgba(63, 45, 122, 0.18);
}
.sh-template_09 .sh-journal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

/* Polka-dot cluster — matches the homepage's .sh-hero-deco vocabulary
   so the secondary pages and the homepage hero feel like one world. */
.sh-template_09 .sh-journal-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sh-template_09 .sh-journal-hero-deco .sh-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--ps-violet);
}
.sh-template_09 .sh-journal-hero-deco .sh-dot-a { width: 12px;  height: 12px; top: 14%; left: 6%;  opacity: 0.20; }
.sh-template_09 .sh-journal-hero-deco .sh-dot-b { width: 7px;   height: 7px;  top: 28%; left: 14%; opacity: 0.30; }
.sh-template_09 .sh-journal-hero-deco .sh-dot-c { width: 18px;  height: 18px; top: 70%; left: 9%;  opacity: 0.14; }
.sh-template_09 .sh-journal-hero-deco .sh-dot-d { width: 9px;   height: 9px;  top: 22%; right: 12%; opacity: 0.22; background: var(--ps-yellow); }
.sh-template_09 .sh-journal-hero-deco .sh-dot-e { width: 14px;  height: 14px; top: 58%; right: 8%;  opacity: 0.32; background: var(--ps-pink); }
.sh-template_09 .sh-journal-hero-deco .sh-dot-f { width: 6px;   height: 6px;  top: 78%; right: 22%; opacity: 0.5;  background: var(--ps-yellow); }
.sh-template_09 .sh-journal-hero-deco .sh-dot-g { width: 10px;  height: 10px; top: 12%; right: 36%; opacity: 0.4;  background: var(--ps-mint); }

.sh-template_09 .sh-journal-breadcrumb {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ps-ink-soft);
  margin-bottom: 32px;
}
.sh-template_09 .sh-journal-breadcrumb a {
  color: var(--ps-violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.sh-template_09 .sh-journal-breadcrumb a:hover { color: var(--ps-violet-soft); }
.sh-template_09 .sh-journal-breadcrumb-sep { opacity: 0.45; }

.sh-template_09 .sh-journal-eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ps-violet-soft);
  margin-bottom: -4px;
  transform: rotate(-3deg);
  transform-origin: left bottom;
}
.sh-template_09 .sh-journal-eyebrow-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.55em;
  color: var(--ps-yellow);
  position: relative;
  top: -0.2em;
}

/* Title — Inter Bold violet, with the homepage's signature marker
   squiggle on the last word. The .ps-marker classes are styled
   globally above (used by the hero too). */
.sh-template_09 .sh-journal-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ps-violet);
  max-width: 18ch;
  margin: 0;
}
/* Bigger marker line proportional to the title size — overrides the
   hero's tighter line height. */
.sh-template_09 .sh-journal-title .ps-marker { padding: 0 0.08em; }
.sh-template_09 .sh-journal-title .ps-marker-word { font-size: 1.05em; line-height: 0.96; }
.sh-template_09 .sh-journal-title .ps-marker-line { bottom: -0.12em; height: 0.42em; }

.sh-template_09 .sh-journal-lede {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--ps-ink-soft);
}

/* --- Sticky TOC chip strip ---------------------------------------------- */
.sh-template_09 .sh-journal-toc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(250, 248, 240);
  border-bottom: 1px solid rgba(63, 45, 122, 0.08);
  padding: 14px 0;
}
@media (max-width: 920px) {
  .sh-template_09 .sh-journal-toc { position: static; top: auto; }
}
.sh-template_09 .sh-journal-toc-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_09 .sh-journal-toc-label {
  font-size: 22px;
  color: var(--ps-violet-soft);
  white-space: nowrap;
  transform: rotate(-2deg);
}
.sh-template_09 .sh-journal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_09 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ps-lavender-soft);
  color: var(--ps-violet);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.14s ease;
}
.sh-template_09 .sh-journal-toc-chip:hover {
  background: var(--ps-yellow);
  border-color: rgba(63, 45, 122, 0.25);
  transform: translateY(-1px);
}

/* --- Body shell — single column, or 2-column with sticky sidebar -------- */
.sh-template_09 .sh-journal-shell {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 64px 0 88px;
}
.sh-template_09 .sh-journal-shell-with-aside {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
@media (max-width: 920px) {
  .sh-template_09 .sh-journal-shell-with-aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Sidebar (sibling pages of a nested page) --------------------------- */
.sh-template_09 .sh-journal-aside {
  position: sticky;
  top: 80px; /* clear sticky TOC */
}
@media (max-width: 920px) {
  .sh-template_09 .sh-journal-aside {
    position: static;
  }
}

.sh-journal-aside-eyebrow {
  display: block;
  color: var(--ps-violet-soft);
  font-size: 22px;
  margin-bottom: 4px;
  transform: rotate(-2deg);
  transform-origin: left bottom;
}

.sh-template_09 .sh-journal-aside-parent {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ps-violet);
  text-decoration: none;
  margin-bottom: 18px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.sh-template_09 .sh-journal-aside-parent:hover {
  border-color: var(--ps-yellow);
}

.sh-template_09 .sh-journal-aside-list {
  list-style: none;
  padding: 0 0 0 14px;
  margin: 0;
  border-left: 2px dashed var(--ps-lavender);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_09 .sh-journal-aside-list li {
  position: relative;
  padding: 8px 0 8px 36px;
  font-size: 14.5px;
  line-height: 1.4;
}
.sh-template_09 .sh-journal-aside-num {
  position: absolute;
  left: 0;
  top: 6px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ps-violet-soft);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ps-lavender);
}
.sh-template_09 .sh-journal-aside-link {
  color: var(--ps-ink-soft);
  text-decoration: none;
  transition: color 0.12s ease;
}
.sh-template_09 .sh-journal-aside-link:hover { color: var(--ps-violet); }
.sh-template_09 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--ps-violet);
  font-weight: 700;
}
.sh-template_09 .sh-journal-aside-current .sh-journal-aside-num {
  background: var(--ps-yellow);
  color: var(--ps-violet);
  border-color: rgba(63, 45, 122, 0.25);
  box-shadow: 0 0 0 4px rgba(244, 215, 93, 0.25);
}

/* --- Body ---------------------------------------------------------------- */
.sh-template_09 .sh-journal-body {
  position: relative;
}
.sh-template_09 .sh-journal-body-inner {
  max-width: 720px;
}
/* Single-column shell centers the body */
.sh-template_09 .sh-journal-shell:not(.sh-journal-shell-with-aside) .sh-journal-body-inner {
  margin: 0 auto;
}

/* Drop-cap intro paragraph */
.sh-template_09 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_09 .sh-journal-intro-prose {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ps-ink);
}
.sh-template_09 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: "Caveat", "Kalam", cursive;
  font-weight: 700;
  font-size: 5.4em;
  line-height: 0.8;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--ps-violet);
}

.sh-template_09 .sh-journal-block {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ps-ink);
  margin: 0 0 1.2em;
}
.sh-template_09 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_09 .sh-journal-block p:last-child { margin-bottom: 0; }

/* Prose links — clean violet underline. The marker-squiggle gesture
   is reserved for the title only so it stays the page's loudest
   handwritten moment. */
.sh-template_09 .sh-journal-body a,
.sh-template_09 .sh-journal-intro-prose a {
  color: var(--ps-violet);
  text-decoration: underline;
  text-decoration-color: rgba(63, 45, 122, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_09 .sh-journal-body a:hover,
.sh-template_09 .sh-journal-intro-prose a:hover {
  color: var(--ps-violet-soft);
  text-decoration-color: var(--ps-yellow);
}

/* Lists — yellow checkmark bullets */
.sh-template_09 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_09 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
}
.sh-template_09 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 18px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'><path d='M2 6 L7 10 L16 2' stroke='%23F4D75D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") no-repeat center / contain;
}
.sh-template_09 .sh-journal-block ol { padding-left: 1.6em; margin: 0 0 1.2em; }
.sh-template_09 .sh-journal-block ol > li { margin-bottom: 0.55em; }
.sh-template_09 .sh-journal-block ol > li::marker { color: var(--ps-violet); font-weight: 700; }

/* Tables */
.sh-template_09 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 15px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ps-shadow);
}
.sh-template_09 .sh-journal-block table th {
  background: var(--ps-violet);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
}
.sh-template_09 .sh-journal-block table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ps-lavender-soft);
}
.sh-template_09 .sh-journal-block table tr:nth-child(even) td { background: var(--ps-cream-warm); }

.sh-template_09 .sh-journal-hr {
  border: 0;
  height: 22px;
  margin: 2.2em 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 22' preserveAspectRatio='none'><path d='M4 11 C 40 1, 90 21, 130 9 S 200 3, 216 11' stroke='%236B5BB0' stroke-width='3' stroke-linecap='round' fill='none' opacity='0.7'/></svg>") center/100% 100% no-repeat;
}

/* --- Section break + numbered headings ---------------------------------- */
.sh-template_09 .sh-journal-section {
  position: relative;
  margin: 64px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_09 .sh-journal-section-divider {
  display: block;
  height: 22px;
  margin-bottom: 24px;
  color: var(--ps-yellow);
  opacity: 0.85;
}
.sh-template_09 .sh-journal-section-divider-svg { width: 220px; height: 22px; }
.sh-template_09 .sh-journal-section-divider-dots {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  height: 22px;
}
.sh-template_09 .sh-journal-section-divider-dots span {
  display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--ps-yellow);
}
.sh-template_09 .sh-journal-section-divider-dots span:nth-child(2) { background: var(--ps-violet-soft); width: 6px; height: 6px; }
.sh-template_09 .sh-journal-section-divider-dots span:nth-child(3) { background: var(--ps-pink); width: 14px; height: 14px; }
.sh-template_09 .sh-journal-section-divider-dots span:nth-child(4) { background: var(--ps-mint); width: 8px; height: 8px; }

.sh-template_09 .sh-journal-section-numeral {
  position: absolute;
  left: -88px;
  top: 22px;
  font-size: 80px;
  line-height: 1;
  color: var(--ps-violet-soft);
  opacity: 0.4;
  transform: rotate(-8deg);
  user-select: none;
  pointer-events: none;
}
@media (max-width: 1100px) {
  .sh-template_09 .sh-journal-section-numeral {
    position: static;
    display: block;
    font-size: 52px;
    margin-bottom: -12px;
    transform: rotate(-4deg);
  }
}

.sh-template_09 .sh-journal-section-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ps-violet);
  margin: 0 0 0.4em;
}
.sh-template_09 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(28px, 3.5vw, 40px); }
.sh-template_09 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 26px; }
.sh-template_09 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 21px; }

/* --- Pull-quote --------------------------------------------------------- */
.sh-template_09 .sh-journal-pull {
  margin: 56px 0;
  display: flex;
  justify-content: flex-start;
}
.sh-template_09 .sh-journal-pull-card {
  position: relative;
  background: var(--ps-lavender);
  border-radius: 16px;
  padding: 40px 48px 36px;
  box-shadow: 0 18px 40px -22px rgba(63, 45, 122, 0.35);
  transform: rotate(-1.2deg);
  max-width: 680px;
  border: 1px solid rgba(63, 45, 122, 0.12);
}
.sh-template_09 .sh-journal-pull-quote-glyph {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 86px;
  line-height: 1;
  color: var(--ps-yellow);
  opacity: 0.55;
}
.sh-template_09 .sh-journal-pull-body {
  font-family: "Caveat", "Kalam", cursive;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  color: var(--ps-violet);
  position: relative;
  z-index: 2;
  margin: 0;
}
.sh-template_09 .sh-journal-pull-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ps-violet-soft);
  opacity: 0.4;
}
.sh-template_09 .sh-journal-pull-corner-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.sh-template_09 .sh-journal-pull-corner-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

/* --- Figures (single in body prose) ------------------------------------
   Brings the homepage's medallion vocabulary across to body figures
   without forcing them into circles (since CMS images can be any
   aspect ratio): a white border ringing the image, a coloured
   "paper" rectangle stacked behind it at a different rotation, and
   the same lavender-tinted drop shadow used on the hero medallion.
   The disc-behind colour rotates by tilt seed so a long page with
   multiple figures feels playful rather than uniform. */
.sh-template_09 .sh-journal-figure {
  position: relative;
  margin: 40px 0;
  padding: 0;
  background: transparent;
}
.sh-template_09 .sh-journal-figure-tilt-0 { transform: rotate(-1.2deg); }
.sh-template_09 .sh-journal-figure-tilt-1 { transform: rotate(1.6deg); }
.sh-template_09 .sh-journal-figure-tilt-2 { transform: rotate(-0.6deg); }
.sh-template_09 .sh-journal-figure-tilt-3 { transform: rotate(2deg); }
.sh-template_09 .sh-journal-figure-tilt-4 { transform: rotate(-1.8deg); }

/* The "paper stacked behind" backdrop. Rendered as a positioned
   pseudo on the figure so the floated image keeps its width
   intrinsic. The translate values shift the backdrop down-right so
   it peeks out from under the photo without clipping. */
.sh-template_09 .sh-journal-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: var(--ps-lavender);
  z-index: 0;
  transform: translate(10px, 12px) rotate(2deg);
  transition: transform 0.22s ease;
}
.sh-template_09 .sh-journal-figure-tilt-0::before { background: var(--ps-lavender);    transform: translate(10px, 12px) rotate(2.2deg); }
.sh-template_09 .sh-journal-figure-tilt-1::before { background: var(--ps-yellow-soft); transform: translate(-12px, 10px) rotate(-2.4deg); }
.sh-template_09 .sh-journal-figure-tilt-2::before { background: var(--ps-pink-soft);   transform: translate(8px, 14px) rotate(1.6deg); }
.sh-template_09 .sh-journal-figure-tilt-3::before { background: var(--ps-mint);        transform: translate(-10px, 12px) rotate(-1.8deg); }
.sh-template_09 .sh-journal-figure-tilt-4::before { background: var(--ps-lavender);    transform: translate(12px, -10px) rotate(2.6deg); }

.sh-template_09 .sh-journal-figure-right {
  float: right;
  max-width: 320px;
  margin: 12px -24px 28px 36px;
}
.sh-template_09 .sh-journal-figure-left {
  float: left;
  max-width: 320px;
  margin: 12px 36px 28px -24px;
}
.sh-template_09 .sh-journal-figure-block {
  margin: 48px auto;
  max-width: 480px;
}
@media (max-width: 920px) {
  .sh-template_09 .sh-journal-figure-right,
  .sh-template_09 .sh-journal-figure-left {
    float: none;
    margin: 36px auto;
    max-width: 100%;
  }
}

.sh-template_09 .sh-journal-figure-frame {
  position: relative;
  z-index: 1;
  background: transparent;
  overflow: hidden;
  border-radius: 14px;
}
.sh-template_09 .sh-journal-figure-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 5px solid #fff;
  box-shadow: 0 18px 36px -22px rgba(63, 45, 122, 0.55);
  background: var(--ps-cream);
}
.sh-template_09 .sh-journal-figure-caption {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  color: var(--ps-violet-soft);
  text-align: center;
  font-family: "Caveat", "Kalam", cursive;
  font-weight: 700;
}
.sh-template_09 .sh-journal-figure-caption span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0;
}
.sh-template_09 .sh-journal-figure-pin { display: none; }

/* --- Staff grid: photo + name + bio per card ---------------------------
   Wantirna's Meet our Staff page interleaves portrait + bio paragraph
   per teacher. The grouped helper bundles them into staff entries; this
   block lays out each entry as a card with the homepage's medallion
   gesture (circle + white border + lavender disc) on top of a clamped
   bio. ~3-4 cards per row at desktop, scalable past 30+ teachers.   */
.sh-template_09 .sh-journal-staff {
  list-style: none;
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 56px 28px;
  align-items: start;
}
.sh-template_09 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.22s ease;
}
.sh-template_09 .sh-journal-staff-tilt-0 { transform: rotate(-1.6deg); }
.sh-template_09 .sh-journal-staff-tilt-1 { transform: rotate(1.4deg); }
.sh-template_09 .sh-journal-staff-tilt-2 { transform: rotate(-0.8deg); }
.sh-template_09 .sh-journal-staff-tilt-3 { transform: rotate(2deg); }
.sh-template_09 .sh-journal-staff-card:hover { transform: rotate(0deg) translateY(-4px); }

.sh-template_09 .sh-journal-staff-portrait {
  position: relative;
  width: clamp(140px, 60%, 168px);
  margin-bottom: 14px;
}
.sh-template_09 .sh-journal-staff-portrait::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) translateX(8px);
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--ps-lavender);
  z-index: 0;
}
.sh-template_09 .sh-journal-staff-tilt-1 .sh-journal-staff-portrait::before { background: var(--ps-yellow-soft); transform: translateX(-50%) translateX(-10px); }
.sh-template_09 .sh-journal-staff-tilt-2 .sh-journal-staff-portrait::before { background: var(--ps-pink-soft); }
.sh-template_09 .sh-journal-staff-tilt-3 .sh-journal-staff-portrait::before { background: var(--ps-mint); transform: translateX(-50%) translateX(8px); }

.sh-template_09 .sh-journal-staff-portrait .sh-journal-figure-grid {
  position: relative;
  z-index: 1;
}
.sh-template_09 .sh-journal-staff-portrait .sh-journal-figure-grid::before { display: none; }
.sh-template_09 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: transparent;
  overflow: visible;
}
.sh-template_09 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px -10px rgba(63, 45, 122, 0.55);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--ps-cream);
}
.sh-template_09 .sh-journal-staff-card:hover .sh-journal-staff-portrait .sh-journal-figure-img {
  box-shadow: 0 14px 24px -10px rgba(63, 45, 122, 0.65);
}
.sh-template_09 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-size: 22px;
  margin-top: 12px;
}

.sh-template_09 .sh-journal-staff-bio {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ps-ink);
  opacity: 0.85;
  text-align: left;
  width: 100%;
}
.sh-template_09 .sh-journal-staff-bio p {
  margin: 0 0 0.5em;
}
.sh-template_09 .sh-journal-staff-bio p:last-child { margin-bottom: 0; }

/* --- Portrait grid (3+ consecutive captioned figures) -------------------
   Lone-figure runs (no bios) still get the original tighter medallion
   grid. The "Meet our Staff" pattern (figure + bio) flows through
   .sh-journal-staff above instead. */
.sh-template_09 .sh-journal-portraits {
  list-style: none;
  margin: 48px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 36px 18px;
  justify-items: center;
}
.sh-template_09 .sh-journal-portraits-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sh-template_09 .sh-journal-portraits-tilt-0 { transform: rotate(-2deg); }
.sh-template_09 .sh-journal-portraits-tilt-1 { transform: rotate(1.6deg); }
.sh-template_09 .sh-journal-portraits-tilt-2 { transform: rotate(-1deg); }
.sh-template_09 .sh-journal-portraits-tilt-3 { transform: rotate(2deg); }

/* Medallion: lavender disc backdrop offset by a few pixels, image
   layered on top as a circle with a thick white ring. Mirrors the
   homepage's .sh-hero-medallion-disc + .sh-hero-medallion-img stack. */
.sh-template_09 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  transform: none;
  transition: transform 0.22s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_09 .sh-journal-figure-grid::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) translateX(8px);
  width: clamp(110px, 100%, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--ps-lavender);
  z-index: 0;
}
.sh-template_09 .sh-journal-portraits-tilt-1 .sh-journal-figure-grid::before { background: var(--ps-yellow-soft); transform: translateX(-50%) translateX(-10px); }
.sh-template_09 .sh-journal-portraits-tilt-2 .sh-journal-figure-grid::before { background: var(--ps-pink-soft); }
.sh-template_09 .sh-journal-portraits-tilt-3 .sh-journal-figure-grid::before { background: var(--ps-mint); transform: translateX(-50%) translateX(8px); }

.sh-template_09 .sh-journal-figure-grid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 5;
}
.sh-template_09 .sh-journal-figure-grid .sh-journal-figure-frame {
  position: relative;
  z-index: 1;
  width: clamp(110px, 100%, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: transparent;
  overflow: visible;
}
.sh-template_09 .sh-journal-figure-grid .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px -10px rgba(63, 45, 122, 0.55);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--ps-cream);
}
.sh-template_09 .sh-journal-figure-grid:hover .sh-journal-figure-img {
  box-shadow: 0 14px 24px -10px rgba(63, 45, 122, 0.65);
}
.sh-template_09 .sh-journal-figure-grid .sh-journal-figure-caption {
  position: relative;
  z-index: 2;
  font-size: 19px;
  margin-top: 12px;
  line-height: 1.1;
}

/* --- Empty page fallback ------------------------------------------------- */
.sh-template_09 .sh-journal-empty { padding: 80px 0; text-align: center; }
.sh-template_09 .sh-journal-empty-note {
  font-size: 32px;
  color: var(--ps-violet-soft);
  transform: rotate(-2deg);
  display: inline-block;
}

/* --- "Keep exploring" — soft scrapbook panel (was corkboard) ------------ */
.sh-template_09 .sh-journal-wall {
  position: relative;
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 88% 22%, var(--ps-yellow-soft) 0%, transparent 36%),
    radial-gradient(circle at 8% 78%, var(--ps-pink-soft) 0%, transparent 38%),
    linear-gradient(180deg, var(--ps-lavender-soft) 0%, var(--ps-lavender) 100%);
  border-top: 1px dashed rgba(63, 45, 122, 0.18);
  overflow: hidden;
}
.sh-template_09 .sh-journal-wall-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sh-template_09 .sh-journal-wall-deco .sh-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--ps-violet);
  opacity: 0.18;
}
.sh-template_09 .sh-journal-wall-deco .sh-dot-a { width: 10px; height: 10px; top: 16%; left: 5%; opacity: 0.22; }
.sh-template_09 .sh-journal-wall-deco .sh-dot-b { width: 18px; height: 18px; top: 70%; left: 12%; opacity: 0.14; }
.sh-template_09 .sh-journal-wall-deco .sh-dot-c { width: 8px;  height: 8px;  top: 24%; right: 8%; background: var(--ps-yellow); opacity: 0.5; }
.sh-template_09 .sh-journal-wall-deco .sh-dot-d { width: 14px; height: 14px; top: 64%; right: 18%; background: var(--ps-pink); opacity: 0.5; }

.sh-template_09 .sh-journal-wall-header {
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
  text-align: left;
}
.sh-template_09 .sh-journal-wall-heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ps-violet);
  line-height: 1.05;
  margin: 0;
}
.sh-template_09 .sh-journal-wall-script {
  font-size: 0.6em;
  color: var(--ps-violet-soft);
  font-weight: 700;
  transform: rotate(-3deg);
  display: inline-block;
  margin-top: 6px;
}
.sh-template_09 .sh-journal-wall-sub {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ps-ink-soft);
  margin: 12px 0 0;
  max-width: 56ch;
}

.sh-template_09 .sh-journal-wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px 24px;
  position: relative;
  z-index: 2;
}

.sh-template_09 .sh-journal-wall-card {
  position: relative;
  background: #fff;
  padding: 24px 22px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 36px -22px rgba(63, 45, 122, 0.42);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid var(--ps-lavender);
}
.sh-template_09 .sh-journal-wall-card[data-tilt-seed="0"] { transform: rotate(-1.2deg); }
.sh-template_09 .sh-journal-wall-card[data-tilt-seed="1"] { transform: rotate(1.4deg); background: var(--ps-cream-warm); }
.sh-template_09 .sh-journal-wall-card[data-tilt-seed="2"] { transform: rotate(-0.6deg); }
.sh-template_09 .sh-journal-wall-card[data-tilt-seed="3"] { transform: rotate(1.8deg); background: var(--ps-mint-soft); }
.sh-template_09 .sh-journal-wall-card[data-tilt-seed="4"] { transform: rotate(-2deg); background: var(--ps-pink-soft); }
.sh-template_09 .sh-journal-wall-card:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 26px 44px -22px rgba(63, 45, 122, 0.5);
  border-color: var(--ps-yellow);
}

.sh-template_09 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.sh-template_09 .sh-journal-wall-card-eyebrow {
  font-size: 22px;
  color: var(--ps-violet-soft);
  line-height: 1;
}
.sh-template_09 .sh-journal-wall-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ps-violet);
}
.sh-template_09 .sh-journal-wall-card-summary {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ps-ink);
  opacity: 0.78;
  margin-top: 4px;
}
.sh-template_09 .sh-journal-wall-card-cta {
  margin-top: 10px;
  font-size: 22px;
  color: var(--ps-violet);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  transform: rotate(-1.5deg);
  transform-origin: left bottom;
  transition: transform 0.18s ease;
}
.sh-template_09 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  transform: rotate(-1.5deg) translateX(4px);
}

/* --- Sign-off ----------------------------------------------------------- */
.sh-template_09 .sh-journal-signoff {
  text-align: center;
  padding: 56px 0 64px;
  color: var(--ps-violet-soft);
}
.sh-template_09 .sh-journal-signoff-mark {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 8px;
  color: var(--ps-yellow);
}
.sh-template_09 .sh-journal-signoff .sh-caveat { font-size: 22px; opacity: 0.7; }

/* --- Inner-page nav dropdowns (homepage uses anchor scrolls) ------------ */
.sh-template_09 .sh-nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.sh-template_09 .sh-nav-dropdown-btn {
  background: transparent; border: 0; font: inherit;
  color: var(--ps-violet); font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 4px;
}
.sh-template_09 .sh-nav-dropdown-btn:hover { color: var(--ps-violet-soft); }
.sh-template_09 .sh-nav-chevron { width: 10px; height: 6px; transition: transform 0.18s ease; }
.sh-template_09 .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron { transform: rotate(180deg); }
.sh-template_09 .sh-nav-submenu {
  position: absolute; top: calc(100% + 8px); left: -8px;
  background: #fff; border-radius: 14px; box-shadow: var(--ps-shadow);
  padding: 8px; min-width: 240px; z-index: 50;
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--ps-lavender-soft);
}
.sh-template_09 .sh-nav-submenu.hidden { display: none; }
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown { display: block; width: 100%; }
.sh-template_09 .sh-nav-submenu .sh-nav-link,
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown-btn {
  padding: 8px 12px; border-radius: 10px; font-weight: 500; font-size: 14px;
  color: var(--ps-ink); width: 100%; text-align: left; display: block;
}
.sh-template_09 .sh-nav-submenu .sh-nav-link:hover,
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown-btn:hover {
  background: var(--ps-lavender-soft); color: var(--ps-violet);
}
/* Nested submenus fly out to the right of the parent panel instead
   of stacking below — otherwise sub-pages render as a disconnected
   second card. Items inside the parent submenu need a row layout
   so the chevron can sit on the right and pivot to a "→" rather
   than a downward "v". */
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown-btn {
  display: flex; align-items: center; justify-content: space-between;
}
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown-btn .sh-nav-chevron {
  transform: rotate(-90deg);
  width: 8px; height: 5px;
}
.sh-template_09 .sh-nav-submenu .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(-90deg);
}
.sh-template_09 .sh-nav-dropdown-nested .sh-nav-submenu {
  top: -9px;
  left: calc(100% + 8px);
}

/* --- Mobile tightening --------------------------------------------------- */
@media (max-width: 720px) {
  .sh-template_09 .sh-journal-hero { padding: 56px 0 64px; }
  .sh-template_09 .sh-journal-eyebrow { font-size: 22px; }
  .sh-template_09 .sh-journal-title { font-size: 40px; max-width: none; }
  .sh-template_09 .sh-journal-shell { padding: 40px 0 64px; }
  .sh-template_09 .sh-journal-section { margin: 48px 0 16px; }
  .sh-template_09 .sh-journal-wall { padding: 56px 0 72px; }
  .sh-template_09 .sh-journal-pull-card { padding: 28px 28px 24px; }
  .sh-template_09 .sh-journal-toc { padding: 10px 0; }
  .sh-template_09 .sh-journal-toc-label { font-size: 16px; }
  .sh-template_09 .sh-journal-portraits { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px 16px; }
}

/* --- Widgets (newsletters, announcements, events, etc.) ---------------- */
.sh-template_09 .sh-journal-widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.sh-template_09 .sh-journal-widget {
  background: #fff;
  border: 1px solid var(--ps-lavender-soft);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--ps-shadow);
}
