:root {
  --zs-bg: #eef2f6;
  --zs-surface: #f6f8fb;
  --zs-raised: #ffffff;
  --zs-fg: #19234c;
  --zs-muted: #4c5256;
  --zs-subtle: #666c6d;
  --zs-primary: #19234c;
  --zs-primary-fg: #f6f8fb;
  --zs-on-primary: #f6f8fb;
  --zs-primary-hover: #24315f;
  --zs-accent: #2ab5e4;
  --zs-accent-fg: #19234c;
  --zs-accent-hover: #1f9cc9;
  --zs-border: #d5dde6;
  --zs-ring: #2ab5e4;
  --zs-callout: #e3eef8;
  --zs-warn: #e7eef4;
  --zs-danger: #8c3a32;
  --zs-font-display: "Fraunces", "Times New Roman", serif;
  --zs-font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --zs-radius: 12px;
  --zs-radius-lg: 16px;
  --zs-shadow: 0 0 0 1px rgba(25, 35, 76, 0.07), 0 1px 2px -1px rgba(25, 35, 76, 0.07), 0 2px 4px 0 rgba(25, 35, 76, 0.05);
  --zs-shadow-hover: 0 0 0 1px rgba(25, 35, 76, 0.12), 0 1px 2px -1px rgba(25, 35, 76, 0.1), 0 8px 20px -12px rgba(25, 35, 76, 0.22);
  --zs-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--zs-bg);
  color: var(--zs-fg);
  font-family: var(--zs-font-sans);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  outline: 1px solid rgba(25, 35, 76, 0.1);
  outline-offset: -1px;
}

img.zs-brand-mark {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--zs-font-display);
  font-weight: var(--zs-heading-weight, 600);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

button { font-family: inherit; }

::selection {
  background: color-mix(in oklab, var(--zs-accent) 28%, transparent);
  color: var(--zs-fg);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.zs-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--zs-primary);
  color: var(--zs-primary-fg);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.zs-skip:focus { top: 1rem; }

.zs-wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .zs-wrap { width: min(72rem, calc(100% - 3rem)); }
}

.zs-icon { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.zs-icon-lg { width: 1.25rem; height: 1.25rem; }

/* Header */
.zs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--zs-border);
  background: color-mix(in oklab, var(--zs-surface) 95%, transparent);
  backdrop-filter: blur(12px);
}
body.admin-bar .zs-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .zs-header { top: 46px; }
}

.zs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
@media (min-width: 640px) {
  .zs-header-inner { height: 4.5rem; }
}

.zs-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
}
.zs-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  object-fit: cover;
}
.zs-brand-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zs-fg);
}
.zs-brand-tag {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--zs-muted);
}
@media (min-width: 640px) {
  .zs-brand-tag { display: block; }
}

.zs-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1024px) {
  .zs-nav { display: flex; }
}
.zs-nav a {
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zs-muted);
}
.zs-nav a:hover { color: var(--zs-fg); background: var(--zs-surface); }
.zs-nav a.is-active { background: var(--zs-callout); color: var(--zs-primary); }

.zs-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.zs-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--zs-fg);
  cursor: pointer;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .zs-menu-toggle { display: none; }
}

.zs-mobile-nav {
  display: none;
  border-top: 1px solid var(--zs-border);
  background: var(--zs-surface);
}
.zs-mobile-nav.is-open { display: block; }
.zs-mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem 5rem;
}
.zs-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--zs-border);
  font-size: 1rem;
  font-weight: 500;
}
.zs-mobile-nav a:last-child { border-bottom: 0; color: var(--zs-primary); }
@media (min-width: 1024px) {
  .zs-mobile-nav { display: none !important; }
}

