/* ==========================================================================
   Chalcot Lodge Primary School — "Living tree"
   Everything scoped under .sh-template_01 so nothing leaks into other sites.
   ========================================================================== */

.sh-template_01 {
  /* Page + card cream tones — tuned warmer + more taupe for the editorial feel. */
  --cl-cream-page: #E6E1D0;
  --cl-cream: #F6F0E1;
  --cl-cream-deep: #E0D8C2;

  --cl-ink: #2D3520;
  --cl-ink-soft: #5E6549;

  /* Moss family replaces the old deep forest. Warmer, more olive.
     Deep / bright / moss are derived from --cl-forest via color-mix
     so per-website primary overrides (which only swap --cl-forest)
     cascade to the dark + light variants too, keeping the palette
     cohesive when an admin customizes the brand color. */
  --cl-forest: #5E6B3C;
  --cl-forest-deep: color-mix(in srgb, var(--cl-forest) 67%, black);
  --cl-forest-bright: color-mix(in srgb, var(--cl-forest) 70%, white);
  --cl-moss: color-mix(in srgb, var(--cl-forest) 70%, white);

  /* Rainbow chips — still the stained-glass window panels */
  --cl-chip-red: #C1472F;
  --cl-chip-amber: #D99A3E;
  --cl-chip-blue: #4470A0;
  --cl-chip-green: #5E8A52;

  --cl-radius: 20px;
  --cl-radius-sm: 12px;
  --cl-shadow: 0 18px 44px rgba(47, 55, 28, 0.10);
  --cl-shadow-soft: 0 8px 22px rgba(47, 55, 28, 0.07);
  --cl-shadow-card: 0 20px 50px rgba(47, 55, 28, 0.08), 0 2px 6px rgba(47, 55, 28, 0.04);

  --cl-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cl-serif: "Fraunces", "Tiempos", "Charter", Georgia, serif;

  background: var(--cl-cream-page);
  color: var(--cl-ink);
  font-family: var(--cl-font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sh-template_01 * { box-sizing: border-box; }
.sh-template_01 a { color: inherit; text-decoration: none; }
.sh-template_01 img, .sh-template_01 svg { display: block; max-width: 100%; }

/* Body wrapper background — the static_home layout sets .static-home on body */
body.static-home-template_01 { background: var(--cl-cream-page); }

/* Display serif for all major headings */
.sh-template_01 .sh-section-title,
.sh-template_01 .sh-hero-title,
.sh-template_01 .sh-value-title,
.sh-template_01 .sh-quicklink-title {
  font-family: var(--cl-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Skip link */
.sh-template_01 .sh-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cl-forest);
  color: #fff;
  padding: 12px 16px;
  z-index: 100;
}
.sh-template_01 .sh-skip-link:focus { left: 16px; top: 16px; }

/* ---------- Acknowledgement of Country (header strip) ---------- */
.sh-template_01 .sh-ack-header {
  background: var(--cl-forest);
  color: #F3EEDD;
  padding: 14px 20px;
  text-align: center;
}
.sh-template_01 .sh-ack-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-template_01 .acknowledgement-of-country.ack-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sh-template_01 .acknowledgement-of-country .ack-heading {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin: 0;
}
.sh-template_01 .acknowledgement-of-country .ack-body {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 820px;
}

/* ---------- Nav ---------- */
.sh-template_01 .sh-nav {
  background: var(--cl-cream);
  border-bottom: 1px solid rgba(27, 58, 27, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(8px);
}
.sh-template_01 .sh-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sh-template_01 .sh-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sh-template_01 .sh-nav-logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
/* Mobile hamburger + drawer. On desktop the drawer is `display: contents`,
   so nav-links and nav-actions flow inside .sh-nav-inner as if unwrapped. */
.sh-template_01 .sh-nav-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(47, 55, 28, 0.18);
  border-radius: 10px;
  padding: 8px;
  color: var(--cl-forest);
  cursor: pointer;
  margin-left: auto;
}
.sh-template_01 .sh-nav-menu-btn:hover { background: var(--cl-cream-deep); }
.sh-template_01 .sh-nav-menu-icon { width: 24px; height: 24px; display: block; }
.sh-template_01 .sh-nav-menu-line { transition: transform 220ms ease, opacity 160ms ease; transform-origin: 12px 12px; }
.sh-template_01 .sh-nav-open .sh-nav-menu-line-1 { transform: translate(0, 5px) rotate(45deg); }
.sh-template_01 .sh-nav-open .sh-nav-menu-line-2 { opacity: 0; }
.sh-template_01 .sh-nav-open .sh-nav-menu-line-3 { transform: translate(0, -5px) rotate(-45deg); }

.sh-template_01 .sh-nav-drawer { display: contents; }

.sh-template_01 .sh-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.sh-template_01 .sh-nav-links > li { position: relative; }

.sh-template_01 .sh-nav-link,
.sh-template_01 .sh-nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cl-ink);
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.sh-template_01 .sh-nav-link:hover,
.sh-template_01 .sh-nav-dropdown-btn:hover,
.sh-template_01 .sh-nav-dropdown[aria-expanded="true"] > .sh-nav-dropdown-btn {
  background: var(--cl-cream-deep);
  color: var(--cl-forest);
}
.sh-template_01 .sh-nav-chevron {
  width: 10px;
  height: 6px;
  transition: transform 150ms ease;
}
.sh-template_01 .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel (top-level → cream card under the nav) */
.sh-template_01 .sh-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(27, 58, 27, 0.08);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
  padding: 8px;
  list-style: none;
  z-index: 30;
}
.sh-template_01 .sh-nav-submenu.hidden { display: none; }
.sh-template_01 .sh-nav-submenu li { position: relative; }
.sh-template_01 .sh-nav-submenu .sh-nav-link,
.sh-template_01 .sh-nav-submenu .sh-nav-dropdown-btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

