/* ============================================================
   Warm Academic — palette tokens scoped to template_07.
   Per-school overrides emitted in a <style> block inside
   content_for :head in template_07.html.slim when the Website
   record sets base_color / primary_color / accent_color.
   ============================================================ */
.sh-template_07 {
  --paper:       #f4efe4;
  --ink:         #2a2519;
  --card:        #fbf8f1;
  --rule:        #d4cdb8;
  --accent:      #c79a3a;
  --accent-deep: #a87d24;

  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

.sh-template_07 h1,
.sh-template_07 h2,
.sh-template_07 h3,
.sh-template_07 h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

.sh-template_07 .sh-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 0 0 10px;
}

.sh-template_07 .sh-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.sh-template_07 .sh-ital {
  font-style: italic;
  color: var(--accent-deep);
}

.sh-template_07 .sh-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sh-template_07 .sh-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 11px 21px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Reset just enough — the layout is full-width sections so we don't
   need to fight tailwind's defaults; we just normalise list/heading
   spacing inside the template scope. */
.sh-template_07 *,
.sh-template_07 *::before,
.sh-template_07 *::after {
  box-sizing: border-box;
}

.sh-template_07 ol,
.sh-template_07 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-template_07 h1,
.sh-template_07 h2,
.sh-template_07 h3,
.sh-template_07 h4,
.sh-template_07 p {
  margin: 0;
}

.sh-template_07 a {
  color: inherit;
  text-decoration: none;
}

.sh-template_07 img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sh-template_07 .sh-skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  z-index: 100;
}
.sh-template_07 .sh-skip-link:focus {
  left: 16px;
  top: 16px;
}

/* === Nav === Warm Academic
   Sticky paper nav with Fraunces wordmark, content links, mustard CTA.
   Auth dropdown / mobile drawer markup is preserved; only the visual
   tokens, font, and decorative pieces are reskinned to the Warm
   Academic palette. */
.sh-template_07 .sh-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sh-template_07 .sh-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sh-template_07 .sh-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.sh-template_07 .sh-nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.sh-template_07 .sh-nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.005em;
}

.sh-template_07 .sh-nav-menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  margin-left: auto;
}
.sh-template_07 .sh-nav-menu-btn svg { width: 26px; height: 26px; }

.sh-template_07 .sh-nav-drawer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
}

.sh-template_07 .sh-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-template_07 .sh-nav-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.sh-template_07 .sh-nav-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}

.sh-template_07 .sh-nav-dropdown { position: relative; }
.sh-template_07 .sh-nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  font: inherit;
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  padding: 0.35rem 0;
}
.sh-template_07 .sh-nav-chevron { width: 10px; height: 6px; }

.sh-template_07 .sh-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(42, 37, 25, 0.12);
  padding: 0.5rem 0;
  min-width: 220px;
  margin-top: 0.4rem;
  list-style: none;
}
.sh-template_07 .sh-nav-submenu .sh-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  border-bottom: 0;
}
.sh-template_07 .sh-nav-submenu .sh-nav-link:hover {
  background: var(--paper);
  color: var(--accent-deep);
  border-bottom-color: transparent;
}