/* Buttons */
.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 150ms var(--zs-ease), box-shadow 150ms var(--zs-ease), transform 150ms var(--zs-ease);
}
.zs-btn:active { transform: scale(0.96); }
.zs-btn:focus-visible {
  outline: 2px solid var(--zs-ring);
  outline-offset: 2px;
}
a.zs-btn--primary,
button.zs-btn--primary,
.zs-btn--primary {
  background: var(--zs-primary);
  color: var(--zs-on-primary, var(--zs-primary-fg, #f6f8fb));
  box-shadow: var(--zs-shadow);
}
a.zs-btn--primary:hover,
.zs-btn--primary:hover { background: var(--zs-primary-hover); }
.zs-btn--accent {
  background: var(--zs-accent);
  color: var(--zs-accent-fg);
  box-shadow: var(--zs-shadow);
}
.zs-btn--accent:hover { background: var(--zs-accent-hover); }
.zs-btn--secondary {
  background: var(--zs-raised);
  color: var(--zs-fg);
  box-shadow: var(--zs-shadow);
}
.zs-btn--secondary:hover { box-shadow: var(--zs-shadow-hover); }
.zs-btn--sm { height: 2.5rem; padding: 0 0.9rem; font-size: 0.875rem; border-radius: 8px; }
.zs-btn--md { height: 2.75rem; padding: 0 1rem; font-size: 0.875rem; border-radius: 8px; }
.zs-btn--lg { height: 3rem; padding: 0 1.25rem; font-size: 1rem; border-radius: 10px; }
.zs-header-cta { display: none; }
@media (min-width: 640px) {
  .zs-header-cta { display: inline-flex; }
}
.zs-header a.zs-header-cta,
.zs-header a.zs-btn--primary {
  color: var(--zs-on-primary, #f6f8fb);
}

.zs-badge {
  display: inline-flex;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: var(--zs-callout);
  color: var(--zs-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zs-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zs-accent);
}
.zs-kicker--on-dark { color: var(--zs-accent); }
.zs-kicker--soft { color: var(--zs-accent-hover); }

.zs-card {
  background: var(--zs-raised);
  border-radius: var(--zs-radius-lg);
  box-shadow: var(--zs-shadow);
  transition: box-shadow 150ms var(--zs-ease);
}
a.zs-card:hover,
.zs-card:hover { box-shadow: var(--zs-shadow-hover); }

.zs-page-hero {
  border-bottom: 1px solid var(--zs-border);
  background: var(--zs-surface);
}
.zs-page-hero-inner {
  width: min(48rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}
@media (min-width: 640px) {
  .zs-page-hero-inner { width: min(48rem, calc(100% - 3rem)); padding: 4rem 0; }
}
.zs-page-hero h1 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}
.zs-page-hero .lede {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--zs-muted);
}

/* Home hero */
.zs-hero {
  position: relative;
  isolation: isolate;
  min-height: 32rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .zs-hero { min-height: 38rem; }
}
.zs-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.zs-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--zs-fg), color-mix(in oklab, var(--zs-fg) 55%, transparent) 55%, color-mix(in oklab, var(--zs-fg) 25%, transparent));
}
.zs-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 32rem;
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .zs-hero-inner { min-height: 38rem; padding: 5rem 0; }
}
.zs-hero-mark {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  object-fit: cover;
}
@media (min-width: 640px) {
  .zs-hero-mark { width: 4rem; height: 4rem; }
}
section.zs-hero h1,
.zs-hero .zs-hero-inner > h1 {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--zs-on-primary, var(--zs-primary-fg, #f6f8fb));
}
.zs-hero .lede {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--zs-on-primary, #f6f8fb) 88%, transparent);
}
.zs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.zs-section { padding: 4rem 0; }
.zs-section--tight { padding: 3rem 0; }
.zs-section--surface {
  background: var(--zs-surface);
  border-block: 1px solid var(--zs-border);
}
.zs-section--primary {
  background: var(--zs-primary);
  color: var(--zs-primary-fg);
  border: 0;
}
.zs-section--warn { background: var(--zs-warn); border-top: 1px solid var(--zs-border); }

.zs-split {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .zs-split { grid-template-columns: 1fr 1fr; align-items: center; }
}
.zs-split img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: var(--zs-radius-lg);
  box-shadow: var(--zs-shadow);
}

.zs-grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .zs-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.zs-grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .zs-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.zs-pillar { padding: 1.5rem; display: block; }
.zs-pillar .zs-kicker { margin-top: 1rem; }
.zs-pillar h2 { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 600; }
.zs-pillar p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--zs-muted); }
.zs-pillar .more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zs-primary);
}