/* Nested submenus (Curriculum → STEM → …) flyout to the side */
.sh-template_01 .sh-nav-dropdown-nested > .sh-nav-submenu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 4px;
}
.sh-template_01 .sh-nav-dropdown-nested .sh-nav-chevron {
  transform: rotate(-90deg);
}
.sh-template_01 .sh-nav-dropdown-nested .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(-90deg);
}
.sh-template_01 .sh-nav-actions { display: flex; align-items: center; gap: 10px; }
.sh-template_01 .sh-nav-compass,
.sh-template_01 .sh-nav-auth {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(27, 58, 27, 0.18);
  background: transparent;
  color: var(--cl-forest);
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}
.sh-template_01 .sh-nav-compass:hover,
.sh-template_01 .sh-nav-auth:hover {
  background: var(--cl-forest);
  color: #fff;
  border-color: var(--cl-forest);
}

/* Signed-in user pill + dropdown */
.sh-template_01 .sh-nav-user { position: relative; }
.sh-template_01 .sh-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 9999px;
  border: 1px solid rgba(27, 58, 27, 0.18);
  background: #fff;
  color: var(--cl-forest);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.sh-template_01 .sh-nav-user-btn:hover {
  border-color: var(--cl-forest);
  box-shadow: 0 2px 10px rgba(27, 58, 27, 0.08);
}
.sh-template_01 .sh-nav-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--cl-cream-deep);
  color: var(--cl-forest);
  flex-shrink: 0;
  overflow: hidden;
}
.sh-template_01 .sh-nav-user-avatar svg { width: 18px; height: 18px; }
.sh-template_01 .sh-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.sh-template_01 .sh-nav-user-greeting { font-size: 14px; letter-spacing: -0.005em; }
.sh-template_01 .sh-nav-user-btn .sh-nav-chevron {
  width: 10px; height: 6px;
  color: var(--cl-ink-soft);
  transition: transform 150ms ease;
}
.sh-template_01 .sh-nav-user-btn[aria-expanded="true"] .sh-nav-chevron { transform: rotate(180deg); }

.sh-template_01 .sh-nav-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(27, 58, 27, 0.08);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
  padding: 8px;
  z-index: 30;
}
.sh-template_01 .sh-nav-user-menu.hidden { display: none; }
.sh-template_01 .sh-nav-user-identity {
  padding: 12px 12px 14px;
  margin: 0 0 6px;
  border-bottom: 1px solid rgba(27, 58, 27, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sh-template_01 .sh-nav-user-identity-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--cl-cream-deep);
  color: var(--cl-forest);
  flex-shrink: 0;
  overflow: hidden;
}
.sh-template_01 .sh-nav-user-identity-avatar svg { width: 22px; height: 22px; }
.sh-template_01 .sh-nav-user-identity-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sh-template_01 .sh-nav-user-identity-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cl-forest);
  letter-spacing: -0.005em;
}
.sh-template_01 .sh-nav-user-identity-email {
  font-size: 12.5px;
  color: var(--cl-ink-soft);
  word-break: break-all;
}
.sh-template_01 .sh-nav-user-link,
.sh-template_01 .sh-nav-user-signout {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--cl-ink);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}
.sh-template_01 .sh-nav-user-link:hover,
.sh-template_01 .sh-nav-user-signout:hover {
  background: var(--cl-cream-deep);
  color: var(--cl-forest);
}
.sh-template_01 .sh-nav-user-signout-form { margin: 0; }

/* ---------- Main ---------- */
.sh-template_01 .sh-main {
  position: relative;
}


/* ---------- Shared card system ---------- */
.sh-template_01 .sh-card {
  background: var(--cl-cream);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow-card);
  position: relative;
  overflow: hidden;
}

/* Publication cards (announcements/newsletters widgets) pick up the moss-green accent. */
.sh-template_01 .pub-card { --pub-accent: var(--cl-forest); }
.sh-template_01 .pub-see-all { color: var(--cl-forest); }

/* ---------- Hero — split-panel card on moss-green ---------- */
.sh-template_01 .sh-hero {
  padding: 40px 24px 48px;
}
.sh-template_01 .sh-hero-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cl-forest);
  color: var(--cl-cream);
  padding: 36px 40px 40px;
}
.sh-template_01 .sh-hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.sh-template_01 .sh-hero-topbar-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 240, 225, 0.85);
  font-weight: 500;
}
.sh-template_01 .sh-hero-topbar-kicker {
  font-weight: 700;
  letter-spacing: 0.12em;
}
.sh-template_01 .sh-hero-topbar-rule {
  width: 48px;
  height: 1px;
  background: rgba(246, 240, 225, 0.4);
  display: inline-block;
}
.sh-template_01 .sh-hero-topbar-motto {
  opacity: 0.75;
}
.sh-template_01 .sh-hero-mark {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: var(--cl-cream);
  color: var(--cl-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-template_01 .sh-hero-mark svg {
  width: 32px;
  height: 44px;
}

.sh-template_01 .sh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch;
  min-height: 460px;
}
.sh-template_01 .sh-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 12px 0 12px 8px;
}
.sh-template_01 .sh-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 240, 225, 0.85);
  margin: 0;
  font-weight: 600;
}
.sh-template_01 .sh-hero-title {
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cl-cream);
  margin: 0;
}
.sh-template_01 .sh-hero-lede {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(246, 240, 225, 0.88);
  margin: 0;
  max-width: 44ch;
  font-family: var(--cl-font);
}
.sh-template_01 .sh-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.sh-template_01 .sh-hero-media {
  border-radius: var(--cl-radius-sm);
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.sh-template_01 .sh-hero-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .sh-template_01 .sh-hero { padding: 20px 16px 32px; }
  .sh-template_01 .sh-hero-card { padding: 24px 22px 28px; }
  .sh-template_01 .sh-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }
  .sh-template_01 .sh-hero-topbar { margin-bottom: 28px; }
  .sh-template_01 .sh-hero-topbar-motto { display: none; }
  .sh-template_01 .sh-hero-image { min-height: 320px; }
}