.sh-template_07 .sh-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.sh-template_07 .sh-nav-book {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.sh-template_07 .sh-nav-book:hover { background: var(--accent-deep); }

.sh-template_07 .sh-nav-auth {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}
.sh-template_07 .sh-nav-auth:hover { color: var(--accent-deep); }

/* User dropdown — JS-less hover menu shared in shape with the other
   static-home templates. Reskinned to Warm Academic tokens. */
.sh-template_07 .sh-nav-user { position: relative; }
.sh-template_07 .sh-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}
.sh-template_07 .sh-nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--accent-deep);
}
.sh-template_07 .sh-nav-user-avatar svg { width: 18px; height: 18px; }
.sh-template_07 .sh-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-template_07 .sh-nav-user-greeting {
  font-size: 13px;
  font-weight: 500;
}
.sh-template_07 .sh-nav-user-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(42, 37, 25, 0.12);
  min-width: 240px;
  padding: 0.6rem;
  z-index: 60;
}
.sh-template_07 .sh-nav-user-menu.hidden { display: none; }
.sh-template_07 .sh-nav-user-identity {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem 0.7rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0.3rem;
}
.sh-template_07 .sh-nav-user-identity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.sh-template_07 .sh-nav-user-identity-avatar svg { width: 22px; height: 22px; }
.sh-template_07 .sh-nav-user-identity-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sh-template_07 .sh-nav-user-identity-name {
  font-weight: 600;
  font-size: 14px;
}
.sh-template_07 .sh-nav-user-identity-email {
  font-size: 12px;
  color: var(--ink);
  opacity: 0.7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sh-template_07 .sh-nav-user-link,
.sh-template_07 .sh-nav-user-signout {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}
.sh-template_07 .sh-nav-user-link:hover,
.sh-template_07 .sh-nav-user-signout:hover { background: var(--paper); }
.sh-template_07 .sh-nav-user-signout-form { margin: 0; }

/* === Hero === Warm Academic */
.sh-template_07 .sh-hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.sh-template_07 .sh-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sh-template_07 .sh-hero-overlay {
  position: relative; z-index: 1;
  width: 100%;
  background: linear-gradient(135deg, rgba(42,37,25,.55), rgba(42,37,25,.35));
  display: flex; align-items: flex-end;
  padding: 90px 50px 78px;
}
.sh-template_07 .sh-hero-inner { max-width: 1240px; margin: 0 auto; width: 100%; }
.sh-template_07 .sh-hero .sh-kicker { color: #f0c879; }
.sh-template_07 .sh-hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 28px;
  max-width: 780px;
}
.sh-template_07 .sh-hero-title .sh-ital {
  font-style: italic;
  color: #f0c879;
}
@media (max-width: 720px) {
  .sh-template_07 .sh-hero-overlay { padding: 64px 22px 56px; }
  .sh-template_07 .sh-hero-title   { font-size: 32px; }
}

/* === Steps → Family shortcuts === Warm Academic */
.sh-template_07 .sh-shortcuts { padding: 56px 50px; }
.sh-template_07 .sh-shortcuts-inner { max-width: 1240px; margin: 0 auto; }
.sh-template_07 .sh-shortcuts-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 22px; gap: 24px;
}
.sh-template_07 .sh-shortcuts-header h2 { font-size: 26px; margin: 0; }
.sh-template_07 .sh-shortcuts-lede {
  color: #6a6358; font-size: 13px; max-width: 340px; margin: 0;
}
.sh-template_07 .sh-shortcuts-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.sh-template_07 .sh-shortcut-tile { display: flex; }
.sh-template_07 .sh-shortcut-link {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 22px 14px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s;
}
.sh-template_07 .sh-shortcut-link:hover { border-color: var(--accent); }
.sh-template_07 .sh-shortcut-icon {
  width: 36px; height: 36px;
  margin: 0 auto 10px;
  background: rgba(168,125,36,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
  font-size: 18px; font-weight: 700;
  font-family: var(--font-display);
}
.sh-template_07 .sh-shortcut-label {
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 600;
}
.sh-template_07 .sh-shortcut-sub { font-size: 11px; color: #756e62; margin-top: 3px; }
@media (max-width: 960px) { .sh-template_07 .sh-shortcuts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .sh-template_07 .sh-shortcuts-grid { grid-template-columns: repeat(2, 1fr); }
                            .sh-template_07 .sh-shortcuts-header { flex-direction: column; align-items: stretch; } }

/* === CTA banner → Tour invitation === Warm Academic */
.sh-template_07 .sh-tour {
  padding: 64px 50px 70px;
  text-align: center;
  background: var(--paper);
}
.sh-template_07 .sh-tour-inner { max-width: 720px; margin: 0 auto; }
.sh-template_07 .sh-tour-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  margin: 0 auto 18px;
  line-height: 1.25;
  color: var(--ink);
}
.sh-template_07 .sh-tour-sub { color: #6a6358; margin: 0 auto 24px; font-size: 14px; }
@media (max-width: 600px) {
  .sh-template_07 .sh-tour-title { font-size: 24px; }
}

/* === Offer → Principal welcome === Warm Academic */
.sh-template_07 .sh-principal {
  background: var(--card);
  padding: 64px 50px;
}
.sh-template_07 .sh-principal-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1fr; gap: 40px;
  align-items: center;
}
.sh-template_07 .sh-principal-photo { width: 100%; }
.sh-template_07 .sh-principal-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 6px;
}
.sh-template_07 .sh-principal-title { font-size: 32px; margin: 0 0 18px; font-family: var(--font-display); }
.sh-template_07 .sh-principal-body  { color: #4a4438; margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; }
.sh-template_07 .sh-principal-sig {
  font-family: var(--font-display);
  font-style: italic; font-size: 20px;
  margin: 18px 0 4px;
}
.sh-template_07 .sh-principal-role {
  font-size: 12px; color: #756e62;
  text-transform: uppercase; letter-spacing: 0.08em; margin: 0;
}
@media (max-width: 720px) {
  .sh-template_07 .sh-principal-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* === Tiers → Our Curriculum === Warm Academic */
.sh-template_07 .sh-curr { padding: 70px 50px; }
.sh-template_07 .sh-curr-inner { max-width: 1240px; margin: 0 auto; }
.sh-template_07 .sh-curr-header { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.sh-template_07 .sh-curr-header h2 { font-size: 32px; margin: 0; font-family: var(--font-display); }
.sh-template_07 .sh-curr-lede { color: #6a6358; margin: 12px 0 0; }
.sh-template_07 .sh-curr-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.sh-template_07 .sh-curr-card {
  background: var(--card); border: 1px solid var(--rule);
  border-radius: 6px; padding: 26px 22px;
  display: flex; flex-direction: column;
}
.sh-template_07 .sh-curr-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent); color: var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
}
.sh-template_07 .sh-curr-title { font-size: 19px; margin: 0 0 8px; font-family: var(--font-display); }
.sh-template_07 .sh-curr-body  { font-size: 13px; color: #5a5448; margin: 0; flex: 1; }
.sh-template_07 .sh-curr-more {
  display: inline-block; margin-top: 14px;
  color: var(--accent-deep); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none;
}
@media (max-width: 900px) { .sh-template_07 .sh-curr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sh-template_07 .sh-curr-grid { grid-template-columns: 1fr; } }

/* === Why → What Makes Us Unique === Warm Academic */
.sh-template_07 .sh-unique { padding: 70px 50px; background: var(--card); }
.sh-template_07 .sh-unique-inner { max-width: 1240px; margin: 0 auto; }
.sh-template_07 .sh-unique-header { text-align: center; margin-bottom: 32px; }
.sh-template_07 .sh-unique-header h2 { font-size: 32px; margin: 0; font-family: var(--font-display); }
.sh-template_07 .sh-unique-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.sh-template_07 .sh-unique-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 6px; padding: 22px 18px;
}
.sh-template_07 .sh-unique-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(168,125,36,.18); border-radius: 6px;
  margin-bottom: 12px;
  color: var(--accent-deep); font-weight: 700;
}
.sh-template_07 .sh-unique-title { font-size: 15.5px; margin: 0 0 6px; font-family: var(--font-display); }
.sh-template_07 .sh-unique-body  { font-size: 12.5px; color: #5a5448; margin: 0; line-height: 1.5; }
@media (max-width: 1000px) { .sh-template_07 .sh-unique-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .sh-template_07 .sh-unique-grid { grid-template-columns: 1fr; } }

/* === Tours → Meet the Staff === Warm Academic */
.sh-template_07 .sh-staff { padding: 64px 50px; }
.sh-template_07 .sh-staff-inner { max-width: 1240px; margin: 0 auto; }
.sh-template_07 .sh-staff-header { text-align: center; margin-bottom: 30px; }
.sh-template_07 .sh-staff-header h2 { font-size: 30px; margin: 0; font-family: var(--font-display); }
.sh-template_07 .sh-staff-lede { color: #6a6358; font-size: 14px; margin: 10px auto 0; max-width: 540px; }
.sh-template_07 .sh-staff-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sh-template_07 .sh-staff-card {
  background: var(--card); border: 1px solid var(--rule);
  border-radius: 6px; padding: 22px; text-align: center;
}
.sh-template_07 .sh-staff-portrait {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px;
  display: block;
}
.sh-template_07 .sh-staff-portrait-empty {
  background: linear-gradient(135deg, #d4cdb8, #b8a684);
}
.sh-template_07 .sh-staff-name { font-size: 18px; margin: 0; font-family: var(--font-display); }
.sh-template_07 .sh-staff-role {
  color: var(--accent-deep);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; margin: 4px 0 10px;
}
.sh-template_07 .sh-staff-bio { font-size: 13px; color: #5a5448; margin: 0; }
.sh-template_07 .sh-staff-more {
  display: inline-block; margin-top: 12px;
  color: var(--ink); font-size: 12px; font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}
@media (max-width: 800px) { .sh-template_07 .sh-staff-grid { grid-template-columns: 1fr; } }

/* === Find Us === Warm Academic */
.sh-template_07 .sh-findus {
  background: var(--card);
  padding: 70px 50px;
}
.sh-template_07 .sh-findus-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center;
}
.sh-template_07 .sh-findus-copy h2 { font-size: 30px; margin: 0 0 14px; font-family: var(--font-display); }
.sh-template_07 .sh-findus-intro { color: #6a6358; margin: 0; }
.sh-template_07 .sh-findus-details { margin: 22px 0; padding: 0; }
.sh-template_07 .sh-findus-detail {
  display: flex; gap: 16px; padding: 12px 0;
  border-top: 1px solid var(--rule);
}
.sh-template_07 .sh-findus-detail:last-child { border-bottom: 1px solid var(--rule); }
.sh-template_07 .sh-findus-detail dt {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #756e62; font-weight: 600; width: 100px; flex-shrink: 0;
}
.sh-template_07 .sh-findus-detail dd { margin: 0; font-size: 14px; }
.sh-template_07 .sh-findus-iframe { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 6px; }
.sh-template_07 .sh-findus-ctas { display: flex; gap: 12px; margin-top: 8px; }
@media (max-width: 800px) {
  .sh-template_07 .sh-findus-inner { grid-template-columns: 1fr; }
}

/* === Footer === Warm Academic */
.sh-template_07 .sh-foot { padding: 56px 50px 32px; background: var(--ink); color: #d4cdb8; }
.sh-template_07 .sh-foot-inner { max-width: 1240px; margin: 0 auto; }
.sh-template_07 .sh-foot-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 38px;
}
.sh-template_07 .sh-foot h4 {
  color: #f4efe4; font-family: var(--font-display); font-size: 16px;
  margin: 0 0 14px;
}
.sh-template_07 .sh-foot-brand {
  font-family: var(--font-display); font-size: 22px;
  color: #f4efe4; font-weight: 700; margin-bottom: 8px;
}
.sh-template_07 .sh-foot-address { font-size: 13px; color: #b8b09c; margin: 0 0 14px; line-height: 1.5; }
.sh-template_07 .sh-foot-acknowledgement {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: #b8b09c; line-height: 1.6; margin: 0;
}
.sh-template_07 .sh-foot-links p { margin: 0 0 8px; font-size: 12.5px; color: #c9c1ad; }
.sh-template_07 .sh-foot-links a { color: #c9c1ad; text-decoration: none; }
.sh-template_07 .sh-foot-meta {
  border-top: 1px solid #3d3625; padding-top: 18px;
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: #8a8270;
}
.sh-template_07 .sh-footer-apps { margin-top: 18px; }
.sh-template_07 .sh-footer-apps .sh-footer-heading {
  color: #f4efe4; font-family: var(--font-display); font-size: 16px;
  margin: 0 0 8px;
}
.sh-template_07 .sh-footer-apps-blurb {
  margin: 0 0 12px; font-size: 13px; line-height: 1.5;
  color: #b8b09c; max-width: 320px;
}
.sh-template_07 .sh-footer-apps-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.sh-template_07 .sh-app-badge {
  display: inline-block; line-height: 0; border-radius: 6px;
  transition: transform 120ms ease;
}
.sh-template_07 .sh-app-badge svg { display: block; height: 40px; width: auto; }
.sh-template_07 .sh-app-badge:hover { transform: translateY(-1px); }
@media (max-width: 800px) {
  .sh-template_07 .sh-foot-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sh-template_07 .sh-foot-row { grid-template-columns: 1fr; }
  .sh-template_07 .sh-foot-meta { flex-direction: column; gap: 6px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .sh-template_07 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_07 .sh-nav-drawer {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 14px 36px rgba(42, 37, 25, 0.12);
  }
  .sh-template_07 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_07 .sh-nav-links { flex-direction: column; gap: 0.4rem; align-items: stretch; }
  .sh-template_07 .sh-nav-link  { padding: 0.55rem 0; }
  .sh-template_07 .sh-nav-submenu { position: static; box-shadow: none; border: 0; padding: 0 0 0 1rem; }
  .sh-template_07 .sh-nav-actions { padding-top: 0.85rem; border-top: 1px solid var(--rule); }

}

@media (max-width: 640px) {
  .sh-template_07 .sh-nav-brand-name { display: none; }
}

/* =============================================================
   Inner-page (secondary-page) layer — Warm Academic voice on a
   CMS-driven prose page. Carries the homepage's identity onto
   every /p/<slug>: charcoal hero card on cream paper with rounded
   corners, mustard rule, Inter uppercase tracked kicker eyebrow,
   tracked uppercase "Chapter NN" section indices, mustard pull-
   quote rule, white-framed cream-page figures.
   ============================================================= */

/* === Journal hero === Warm Academic */
.sh-template_07 .sh-journal-hero { padding: 56px 50px 24px; background: var(--paper); }
.sh-template_07 .sh-journal-hero-card {
  max-width: 980px; margin: 0 auto;
  background: var(--ink); color: var(--paper);
  border-radius: 10px;
  padding: 36px 40px 40px;
}
.sh-template_07 .sh-journal-hero-topbar { margin-bottom: 18px; }
.sh-template_07 .sh-journal-breadcrumb {
  font-size: 12px; color: #c9c1ad;
}
.sh-template_07 .sh-journal-breadcrumb a { color: #c9c1ad; text-decoration: underline; text-underline-offset: 3px; }
.sh-template_07 .sh-journal-breadcrumb-sep { margin: 0 6px; color: #756e62; }
.sh-template_07 .sh-journal-eyebrow {
  display: block; color: var(--accent); margin-bottom: 10px;
}
.sh-template_07 .sh-journal-title {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 38px; font-weight: 600; line-height: 1.15;
  margin: 0 0 14px;
}
.sh-template_07 .sh-journal-hero-rule {
  display: block; width: 56px; height: 3px;
  background: var(--accent); margin: 0 0 14px;
}
.sh-template_07 .sh-journal-lede {
  color: #c9c1ad; font-size: 15px; line-height: 1.55; margin: 0;
}
@media (max-width: 720px) {
  .sh-template_07 .sh-journal-hero { padding: 32px 18px 12px; }
  .sh-template_07 .sh-journal-hero-card { padding: 24px 22px 26px; }
  .sh-template_07 .sh-journal-title { font-size: 28px; }
}

/* --- Sticky TOC chip strip --------------------------------------------- */
.sh-template_07 .sh-journal-toc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
@media (max-width: 920px) {
  .sh-template_07 .sh-journal-toc { position: static; top: auto; }
}
.sh-template_07 .sh-journal-toc-inner {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_07 .sh-journal-toc-label {
  font-size: 1.05rem;
  color: var(--accent-deep);
  white-space: nowrap;
}
.sh-template_07 .sh-journal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_07 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--rule);
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.sh-template_07 .sh-journal-toc-chip:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

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

/* --- Sibling sidebar ---------------------------------------------------- */
.sh-template_07 .sh-journal-aside { position: sticky; top: 88px; }
@media (max-width: 920px) { .sh-template_07 .sh-journal-aside { position: static; } }
.sh-template_07 .sh-journal-aside-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 4px;
}
.sh-template_07 .sh-journal-aside-parent {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 18px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.sh-template_07 .sh-journal-aside-parent:hover { border-bottom-color: var(--accent); }
.sh-template_07 .sh-journal-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.sh-template_07 .sh-journal-aside-list li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sh-template_07 .sh-journal-aside-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 18px;
}
.sh-template_07 .sh-journal-aside-link {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.12s ease;
}
.sh-template_07 .sh-journal-aside-link:hover { color: var(--accent-deep); }
.sh-template_07 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--accent-deep);
  font-weight: 600;
}
.sh-template_07 .sh-journal-aside-current .sh-journal-aside-num { color: var(--accent-deep); }

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

.sh-template_07 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_07 .sh-journal-intro-prose {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink);
}
.sh-template_07 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.2em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--accent-deep);
}

.sh-template_07 .sh-journal-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.2em;
}
.sh-template_07 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_07 .sh-journal-block p:last-child { margin-bottom: 0; }

.sh-template_07 .sh-journal-body a,
.sh-template_07 .sh-journal-intro-prose a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_07 .sh-journal-body a:hover,
.sh-template_07 .sh-journal-intro-prose a:hover {
  color: var(--ink);
  text-decoration-color: var(--accent-deep);
}

.sh-template_07 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_07 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.5em;
}
.sh-template_07 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}
.sh-template_07 .sh-journal-block ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.sh-template_07 .sh-journal-block ol > li { margin-bottom: 0.5em; }
.sh-template_07 .sh-journal-block ol > li::marker {
  color: var(--accent-deep);
  font-weight: 700;
}

.sh-template_07 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 0.95rem;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.sh-template_07 .sh-journal-block table th {
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
}
.sh-template_07 .sh-journal-block table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.sh-template_07 .sh-journal-block table tr:nth-child(even) td { background: var(--paper); }
.sh-template_07 .sh-journal-block table tr:last-child td { border-bottom: 0; }

.sh-template_07 .sh-journal-hr {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 3em 0;
}

/* --- Section break — tracked uppercase Chapter NN eyebrow -------------- */
.sh-template_07 .sh-journal-section {
  margin: 72px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_07 .sh-journal-section-numeral {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.sh-template_07 .sh-journal-section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.4em;
}
.sh-template_07 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem); }
.sh-template_07 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 1.4rem; color: var(--ink); }
.sh-template_07 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 1.15rem; color: var(--ink); }