.zs-essay-card { display: flex; flex-direction: column; overflow: hidden; }
.zs-essay-card img { width: 100%; height: 11rem; object-fit: cover; outline: none; }
.zs-essay-card .body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.zs-essay-card h2,
.zs-essay-card h3 { margin-top: 0.75rem; font-size: 1.25rem; font-weight: 600; }
.zs-essay-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--zs-muted); flex: 1; }
.zs-essay-card .meta { margin-top: 1rem; font-size: 0.75rem; color: var(--zs-subtle); }

.zs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.zs-row h2 { margin-top: 0.5rem; font-size: 1.875rem; font-weight: 600; }

.zs-gather-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.zs-gather-list a { display: block; padding: 0.85rem 1rem; border-radius: 12px; }
.zs-gather-list .type { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--zs-accent-hover); }
.zs-gather-list .title { margin-top: 0.2rem; font-weight: 500; }
.zs-gather-list .when { font-size: 0.9rem; color: var(--zs-muted); }

.zs-principle { padding: 1.5rem; }
.zs-principle h3 { font-size: 1.25rem; font-weight: 600; }
.zs-principle p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--zs-muted); }

.zs-band {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .zs-band { flex-direction: row; align-items: center; justify-content: space-between; }
}
.zs-band h2 { font-size: 1.875rem; font-weight: 600; }
.zs-band p { margin-top: 0.75rem; color: color-mix(in oklab, var(--zs-primary-fg) 80%, transparent); }

.zs-note {
  padding: 3rem 0;
  font-size: 0.9rem;
  color: var(--zs-muted);
}
.zs-note a { font-weight: 500; color: var(--zs-primary); text-decoration: underline; text-underline-offset: 4px; }

/* Filters */
.zs-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.zs-chip {
  height: 2.5rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--zs-raised);
  color: var(--zs-muted);
  box-shadow: var(--zs-shadow);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.zs-chip.is-on { background: var(--zs-primary); color: var(--zs-primary-fg); box-shadow: none; }

.zs-search {
  position: relative;
  margin-top: 2rem;
}
.zs-search .zs-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--zs-subtle);
  pointer-events: none;
}
.zs-input,
.zs-textarea {
  width: 100%;
  border: 1px solid var(--zs-border);
  background: var(--zs-raised);
  color: var(--zs-fg);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  box-shadow: var(--zs-shadow);
}
.zs-input { height: 2.75rem; }
.zs-search .zs-input { padding-left: 2.5rem; }
.zs-textarea { min-height: 6.5rem; resize: vertical; }
.zs-input:focus,
.zs-textarea:focus {
  outline: 2px solid var(--zs-ring);
  outline-offset: 1px;
}
.zs-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* Article */
.zs-article-head {
  width: min(48rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}
.zs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zs-primary);
}
.zs-article-head .zs-badge { margin-top: 1.5rem; }
.zs-article-head h1 { margin-top: 1rem; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.zs-article-head .lede { margin-top: 1rem; font-size: 1.125rem; color: var(--zs-muted); }
.zs-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--zs-subtle);
}
.zs-article-hero {
  display: block;
  width: 100%;
  max-width: 64rem;
  height: 16rem;
  margin: 0 auto;
  object-fit: cover;
}
@media (min-width: 640px) {
  .zs-article-hero {
    height: 20rem;
    margin-top: 2rem;
    border-radius: var(--zs-radius-lg);
  }
}
.zs-prose {
  width: min(48rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  gap: 1.25rem;
}
.zs-prose-p { font-size: 1.05rem; line-height: 1.75; }
.zs-prose-h2 { padding-top: 1rem; font-size: 1.5rem; font-weight: 600; }
.zs-prose-ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.zs-prose-ul li {
  border-left: 2px solid color-mix(in oklab, var(--zs-primary) 30%, transparent);
  padding-left: 1rem;
  line-height: 1.7;
}
.zs-callout {
  background: var(--zs-callout);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--zs-shadow);
}
.zs-callout-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--zs-primary);
}
.zs-callout p + p { margin-top: 0.4rem; }
.zs-quote {
  margin: 0;
  border-left: 2px solid var(--zs-primary);
  padding-left: 1.25rem;
  font-family: var(--zs-font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}
.zs-quote cite { display: block; margin-top: 0.5rem; font-family: var(--zs-font-sans); font-size: 0.9rem; font-style: normal; color: var(--zs-muted); }

.zs-related { padding: 3rem 0; }
.zs-related h2 { font-size: 1.5rem; }
.zs-related ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.zs-related a { display: block; padding: 1rem 1.25rem; border-radius: 12px; }
.zs-related a p + p { margin-top: 0.25rem; font-size: 0.9rem; color: var(--zs-muted); }

/* Gatherings */
.zs-g-card { display: flex; flex-direction: column; padding: 1.5rem; }
.zs-g-card h2 { margin-top: 1rem; font-size: 1.5rem; font-weight: 600; }
.zs-g-card .summary { margin-top: 0.75rem; flex: 1; font-size: 0.9rem; color: var(--zs-muted); }
.zs-g-meta { margin-top: 1.25rem; display: grid; gap: 0.4rem; font-size: 0.9rem; color: var(--zs-muted); }
.zs-g-meta p { display: flex; align-items: center; gap: 0.5rem; }
.zs-saved-flag { font-size: 0.75rem; font-weight: 500; color: var(--zs-primary); }

.zs-check-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
}
.zs-check-item input { margin-top: 0.2rem; width: 1.15rem; height: 1.15rem; accent-color: var(--zs-primary); }
.zs-check-item strong { display: block; font-weight: 500; }
.zs-check-item span { display: block; margin-top: 0.25rem; font-size: 0.9rem; color: var(--zs-muted); }