/* ---------- Buttons ---------- */
.sh-template_01 .sh-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
  cursor: pointer;
}
/* Cream-on-moss button — the hero sits on moss so the primary CTA pops as cream */
.sh-template_01 .sh-btn-primary {
  background: var(--cl-cream);
  color: var(--cl-forest-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.sh-template_01 .sh-btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}
.sh-template_01 .sh-btn-ghost {
  background: transparent;
  color: var(--cl-cream);
  border-color: rgba(246, 240, 225, 0.5);
}
.sh-template_01 .sh-btn-ghost:hover {
  background: rgba(246, 240, 225, 0.12);
  border-color: var(--cl-cream);
}

/* ---------- Quick links ---------- */
.sh-template_01 .sh-quicklinks {
  padding: 48px 24px 20px;
  position: relative;
}
.sh-template_01 .sh-quicklinks-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.sh-template_01 .sh-quicklink {
  background: var(--cl-cream);
  padding: 36px;
  border-left: 4px solid var(--cl-chip-amber);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sh-template_01 .sh-quicklink-current { border-left-color: var(--cl-chip-blue); }
.sh-template_01 .sh-quicklink-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cl-forest);
  font-weight: 700;
}
.sh-template_01 .sh-quicklink-title {
  font-size: 28px;
  margin: 6px 0 0;
  color: var(--cl-forest);
  letter-spacing: -0.015em;
}
.sh-template_01 .sh-quicklink-intro {
  color: var(--cl-ink-soft);
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* Prospective — curriculum program list */
.sh-template_01 .sh-program-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sh-template_01 .sh-program { border-top: 1px solid rgba(47, 55, 28, 0.08); }
.sh-template_01 .sh-program:first-child { border-top: 0; }
.sh-template_01 .sh-program-link {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  color: inherit;
  transition: color 150ms ease;
}
.sh-template_01 .sh-program-link:hover { color: var(--cl-forest); }
.sh-template_01 .sh-program-link:hover .sh-program-arrow { transform: translateX(4px); }
.sh-template_01 .sh-program-label {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--cl-forest);
  letter-spacing: -0.01em;
}
.sh-template_01 .sh-program-line {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--cl-ink-soft);
}
.sh-template_01 .sh-program-arrow {
  font-size: 18px;
  color: var(--cl-forest);
  transition: transform 200ms ease;
}

.sh-template_01 .sh-quicklink-cta { margin-top: auto; padding-top: 12px; }
.sh-template_01 .sh-quicklink-btn-primary {
  background: var(--cl-forest);
  color: var(--cl-cream);
  padding: 12px 22px;
  font-size: 14.5px;
  box-shadow: 0 6px 16px rgba(47, 55, 28, 0.15);
}
.sh-template_01 .sh-quicklink-btn-primary:hover {
  background: var(--cl-forest-deep);
  transform: translateY(-1px);
}

/* Current — term dates */
.sh-template_01 .sh-terms-block {
  padding: 16px 0 4px;
}
.sh-template_01 .sh-terms-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 10px;
}
.sh-template_01 .sh-terms-heading {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cl-forest);
  font-weight: 700;
}
.sh-template_01 .sh-terms-year {
  font-size: 12px;
  color: var(--cl-ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.sh-template_01 .sh-terms {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-template_01 .sh-term {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(47, 55, 28, 0.08);
  align-items: baseline;
}
.sh-template_01 .sh-term:first-child { border-top: 0; padding-top: 4px; }
.sh-template_01 .sh-term-label {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--cl-forest);
}
.sh-template_01 .sh-term-range {
  font-size: 14.5px;
  color: var(--cl-ink);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_01 .sh-term-dash {
  color: var(--cl-ink-soft);
  opacity: 0.7;
}

/* Current — parent portal buttons */
.sh-template_01 .sh-portal-buttons {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sh-template_01 .sh-portal-btn {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(47, 55, 28, 0.1);
  border-radius: var(--cl-radius-sm);
  color: var(--cl-ink);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.sh-template_01 .sh-portal-btn:hover {
  border-color: var(--cl-forest);
  box-shadow: 0 8px 20px rgba(47, 55, 28, 0.08);
  transform: translateY(-1px);
}
/* Compass portal button — branded with the official Compass blue + strap logo */
.sh-template_01 .sh-portal-btn-compass {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  background: #1286f9;
  border-color: #1286f9;
  padding: 18px 22px;
  min-height: 72px;
}
.sh-template_01 .sh-portal-btn-compass:hover {
  background: #0f6fd3;
  border-color: #0f6fd3;
  box-shadow: 0 8px 20px rgba(18, 134, 249, 0.28);
  transform: translateY(-1px);
}
.sh-template_01 .sh-portal-logo-compass {
  height: 30px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Kidsoft portal button — branded with the official Kidsoft navy + dot mark */
.sh-template_01 .sh-portal-btn-kidsoft {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  background: #2C3863;
  border-color: #2C3863;
  padding: 18px 22px;
  min-height: 72px;
}
.sh-template_01 .sh-portal-btn-kidsoft:hover {
  background: #212B4D;
  border-color: #212B4D;
  box-shadow: 0 8px 20px rgba(44, 56, 99, 0.28);
  transform: translateY(-1px);
}
.sh-template_01 .sh-portal-logo-kidsoft {
  height: 36px;
  width: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .sh-template_01 .sh-quicklinks-inner { grid-template-columns: 1fr; }
  .sh-template_01 .sh-program-link { grid-template-columns: 100px 1fr auto; gap: 12px; }
}
@media (max-width: 520px) {
  .sh-template_01 .sh-program-link { grid-template-columns: 1fr auto; }
  .sh-template_01 .sh-program-label { grid-column: 1 / -1; }
  .sh-template_01 .sh-program-line { grid-column: 1 / 2; }
}
.sh-template_01 .sh-link-arrow {
  font-weight: 600;
  color: var(--cl-forest);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 150ms ease;
}
.sh-template_01 .sh-link-arrow:hover { opacity: 0.7; }

/* ---------- Section titles ---------- */
.sh-template_01 .sh-section-kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cl-forest);
  font-weight: 700;
  margin: 0 0 14px;
}
.sh-template_01 .sh-section-title {
  font-size: clamp(34px, 4.2vw, 52px);
  color: var(--cl-forest);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.05;
}

/* Motion latch — hides .sh-reveal / .sh-hero-enter until GSAP has armed them.
   The inline script drops .sh-motion if GSAP fails or reduce-motion is set,
   so no failure path leaves content invisible. */
.sh-template_01.sh-motion .sh-reveal,
.sh-template_01.sh-motion .sh-hero-enter { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .sh-template_01 .sh-reveal,
  .sh-template_01 .sh-hero-enter { opacity: 1 !important; transform: none !important; }
}

/* ---------- Our values ---------- */
.sh-template_01 .sh-values {
  padding: 88px 24px 72px;
  position: relative;
}
.sh-template_01 .sh-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.sh-template_01 .sh-values-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  flex: 0 0 auto;
}
.sh-template_01 .sh-values-kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cl-forest);
  font-weight: 700;
  margin: 0 0 14px;
}
/* Pinned two-column duet: left copy crossfades between values while the
   right-side photo stack slides up (card-stack pattern). */
.sh-template_01 .sh-values-scroller {
  position: relative;
  height: 170vh;
}
.sh-template_01 .sh-values-sticky {
  position: sticky;
  top: 6vh;
  height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 3vh;
}
.sh-template_01 .sh-values-duet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  flex: 1;
  min-height: 0;
  align-items: stretch;
}