/* --- Pull-quote — accent left rule ------------------------------------- */
.sh-template_07 .sh-journal-pull {
  margin: 56px 0;
  background: var(--card);
  border-radius: 8px;
  padding: 24px 28px 24px 32px;
  border: 1px solid var(--rule);
  border-left: 6px solid var(--accent);
}
.sh-template_07 .sh-journal-pull-body {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink);
}
.sh-template_07 .sh-journal-pull-body p { margin: 0; }
.sh-template_07 .sh-journal-pull-body p + p { margin-top: 0.6em; }

/* --- Body figures — clean frame, italic caption ----------------------- */
.sh-template_07 .sh-journal-figure {
  margin: 48px 0;
  padding: 0;
  background: transparent;
}
.sh-template_07 .sh-journal-figure-right { float: right; max-width: 320px; margin: 8px 0 24px 32px; }
.sh-template_07 .sh-journal-figure-left  { float: left;  max-width: 320px; margin: 8px 32px 24px 0; }
.sh-template_07 .sh-journal-figure-block { margin: 56px auto; max-width: 600px; }
@media (max-width: 920px) {
  .sh-template_07 .sh-journal-figure-right,
  .sh-template_07 .sh-journal-figure-left {
    float: none; margin: 36px auto; max-width: 100%;
  }
}
.sh-template_07 .sh-journal-figure-frame {
  background: var(--card);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}