.zs-prompt { padding: 1rem 1.25rem; }
.zs-prompt .num { font-size: 0.75rem; font-weight: 600; color: var(--zs-primary); }

.zs-flag {
  border-left: 2px solid var(--zs-danger);
  padding-left: 1rem;
  line-height: 1.7;
}

.zs-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zs-callout);
  color: var(--zs-primary);
  font-family: var(--zs-font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.zs-form { display: grid; gap: 1rem; }
.zs-lockup {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  border-radius: var(--zs-radius-lg);
  box-shadow: var(--zs-shadow);
}

.zs-empty { padding: 4rem 0; text-align: center; color: var(--zs-muted); }

/* Footer */
.zs-footer {
  margin-top: auto;
  background: var(--zs-primary);
  color: var(--zs-primary-fg);
}
.zs-footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .zs-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.zs-footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.zs-footer-brand img { width: 3rem; height: 3rem; border-radius: 10px; }
.zs-footer-brand span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.zs-footer p { margin-top: 1rem; font-size: 0.9rem; color: color-mix(in oklab, var(--zs-primary-fg) 75%, transparent); max-width: 28rem; }
.zs-footer a { color: color-mix(in oklab, var(--zs-primary-fg) 75%, transparent); }
.zs-footer a:hover { color: var(--zs-primary-fg); }
.zs-footer .zs-accent-link { color: var(--zs-accent); font-weight: 500; text-underline-offset: 4px; }
.zs-footer .zs-accent-link:hover { text-decoration: underline; }
.zs-footer h3 {
  font-family: var(--zs-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zs-accent);
}
.zs-footer ul { list-style: none; padding: 0; margin: 0.75rem 0 0; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.zs-footer-legal {
  border-top: 1px solid color-mix(in oklab, var(--zs-primary-fg) 15%, transparent);
}
.zs-footer-legal p {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: color-mix(in oklab, var(--zs-primary-fg) 60%, transparent);
}

.zs-toast {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 80;
  background: var(--zs-primary);
  color: var(--zs-primary-fg);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  box-shadow: var(--zs-shadow-hover);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms var(--zs-ease), transform 180ms var(--zs-ease);
}
.zs-toast.is-on { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.zs-hidden { display: none !important; }
.zs-mt-2 { margin-top: 0.5rem; }
.zs-mt-3 { margin-top: 0.75rem; }
.zs-mt-4 { margin-top: 1rem; }
.zs-mt-6 { margin-top: 1.5rem; }
.zs-mt-8 { margin-top: 2rem; }
.zs-narrow { width: min(48rem, calc(100% - 2rem)); margin-inline: auto; }

.zs-elementor-main {
  width: 100%;
}
.zs-elementor-main > .elementor,
body.elementor-page .zs-elementor-main,
body.zs-has-elementor .zs-elementor-main {
  max-width: none;
}
.zs-elementor-main .elementor-section-boxed > .elementor-container {
  max-width: 72rem;
}