/* ---------- Left — value copy, absolute-stacked, crossfades on scroll ---------- */
.sh-template_01 .sh-values-copy-stack {
  position: relative;
  height: 100%;
}
.sh-template_01 .sh-value-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 48ch;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.sh-template_01 .sh-value-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cl-ink-soft);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.sh-template_01 .sh-value-number {
  font-weight: 700;
  letter-spacing: 0.2em;
}
.sh-template_01 .sh-value-rule {
  width: 32px;
  height: 1px;
  background: rgba(45, 53, 32, 0.28);
}
.sh-template_01 .sh-value-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 9999px;
  background: var(--value-color);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sh-template_01 .sh-value-title {
  margin: 0;
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cl-ink);
}
.sh-template_01 .sh-value-body {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--cl-ink-soft);
  max-width: 44ch;
}

/* ---------- Right — photo card stack ---------- */
.sh-template_01 .sh-values-stack {
  list-style: none;
  margin: 0;
  /* Top 9vh reserved as a peek zone: 3 passed cards × 3vh per level. */
  padding: 9vh 0 0;
  position: relative;
  height: 100%;
}
.sh-template_01 .sh-value-card,
body.admin-edit-mode .sh-template_01 .sh-value-card {
  /* The admin-edit-mode global rule (application.tailwind.css) applies
     `position: relative` to every [data-edit="slide"] so the "✎ Click
     to edit" ::after pill has a containing block. That broad rule
     overrides the template-level absolute positioning the value-stack
     scroll animation depends on. We re-assert absolute here with the
     same selector specificity (body.admin-edit-mode + 2 classes) so
     admin sessions get the stack behavior instead of a flat column. */
  position: absolute;
  left: 0;
  right: 0;
  top: 9vh;
  bottom: 0;
  border-radius: var(--cl-radius);
  overflow: hidden;
  background: var(--cl-cream-deep);
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  /* Fan pivot: rotations are centred on the bottom of each card so the
     top edge swings out as cards stack into the peek zone. */
  transform-origin: 50% 100%;
  will-change: transform;
  isolation: isolate;
}
.sh-template_01 .sh-value-card .sh-value-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile / no-JS fallback — stack collapses into a simple list. */
.sh-template_01 .sh-values-no-pin .sh-values-scroller { height: auto; }
.sh-template_01 .sh-values-no-pin .sh-values-sticky {
  position: static;
  height: auto;
}
.sh-template_01 .sh-values-no-pin .sh-values-duet {
  grid-template-columns: 1fr;
  gap: 32px;
  height: auto;
}
.sh-template_01 .sh-values-no-pin .sh-values-copy-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: auto;
}
.sh-template_01 .sh-values-no-pin .sh-value-copy {
  position: static;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
}
.sh-template_01 .sh-values-no-pin .sh-values-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  height: auto;
  overflow: visible;
}
.sh-template_01 .sh-values-no-pin .sh-value-card {
  position: static;
  top: auto;
  bottom: auto;
  transform: none;
  min-height: 280px;
}

@media (max-width: 900px) {
  .sh-template_01 .sh-values-scroller { height: auto; }
  .sh-template_01 .sh-values-sticky { position: static; height: auto; }
  /* Flatten copy-stack + image-stack into a single flex column on mobile and
     interleave text/image so each value's copy sits directly above its image. */
  .sh-template_01 .sh-values-duet {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 24px;
    height: auto;
  }
  .sh-template_01 .sh-values-copy-stack,
  .sh-template_01 .sh-values-stack {
    display: contents;
  }
  .sh-template_01 .sh-value-copy {
    position: static;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    margin: 0;
  }
  .sh-template_01 .sh-value-card {
    position: static;
    top: auto;
    bottom: auto;
    transform: none;
    min-height: 220px;
    margin: 0 0 8px;
  }
  .sh-template_01 .sh-values-copy-stack .sh-value-copy:nth-child(1) { order: 1; }
  .sh-template_01 .sh-values-stack       .sh-value-card:nth-child(1) { order: 2; }
  .sh-template_01 .sh-values-copy-stack .sh-value-copy:nth-child(2) { order: 3; }
  .sh-template_01 .sh-values-stack       .sh-value-card:nth-child(2) { order: 4; }
  .sh-template_01 .sh-values-copy-stack .sh-value-copy:nth-child(3) { order: 5; }
  .sh-template_01 .sh-values-stack       .sh-value-card:nth-child(3) { order: 6; }
  .sh-template_01 .sh-values-copy-stack .sh-value-copy:nth-child(4) { order: 7; }
  .sh-template_01 .sh-values-stack       .sh-value-card:nth-child(4) { order: 8; }
}

/* ---------- Enquire ---------- */
.sh-template_01 .sh-enquire {
  padding: 48px 24px 20px;
}
.sh-template_01 .sh-enquire-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px;
}
.sh-template_01 .sh-enquire-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.sh-template_01 .sh-enquire-copy p {
  color: var(--cl-ink-soft);
  font-size: 17px;
  max-width: 440px;
  margin: 0;
}
/* The contact form partial ships its own card + tailwind — leave it, just give space */
.sh-template_01 .sh-enquire-form { min-width: 0; }
@media (max-width: 900px) {
  .sh-template_01 .sh-enquire-card { padding: 32px 22px; }
  .sh-template_01 .sh-enquire-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Find us ---------- */
.sh-template_01 .sh-findus { padding: 48px 24px 72px; }
.sh-template_01 .sh-findus-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px;
}
.sh-template_01 .sh-findus-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.sh-template_01 .sh-findus-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.sh-template_01 .sh-findus-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cl-ink-soft);
  max-width: 46ch;
}