.sh-template_07 .sh-journal-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: var(--paper);
}
.sh-template_07 .sh-journal-figure-caption {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-deep);
  text-align: center;
}
.sh-template_07 .sh-journal-figure-caption span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0;
}

/* --- Staff card grid + portrait medallions --------------------------- */
.sh-template_07 .sh-journal-staff {
  list-style: none;
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 48px 24px;
  align-items: start;
}
.sh-template_07 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease;
}
.sh-template_07 .sh-journal-staff-card:hover { transform: translateY(-4px); }

.sh-template_07 .sh-journal-staff-portrait {
  width: clamp(140px, 60%, 168px);
  margin-bottom: 16px;
}
.sh-template_07 .sh-journal-staff-portrait .sh-journal-figure-grid {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_07 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--card);
  padding: 6px;
  border: 1px solid var(--rule);
}
.sh-template_07 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--paper);
}
.sh-template_07 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-top: 12px;
}

.sh-template_07 .sh-journal-staff-bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  text-align: left;
  width: 100%;
}
.sh-template_07 .sh-journal-staff-bio p { margin: 0 0 0.5em; }
.sh-template_07 .sh-journal-staff-bio p:last-child { margin-bottom: 0; }

.sh-template_07 .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_07 .sh-journal-portraits-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sh-template_07 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_07 .sh-journal-figure-grid .sh-journal-figure-frame {
  width: clamp(120px, 100%, 144px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--card);
  padding: 5px;
  border: 1px solid var(--rule);
}
.sh-template_07 .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_07 .sh-journal-empty { padding: 96px 0; text-align: center; }
.sh-template_07 .sh-journal-empty-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-deep);
}

