/* ── Font family variables (mirrors main.css) ── */
:root {
  --font-heading: "CachetPro", "Open Sans", sans-serif;
  --font-body: "Noto Serif", Georgia, serif;
}

/*
 * YMCA of Greater Tulsa — shared.css
 * Shared components used across all subpages:
 * section band headers, page body container
 */

.section-band {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}
.section-band-bar {
  width: 7px;
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
}
.section-band-inner {
  background: #f4f4f2;
  padding: 16px 26px;
  flex: 1;
  border-radius: 0 6px 6px 0;
  border: 0.5px solid #ebebeb;
  border-left: none;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-band-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1;
}
.section-band-sub {
  font-size: 12px;
  color: #aaa;
}

.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px var(--pad) 0;
}
.page-section {
  margin-bottom: 72px;
}

@media (max-width: 767px) {
  .page-body {
    padding-top: 48px;
  }
}

/* WordPress default editor content — rendered before page builder sections */
.wp-default-content {
  padding: 0 0 40px 0;
}
.wp-default-content:empty {
  display: none;
}