/* Details — labelled key/value rows */
.sh-template_01 .sh-findus-details {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.sh-template_01 .sh-findus-detail dt {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cl-forest);
  font-weight: 700;
  margin: 0 0 6px;
  opacity: 0.75;
}
.sh-template_01 .sh-findus-detail dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--cl-ink);
}
.sh-template_01 .sh-findus-detail dd a {
  color: var(--cl-ink);
  border-bottom: 1px solid rgba(47, 55, 28, 0.25);
  transition: border-color 150ms ease, color 150ms ease;
}
.sh-template_01 .sh-findus-detail dd a:hover {
  color: var(--cl-forest);
  border-bottom-color: var(--cl-forest);
}

/* CTAs — one filled moss button + one ghost. Scoped so they don't fight the
   hero's cream-on-moss primary button. */
.sh-template_01 .sh-findus-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sh-template_01 .sh-findus-btn-primary {
  background: var(--cl-forest);
  color: var(--cl-cream);
  box-shadow: 0 6px 16px rgba(47, 55, 28, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sh-template_01 .sh-findus-btn-primary svg { width: 16px; height: 16px; }
.sh-template_01 .sh-findus-btn-primary:hover {
  background: var(--cl-forest-deep);
  transform: translateY(-1px);
}
.sh-template_01 .sh-findus-btn-ghost {
  background: transparent;
  color: var(--cl-forest);
  border-color: var(--cl-forest);
}
.sh-template_01 .sh-findus-btn-ghost:hover {
  background: var(--cl-forest);
  color: var(--cl-cream);
}

/* Map card */
.sh-template_01 .sh-findus-map {
  border-radius: var(--cl-radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(47, 55, 28, 0.12);
  background: var(--cl-cream-deep);
  isolation: isolate;
  min-height: 420px;
}
.sh-template_01 .sh-findus-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 900px) {
  .sh-template_01 .sh-findus-card { padding: 32px 22px; }
  .sh-template_01 .sh-findus-inner { grid-template-columns: 1fr; gap: 28px; }
  .sh-template_01 .sh-findus-details { grid-template-columns: 1fr 1fr; }
  .sh-template_01 .sh-findus-map,
  .sh-template_01 .sh-findus-iframe { min-height: 300px; }
}
@media (max-width: 520px) {
  .sh-template_01 .sh-findus-details { grid-template-columns: 1fr; }
}

/* ---------- Footer — clean moss card ---------- */
.sh-template_01 .sh-footer {
  background: var(--cl-forest);
  color: var(--cl-cream);
  padding: 64px 24px 32px;
  position: relative;
}
.sh-template_01 .sh-footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.sh-template_01 .sh-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 229, 216, 0.15);
  align-items: start;
}
.sh-template_01 .sh-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sh-template_01 .sh-footer-logo {
  height: 96px;
  width: 96px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 16px;
  /* Logo PNG is black-on-transparent; invert to read on the forest-green footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.sh-template_01 .sh-footer-contact { margin: 4px 0 0; font-size: 14px; opacity: 0.9; }
.sh-template_01 .sh-footer-contact a { border-bottom: 1px solid rgba(232, 229, 216, 0.3); }
.sh-template_01 .sh-footer-heading {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
  margin: 0 0 16px;
}
.sh-template_01 .sh-footer-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.sh-template_01 .sh-footer-sitemap a {
  font-size: 14.5px;
  opacity: 0.85;
  transition: opacity 120ms ease;
}
.sh-template_01 .sh-footer-sitemap a:hover { opacity: 1; }
.sh-template_01 .sh-footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.sh-template_01 .sh-footer-sunsmart {
  display: flex;
  flex-direction: column;
}
.sh-template_01 .sh-footer-sunsmart iframe {
  background: #fff;
  border-radius: var(--cl-radius);
  overflow: hidden;
  width: 100%;
  max-width: 260px;
  height: 220px;
}
.sh-template_01 .sh-footer-legal {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}
.sh-template_01 .sh-footer-apps {
  margin-top: 24px;
}
.sh-template_01 .sh-footer-apps-blurb {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 320px;
}
.sh-template_01 .sh-footer-apps-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sh-template_01 .sh-app-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  transition: transform 120ms ease;
}
.sh-template_01 .sh-app-badge svg {
  display: block;
  height: 40px;
  width: auto;
}
.sh-template_01 .sh-app-badge:hover { transform: translateY(-1px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sh-template_01 .sh-nav-inner { gap: 12px; flex-wrap: nowrap; position: relative; }
  .sh-template_01 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_01 .sh-nav-drawer {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: var(--cl-cream);
    border: 1px solid rgba(47, 55, 28, 0.08);
    border-radius: var(--cl-radius-sm);
    box-shadow: var(--cl-shadow);
    z-index: 40;
  }
  .sh-template_01 .sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_01 .sh-nav-drawer .sh-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    flex: none;
    width: 100%;
  }
  .sh-template_01 .sh-nav-drawer .sh-nav-link,
  .sh-template_01 .sh-nav-drawer .sh-nav-dropdown-btn { width: 100%; padding: 10px 12px; }
  .sh-template_01 .sh-nav-drawer .sh-nav-submenu {
    position: static;
    margin: 4px 0 4px 16px;
    box-shadow: none;
    border-left: 2px solid var(--cl-cream-deep);
    border-radius: 0;
    padding: 4px 0 4px 8px;
    background: transparent;
  }
  .sh-template_01 .sh-nav-drawer .sh-nav-dropdown-nested > .sh-nav-submenu {
    top: auto;
    left: auto;
    margin: 4px 0 4px 16px;
  }
  .sh-template_01 .sh-nav-drawer .sh-nav-actions {
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--cl-cream-deep);
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .sh-template_01 .sh-nav-drawer .sh-nav-user { width: 100%; }
  .sh-template_01 .sh-nav-drawer .sh-nav-user-btn { width: 100%; justify-content: flex-start; }
  .sh-template_01 .sh-nav-drawer .sh-nav-user-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 6px 0 0;
  }
  .sh-template_01 .sh-quicklinks-inner,
  .sh-template_01 .sh-enquire-inner,
  .sh-template_01 .sh-footer-top,
  .sh-template_01 .sh-findus-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Inner pages (rendered via static_home_inner layout)
   Reuses the homepage palette + serif so /p/:slug pages on a Chalcot
   site read as the same brand. The body keeps the static-home-inner
   class; everything below is scoped under .sh-template_01 so it can't
   leak into other templates.
   ========================================================================== */

.sh-template_01 .static-home-inner-main {
  background: var(--cl-cream-page);
  min-height: 60vh;
}

/* --- Page header band ---------------------------------------------------- */
.sh-template_01 .sh-page-header {
  padding: 64px 24px 48px;
  background: var(--cl-cream);
  border-bottom: 1px solid rgba(47, 55, 28, 0.06);
  text-align: center;
}

.sh-template_01 .sh-page-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sh-template_01 .sh-page-header-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--cl-ink-soft);
  margin-bottom: 16px;
}