/* --- "Keep exploring" sub-page wall ----------------------------------- */
.sh-template_07 .sh-journal-wall {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 80px 24px 88px;
}
.sh-template_07 .sh-journal-wall-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.sh-template_07 .sh-journal-wall-header {
  margin-bottom: 48px;
  text-align: center;
}
.sh-template_07 .sh-journal-wall-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1rem + 0.6vw, 1.7rem);
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.sh-template_07 .sh-journal-wall-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.sh-template_07 .sh-journal-wall-rule {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0 12px;
}
.sh-template_07 .sh-journal-wall-sub {
  font-size: 1rem;
  color: var(--ink);
  margin: 4px auto 0;
  max-width: 56ch;
}
.sh-template_07 .sh-journal-wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.sh-template_07 .sh-journal-wall-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  transition: transform 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}
.sh-template_07 .sh-journal-wall-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.sh-template_07 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 26px 24px;
  color: inherit;
  text-decoration: none;
  border-top: 4px solid var(--accent);
}
.sh-template_07 .sh-journal-wall-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
}
.sh-template_07 .sh-journal-wall-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sh-template_07 .sh-journal-wall-card-summary {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
}
.sh-template_07 .sh-journal-wall-card-cta {
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.16s ease, color 0.14s ease;
}
.sh-template_07 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  gap: 10px;
  color: var(--ink);
}