.sh-template_01 .sh-page-header-breadcrumb a {
  color: var(--cl-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sh-template_01 .sh-page-header-breadcrumb a:hover {
  color: var(--cl-forest-deep);
}

.sh-template_01 .sh-page-header-breadcrumb-sep {
  opacity: 0.5;
}

.sh-template_01 .sh-page-header-title {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cl-ink);
  margin: 0;
}

.sh-template_01 .sh-page-header-summary {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cl-ink-soft);
}

/* --- Row content ---------------------------------------------------------
   Pages render via app/views/guests/pages/show.slim → row partials.
   The default layout (max-w-7xl + Tailwind utilities) is OK structurally;
   we just want the prose inside .ck-content to read like template_01. */
.sh-template_01 .static-home-inner-main .row {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 24px;
}

.sh-template_01 .static-home-inner-main .row-wrapper > .row {
  margin: 0 auto;
}

.sh-template_01 .static-home-inner-main .ck-content {
  color: var(--cl-ink);
  font-size: 17px;
  line-height: 1.75;
}

.sh-template_01 .static-home-inner-main .ck-content h1,
.sh-template_01 .static-home-inner-main .ck-content h2,
.sh-template_01 .static-home-inner-main .ck-content h3,
.sh-template_01 .static-home-inner-main .ck-content h4 {
  font-family: var(--cl-serif);
  font-weight: 500;
  color: var(--cl-ink);
  letter-spacing: -0.01em;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.sh-template_01 .static-home-inner-main .ck-content h1 { font-size: 38px; }
.sh-template_01 .static-home-inner-main .ck-content h2 { font-size: 30px; }
.sh-template_01 .static-home-inner-main .ck-content h3 { font-size: 24px; }
.sh-template_01 .static-home-inner-main .ck-content h4 { font-size: 20px; }

.sh-template_01 .static-home-inner-main .ck-content p {
  margin-bottom: 1.1em;
}

.sh-template_01 .static-home-inner-main .ck-content a {
  color: var(--cl-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sh-template_01 .static-home-inner-main .ck-content a:hover {
  color: var(--cl-forest-deep);
}

.sh-template_01 .static-home-inner-main .ck-content ul,
.sh-template_01 .static-home-inner-main .ck-content ol {
  padding-left: 1.6em;
  margin-bottom: 1.1em;
}

.sh-template_01 .static-home-inner-main .ck-content ul li,
.sh-template_01 .static-home-inner-main .ck-content ol li {
  margin-bottom: 0.4em;
}

.sh-template_01 .static-home-inner-main .ck-content blockquote {
  border-left: 3px solid var(--cl-forest-bright);
  padding-left: 18px;
  font-style: italic;
  color: var(--cl-ink-soft);
  margin: 1.4em 0;
}

.sh-template_01 .static-home-inner-main .ck-content figure {
  margin: 1.4em 0;
}

.sh-template_01 .static-home-inner-main .ck-content img {
  border-radius: var(--cl-radius-sm);
}

.sh-template_01 .static-home-inner-main .ck-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em 0;
}

.sh-template_01 .static-home-inner-main .ck-content table th,
.sh-template_01 .static-home-inner-main .ck-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(47, 55, 28, 0.1);
  text-align: left;
}

.sh-template_01 .static-home-inner-main .ck-content table th {
  font-weight: 600;
  color: var(--cl-forest-deep);
}

/* Trailing breathing room before the footer */
.sh-template_01 .static-home-inner-main > :last-child {
  margin-bottom: 64px;
}

@media (max-width: 720px) {
  .sh-template_01 .sh-page-header { padding: 44px 18px 32px; }
  .sh-template_01 .static-home-inner-main .row { padding: 20px 18px; }
}

/* =========================================================================
   Inner pages — Editorial restraint (Chalcot Lodge)
   -------------------------------------------------------------------------
   Mirrors the homepage's elegance — tracked uppercase eyebrows, Fraunces
   serif headlines, forest-on-cream confidence, soft shadows, generous
   whitespace, no rotation, no decorative chaos. Selectors scoped under
   .sh-template_01.
   ========================================================================= */

.sh-template_01 .static-home-inner-main {
  background: var(--cl-cream-page);
  color: var(--cl-ink);
  padding-bottom: 0;
  position: relative;
}

/* Title squiggle — kept as a quiet underline option (not used in the
   simplified hero, but preserved for any place that opts in). */
.sh-template_01 .ps-marker { position: relative; display: inline-block; }
.sh-template_01 .ps-marker-word { position: relative; z-index: 1; color: inherit; }
.sh-template_01 .ps-marker-line {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .35em;
  color: var(--cl-chip-amber); z-index: 0; pointer-events: none;
}

/* --- Hero ---------------------------------------------------------------- */
/* Forest-green card with cream type, mirroring the homepage hero so
   /p/<slug> reads as the same page family as /. */
.sh-template_01 .sh-journal-hero {
  padding: 40px 24px 48px;
}
.sh-template_01 .sh-journal-hero-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cl-forest);
  color: var(--cl-cream);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow-card);
  padding: 36px 40px 44px;
  position: relative;
  overflow: hidden;
}

.sh-template_01 .sh-journal-hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  font-family: var(--cl-font);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 240, 225, 0.85);
}