/* --- Sign-off rule ------------------------------------------------------ */
.sh-template_07 .sh-journal-signoff {
  text-align: center;
  padding: 48px 0 64px;
  background: var(--paper);
}
.sh-template_07 .sh-journal-signoff-rule {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: var(--accent);
}

/* --- Widgets (newsletters, announcements, events, etc.) --------------- */
.sh-template_07 .sh-journal-widgets {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.sh-template_07 .sh-journal-widget {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
}

/* --- "More" overflow dropdown in nav ---------------------------------- */
.sh-template_07 .sh-nav-overflow .sh-nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: var(--card);
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(42, 37, 25, 0.12);
  padding: 8px;
  min-width: 240px;
  z-index: 50;
  list-style: none;
  margin: 0;
  border: 1px solid var(--rule);
}
.sh-template_07 .sh-nav-overflow .sh-nav-submenu.hidden { display: none; }
.sh-template_07 .sh-nav-dropdown-nested .sh-nav-submenu {
  left: 100%;
  top: -8px;
  margin-left: 4px;
}
@media (max-width: 980px) {
  .sh-template_07 .sh-nav-dropdown-nested .sh-nav-submenu {
    left: 0;
    top: 100%;
    margin-left: 0;
  }
}

/* --- Mobile: hamburger drawer below ~980px (matches inner-page nav) --- */
@media (max-width: 980px) {
  .sh-template_07 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_07 .sh-nav-drawer {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 14px 36px rgba(42, 37, 25, 0.12);
    z-index: 60;
  }
  .sh-template_07 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_07 .sh-nav-inner { padding: 12px 18px; gap: 12px; }
}

/* --- Inner-page mobile tightening ------------------------------------- */
@media (max-width: 720px) {
  .sh-template_07 .sh-journal-shell { padding: 40px 0 56px; }
  .sh-template_07 .sh-journal-section { margin: 56px 0 18px; }
  .sh-template_07 .sh-journal-pull { padding: 18px 20px 18px 24px; margin: 40px 0; }
  .sh-template_07 .sh-journal-wall { padding: 56px 20px 64px; }
  .sh-template_07 .sh-journal-wall-card-link { padding: 22px 22px 20px; }
}