.sh-template_01 .sh-journal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 500;
}
.sh-template_01 .sh-journal-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  padding-bottom: 1px;
}
.sh-template_01 .sh-journal-breadcrumb a:hover {
  color: var(--cl-cream);
  border-bottom-color: rgba(246, 240, 225, 0.5);
}
.sh-template_01 .sh-journal-breadcrumb-sep { opacity: 0.45; }
.sh-template_01 .sh-journal-breadcrumb [aria-current="page"] { color: var(--cl-cream); }

.sh-template_01 .sh-journal-hero-mark {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--cl-cream);
  color: var(--cl-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-template_01 .sh-journal-hero-mark svg { width: 28px; height: 36px; }

.sh-template_01 .sh-journal-hero-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
}

.sh-template_01 .sh-journal-eyebrow {
  font-family: var(--cl-font);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(246, 240, 225, 0.85);
}

.sh-template_01 .sh-journal-title {
  font-family: var(--cl-serif);
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--cl-cream);
  margin: 0;
}

.sh-template_01 .sh-journal-lede {
  font-family: var(--cl-font);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(246, 240, 225, 0.88);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 720px) {
  .sh-template_01 .sh-journal-hero { padding: 20px 16px 32px; }
  .sh-template_01 .sh-journal-hero-card { padding: 24px 22px 28px; }
  .sh-template_01 .sh-journal-hero-topbar { margin-bottom: 28px; }
}

/* --- Sticky TOC ---------------------------------------------------------- */
.sh-template_01 .sh-journal-toc {
  position: sticky;
  top: 0;
  background: rgba(230, 225, 208, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 55, 28, 0.1);
  padding: 14px 0;
}
.sh-template_01 .sh-journal-toc-inner {
  width: min(1220px, 100% - 2.5rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_01 .sh-journal-toc-label {
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cl-forest);
  white-space: nowrap;
}
.sh-template_01 .sh-journal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_01 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cl-cream);
  color: var(--cl-forest-deep);
  font-family: var(--cl-font);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--cl-cream-deep);
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.sh-template_01 .sh-journal-toc-chip:hover {
  background: var(--cl-forest);
  color: var(--cl-cream);
  border-color: var(--cl-forest);
}

/* --- Body shell --------------------------------------------------------- */
.sh-template_01 .sh-journal-shell {
  width: min(1220px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 80px 0 96px;
}
.sh-template_01 .sh-journal-shell-with-aside {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 920px) {
  .sh-template_01 .sh-journal-shell-with-aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sh-template_01 .sh-journal-shell { padding: 48px 0 64px; }
}

/* --- Sibling sidebar ---------------------------------------------------- */
.sh-template_01 .sh-journal-aside { position: sticky; top: 80px; }
@media (max-width: 920px) { .sh-template_01 .sh-journal-aside { position: static; } }
.sh-template_01 .sh-journal-aside-eyebrow {
  display: block;
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cl-forest);
  margin-bottom: 4px;
}
.sh-template_01 .sh-journal-aside-parent {
  display: inline-block;
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--cl-ink);
  text-decoration: none;
  margin-bottom: 22px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.sh-template_01 .sh-journal-aside-parent:hover { border-bottom-color: var(--cl-chip-amber); }
.sh-template_01 .sh-journal-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--cl-cream-deep);
  display: flex;
  flex-direction: column;
}
.sh-template_01 .sh-journal-aside-list li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--cl-cream-deep);
  font-size: 14.5px;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sh-template_01 .sh-journal-aside-num {
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--cl-forest-bright);
  flex-shrink: 0;
  min-width: 18px;
}
.sh-template_01 .sh-journal-aside-link {
  color: var(--cl-ink-soft);
  text-decoration: none;
  transition: color 0.12s ease;
}
.sh-template_01 .sh-journal-aside-link:hover { color: var(--cl-forest-deep); }
.sh-template_01 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--cl-forest-deep);
  font-weight: 600;
}
.sh-template_01 .sh-journal-aside-current .sh-journal-aside-num { color: var(--cl-chip-amber); }

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

.sh-template_01 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_01 .sh-journal-intro-prose {
  font-family: var(--cl-font);
  font-size: 19px;
  line-height: 1.75;
  color: var(--cl-ink);
}
.sh-template_01 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.1em 0 0;
  color: var(--cl-forest-deep);
}

.sh-template_01 .sh-journal-block {
  font-family: var(--cl-font);
  font-size: 18px;
  line-height: 1.75;
  color: var(--cl-ink);
  margin: 0 0 1.2em;
}
.sh-template_01 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_01 .sh-journal-block p:last-child { margin-bottom: 0; }

.sh-template_01 .sh-journal-body a,
.sh-template_01 .sh-journal-intro-prose a {
  color: var(--cl-forest-deep);
  text-decoration: underline;
  text-decoration-color: var(--cl-cream-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_01 .sh-journal-body a:hover,
.sh-template_01 .sh-journal-intro-prose a:hover {
  color: var(--cl-forest);
  text-decoration-color: var(--cl-chip-amber);
}

/* Lists — discrete forest disc bullet, no chip rainbow */
.sh-template_01 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_01 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
}
.sh-template_01 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cl-forest);
  opacity: 0.6;
}
.sh-template_01 .sh-journal-block ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.sh-template_01 .sh-journal-block ol > li { margin-bottom: 0.45em; }
.sh-template_01 .sh-journal-block ol > li::marker {
  color: var(--cl-forest-deep);
  font-family: var(--cl-serif);
  font-weight: 500;
}

.sh-template_01 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 15px;
  background: #fff;
  border-radius: var(--cl-radius-sm);
  overflow: hidden;
  box-shadow: var(--cl-shadow-soft);
}
.sh-template_01 .sh-journal-block table th {
  background: var(--cl-forest-deep);
  color: var(--cl-cream);
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
}
.sh-template_01 .sh-journal-block table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--cl-cream-deep);
}
.sh-template_01 .sh-journal-block table tr:nth-child(even) td { background: var(--cl-cream); }
.sh-template_01 .sh-journal-block table tr:last-child td { border-bottom: 0; }

.sh-template_01 .sh-journal-hr {
  border: 0;
  height: 1px;
  background: var(--cl-cream-deep);
  margin: 3em 0;
}

/* --- Section break (no rotated giants, no rotating dividers) ----------- */
.sh-template_01 .sh-journal-section {
  margin: 80px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_01 .sh-journal-section-numeral {
  display: block;
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cl-forest-bright);
  margin-bottom: 12px;
}
.sh-template_01 .sh-journal-section-heading {
  font-family: var(--cl-serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--cl-ink);
  margin: 0 0 0.4em;
}
.sh-template_01 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(28px, 3.4vw, 38px); }
.sh-template_01 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 24px; }
.sh-template_01 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 19px; }

/* --- Pull-quote --------------------------------------------------------- */
.sh-template_01 .sh-journal-pull {
  margin: 56px 0;
}
.sh-template_01 .sh-journal-pull-body {
  margin: 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--cl-chip-amber);
  font-family: var(--cl-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--cl-forest-deep);
}

/* --- Figures (single body) ---------------------------------------------- */
.sh-template_01 .sh-journal-figure {
  margin: 48px 0;
  padding: 0;
  background: transparent;
}
.sh-template_01 .sh-journal-figure-right { float: right; max-width: 320px; margin: 8px 0 24px 32px; }
.sh-template_01 .sh-journal-figure-left  { float: left;  max-width: 320px; margin: 8px 32px 24px 0;  }
.sh-template_01 .sh-journal-figure-block { margin: 56px auto; max-width: 560px; }
@media (max-width: 920px) {
  .sh-template_01 .sh-journal-figure-right,
  .sh-template_01 .sh-journal-figure-left {
    float: none; margin: 36px auto; max-width: 100%;
  }
}
.sh-template_01 .sh-journal-figure-frame {
  background: var(--cl-cream);
  padding: 8px;
  border-radius: var(--cl-radius-sm);
  box-shadow: var(--cl-shadow-soft);
}
.sh-template_01 .sh-journal-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--cl-cream-page);
}
.sh-template_01 .sh-journal-figure-caption {
  display: block;
  margin-top: 12px;
  font-family: var(--cl-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cl-ink-soft);
  text-align: center;
}
.sh-template_01 .sh-journal-figure-caption span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0;
}

/* --- Staff card grid ---------------------------------------------------- */
.sh-template_01 .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_01 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease;
}
.sh-template_01 .sh-journal-staff-card:hover { transform: translateY(-4px); }

.sh-template_01 .sh-journal-staff-portrait {
  width: clamp(140px, 60%, 168px);
  margin-bottom: 16px;
}
.sh-template_01 .sh-journal-staff-portrait .sh-journal-figure-grid {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_01 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--cl-cream);
  padding: 6px;
  box-shadow: var(--cl-shadow-soft);
}
.sh-template_01 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--cl-cream-page);
}
.sh-template_01 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-family: var(--cl-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  color: var(--cl-ink);
  margin-top: 12px;
}

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

/* --- Bare-figure portrait grid ----------------------------------------- */
.sh-template_01 .sh-journal-portraits {
  list-style: none;
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 32px 20px;
  justify-items: center;
}
.sh-template_01 .sh-journal-portraits-item { display: flex; flex-direction: column; align-items: center; width: 100%; }
.sh-template_01 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_01 .sh-journal-figure-grid .sh-journal-figure-frame {
  width: clamp(120px, 100%, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--cl-cream);
  padding: 5px;
  box-shadow: var(--cl-shadow-soft);
}
.sh-template_01 .sh-journal-figure-grid .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* --- Empty fallback ----------------------------------------------------- */
.sh-template_01 .sh-journal-empty { padding: 96px 0; text-align: center; }
.sh-template_01 .sh-journal-empty-note {
  font-family: var(--cl-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cl-ink-soft);
}

/* --- "Continue reading" panel (sub-pages) ----------------------------- */
.sh-template_01 .sh-journal-wall {
  background: var(--cl-cream);
  border-top: 1px solid var(--cl-cream-deep);
  padding: 88px 24px 96px;
}
.sh-template_01 .sh-journal-wall-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
}
.sh-template_01 .sh-journal-wall-header {
  margin-bottom: 56px;
  text-align: center;
}
.sh-template_01 .sh-journal-wall-eyebrow {
  display: inline-block;
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cl-forest-bright);
  margin-bottom: 12px;
}
.sh-template_01 .sh-journal-wall-heading {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cl-ink);
  margin: 0;
}
.sh-template_01 .sh-journal-wall-sub {
  font-family: var(--cl-font);
  font-size: 16px;
  color: var(--cl-ink-soft);
  margin: 12px auto 0;
  max-width: 56ch;
}
.sh-template_01 .sh-journal-wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sh-template_01 .sh-journal-wall-card {
  background: var(--cl-cream-page);
  border: 1px solid var(--cl-cream-deep);
  border-radius: var(--cl-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sh-template_01 .sh-journal-wall-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cl-shadow-card);
  border-color: var(--cl-chip-amber);
}
.sh-template_01 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 26px;
  color: inherit;
  text-decoration: none;
}
.sh-template_01 .sh-journal-wall-card-eyebrow {
  font-family: var(--cl-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cl-forest-bright);
}
.sh-template_01 .sh-journal-wall-card-title {
  font-family: var(--cl-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--cl-ink);
}
.sh-template_01 .sh-journal-wall-card-summary {
  font-family: var(--cl-font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--cl-ink-soft);
}
.sh-template_01 .sh-journal-wall-card-cta {
  margin-top: 8px;
  font-family: var(--cl-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cl-forest-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.16s ease, color 0.14s ease;
}
.sh-template_01 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  gap: 10px;
  color: var(--cl-forest);
}

/* --- Sign-off rule ------------------------------------------------------ */
.sh-template_01 .sh-journal-signoff {
  text-align: center;
  padding: 48px 0 64px;
}
.sh-template_01 .sh-journal-signoff-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--cl-cream-deep);
}

/* --- "More" overflow dropdown in nav ----------------------------------- */
.sh-template_01 .sh-nav-overflow .sh-nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--cl-shadow-card);
  padding: 8px;
  min-width: 240px;
  z-index: 50;
  list-style: none;
  margin: 0;
  border: 1px solid var(--cl-cream-deep);
}
.sh-template_01 .sh-nav-overflow .sh-nav-submenu.hidden { display: none; }

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