/* Loving Hands Ministries — Avada-facing component and utility layer.

   Use these class names in Avada Builder's "CSS Class" fields or in markup
   emitted by the Loving Hands Site Core plugin shortcodes. Keep business logic,
   analytics, schema, and integrations outside this child theme. */

/* -------------------------------------------------------------------------
   Buttons and links
   ------------------------------------------------------------------------- */
.lh-button,
.fusion-button.lh-button,
.lh-button--primary,
.fusion-button.lh-button--primary,
.lh-cta-primary,
.fusion-button.lh-cta-primary,
.lh-cta-secondary,
.fusion-button.lh-cta-secondary,
.lh-cta-inverse,
.fusion-button.lh-cta-inverse,
.lh-cta-ghost,
.fusion-button.lh-cta-ghost {
  align-items: center;
  border-radius: var(--lh-radius-sm);
  display: inline-flex;
  font-family: var(--lh-font-sans);
  font-size: var(--lh-text-button);
  font-weight: 800;
  gap: var(--lh-space-2);
  justify-content: center;
  letter-spacing: -0.005em;
  line-height: 1.15;
  min-height: 44px;
  padding: 0 var(--lh-space-5);
  text-decoration: none;
  transition: background-color var(--lh-dur-base) var(--lh-ease-out), border-color var(--lh-dur-base) var(--lh-ease-out), color var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out);
}

.lh-cta-primary,
.lh-button--primary,
.fusion-button.lh-cta-primary,
.fusion-button.lh-button--primary {
  background: var(--lh-red-700);
  border: 1.5px solid var(--lh-red-700);
  color: var(--lh-white);
}

.lh-cta-primary:hover,
.lh-cta-primary:focus,
.lh-button--primary:hover,
.lh-button--primary:focus,
.fusion-button.lh-cta-primary:hover,
.fusion-button.lh-cta-primary:focus,
.fusion-button.lh-button--primary:hover,
.fusion-button.lh-button--primary:focus {
  background: var(--lh-red-900);
  border-color: var(--lh-red-900);
  color: var(--lh-white);
}

.lh-cta-primary:active,
.lh-button--primary:active,
.fusion-button.lh-cta-primary:active,
.fusion-button.lh-button--primary:active {
  background: var(--lh-red-900);
  border-color: var(--lh-red-900);
}

.lh-cta-secondary,
.fusion-button.lh-cta-secondary {
  background: transparent;
  border: 1.5px solid var(--lh-charcoal-700);
  color: var(--lh-charcoal-900);
}

.lh-cta-secondary:hover,
.lh-cta-secondary:focus,
.fusion-button.lh-cta-secondary:hover,
.fusion-button.lh-cta-secondary:focus {
  background: var(--lh-gray-100);
  border-color: var(--lh-charcoal-900);
  color: var(--lh-charcoal-900);
}

.lh-cta-inverse,
.fusion-button.lh-cta-inverse {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  color: var(--lh-white);
}

.lh-cta-inverse:hover,
.lh-cta-inverse:focus,
.fusion-button.lh-cta-inverse:hover,
.fusion-button.lh-cta-inverse:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--lh-white);
}

.lh-cta-ghost,
.fusion-button.lh-cta-ghost,
.lh-link-arrow {
  background: transparent;
  border-color: transparent;
  color: var(--lh-red-700);
  min-height: 36px;
  padding-inline: var(--lh-space-1);
}

.lh-cta-ghost:hover,
.lh-cta-ghost:focus,
.fusion-button.lh-cta-ghost:hover,
.fusion-button.lh-cta-ghost:focus,
.lh-link-arrow:hover,
.lh-link-arrow:focus {
  color: var(--lh-red-900);
}

.lh-button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-3);
}

.lh-button-row > p {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-3);
  margin: 0;
}

.lh-button-row .fusion-button.fusion-button,
.lh-button-row .lh-button {
  display: inline-flex !important;
  margin: 0 !important;
  width: auto !important;
}

.fusion-builder-live-preview .lh-button-row,
.fusion-builder-live-preview .lh-button-row > p {
  align-items: center !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: var(--lh-space-3) !important;
}

.fusion-builder-live-preview .lh-button-row > *,
.fusion-builder-live-preview .lh-button-row > p > *,
.fusion-builder-live-preview .lh-button-row .fusion-builder-live-element,
.fusion-builder-live-preview .lh-button-row .fusion-builder-live-element > *,
.fusion-builder-live-preview .lh-button-row .fusion-button-wrapper {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  max-width: max-content !important;
  width: auto !important;
}

.lh-outbound::after,
a[target="_blank"].lh-outbound::after {
  content: " ↗";
  font-size: 0.9em;
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   Cards, chips, media
   ------------------------------------------------------------------------- */
.lh-card,
a.lh-card {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--lh-space-3);
  padding: clamp(var(--lh-space-5), 3vw, var(--lh-space-7));
  text-decoration: none;
  transition: transform var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out), border-color var(--lh-dur-base) var(--lh-ease-out);
}

.lh-card:hover,
a.lh-card:hover,
.lh-card:focus-within {
  border-color: rgba(168, 3, 3, 0.20);
  box-shadow: var(--lh-shadow-md);
  transform: translateY(-2px);
}

.lh-card-flat {
  box-shadow: none;
}

.lh-card-feature {
  box-shadow: var(--lh-shadow-sm);
  overflow: hidden;
  padding: 0;
}

.lh-card-feature__body {
  display: flex;
  flex-direction: column;
  gap: var(--lh-space-3);
  padding: clamp(var(--lh-space-5), 3vw, var(--lh-space-6));
}

.lh-card__icon,
.lh-icon-tile {
  align-items: center;
  background: var(--lh-bg-attention);
  border-radius: var(--lh-radius-sm);
  color: var(--lh-red-700);
  display: inline-flex;
  flex: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.lh-icon,
.lh-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.lh-chip {
  align-items: center;
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-pill);
  color: var(--lh-charcoal-700);
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 700;
  gap: var(--lh-space-2);
  line-height: 1.1;
  min-height: 32px;
  padding: var(--lh-space-1) var(--lh-space-3);
  width: fit-content;
}

.lh-chip-strong {
  background: var(--lh-red-700);
  border-color: var(--lh-red-700);
  color: var(--lh-white);
}

.lh-chip-info {
  background: var(--lh-bg-info);
  border-color: rgba(24, 150, 209, 0.35);
  color: var(--lh-charcoal-900);
}

.lh-chip__dot {
  background: var(--lh-campus-accent, var(--lh-red-700));
  border-radius: 50%;
  flex: none;
  height: 7px;
  width: 7px;
}

.lh-media,
.lh-photo {
  background: var(--lh-stone-300);
  border-radius: var(--lh-radius-lg);
  display: block;
  overflow: hidden;
  position: relative;
}

.lh-media img,
.lh-photo img,
.lh-media iframe,
.lh-media video {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lh-media-16x9 { aspect-ratio: 16 / 9; }
.lh-media-21x9 { aspect-ratio: 21 / 9; }
.lh-media-4x3 { aspect-ratio: 4 / 3; }
.lh-media-4x5 { aspect-ratio: 4 / 5; }

.lh-team-grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lh-team-card {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  box-shadow: 0 2px 6px rgba(20, 20, 20, 0.03), 0 14px 36px rgba(20, 20, 20, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out), transform var(--lh-dur-base) var(--lh-ease-out);
}

.lh-team-card:hover,
.lh-team-card:focus-within {
  border-color: rgba(168, 3, 3, 0.22);
  box-shadow: var(--lh-shadow-md);
  transform: translateY(-2px);
}

.lh-team-card__image {
  aspect-ratio: 4 / 5;
  background: var(--lh-bg-stone);
  overflow: hidden;
}

.lh-team-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.lh-team-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 28px);
}

.lh-team-card__eyebrow {
  color: var(--lh-red-700);
  font-size: 0.765rem;
  font-weight: 800;
  letter-spacing: var(--lh-tracking-eyebrow);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.lh-team-card__name {
  color: var(--lh-fg-strong);
  font-family: var(--lh-font-sans);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.lh-team-card__role {
  color: var(--lh-fg);
  font-size: 0.965rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.lh-team-card__bio {
  color: var(--lh-fg-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.lh-leadership-feature {
  align-items: stretch;
  background: var(--lh-bg-stone);
  border-radius: var(--lh-radius-lg);
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.lh-leadership-feature__media {
  min-height: 360px;
}

.lh-leadership-feature__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lh-leadership-feature__body {
  align-self: center;
  padding: clamp(28px, 5vw, 56px);
}

.lh-leadership-feature__body p:last-child {
  margin-bottom: 0;
}

.lh-photo-placeholder {
  align-items: center;
  background: linear-gradient(135deg, var(--lh-charcoal-500), var(--lh-charcoal-900));
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 220px;
  text-align: center;
  text-transform: uppercase;
}

.lh-photo-placeholder[data-photo]::after {
  content: attr(data-photo);
  padding: var(--lh-space-5);
}

/* -------------------------------------------------------------------------
   Gravity Forms
   ------------------------------------------------------------------------- */
.lh-form-section .lh-form-panel {
  margin-inline: auto;
  max-width: var(--lh-width-reading);
}

.lh-form-section .gform_wrapper {
  --gf-ctrl-border-color-focus: var(--lh-red-700);
  --gf-ctrl-outline-color-focus: rgba(168, 3, 3, 0.34);
  --gf-ctrl-outline-offset: 3px;
  --gf-ctrl-outline-width-focus: 2px;
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-top: 4px solid var(--lh-red-700);
  box-shadow: var(--lh-shadow-sm);
  color: var(--lh-fg);
  margin-top: var(--lh-space-6);
  padding: clamp(var(--lh-space-5), 4vw, var(--lh-space-7));
}

.lh-form-section .gform_heading,
.lh-form-section .gform_required_legend {
  display: none;
}

.lh-form-section .gform_fields {
  gap: var(--lh-space-5) !important;
}

.lh-form-section .gfield {
  margin: 0 !important;
}

.lh-form-section .gfield_label,
.lh-form-section .gform-field-label {
  color: var(--lh-charcoal-900);
  font-family: var(--lh-font-sans);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.lh-form-section .gfield_required,
.lh-form-section .gfield_required_text {
  color: var(--lh-red-700) !important;
  font-weight: 800;
}

.lh-form-section input[type="text"],
.lh-form-section input[type="email"],
.lh-form-section input[type="tel"],
.lh-form-section input[type="url"],
.lh-form-section input[type="number"],
.lh-form-section select,
.lh-form-section textarea {
  background: var(--lh-white) !important;
  border: 1px solid var(--lh-border-stone) !important;
  border-radius: var(--lh-radius-sm) !important;
  box-shadow: none !important;
  color: var(--lh-charcoal-900) !important;
  font-family: var(--lh-font-sans) !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  min-height: 48px;
  padding: 12px 14px !important;
  transition: border-color var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out);
}

.lh-form-section select {
  appearance: none;
  padding-right: 48px !important;
  -webkit-appearance: none;
}

.lh-form-section textarea {
  min-height: 144px;
  resize: vertical;
}

.lh-form-section .ginput_container_select,
.lh-form-section .gravity-select-parent {
  min-height: 48px;
  position: relative;
}

.lh-form-section .gravity-select-parent .select-arrow {
  align-items: center;
  color: var(--lh-charcoal-700);
  display: flex;
  font-size: 0 !important;
  height: 48px !important;
  justify-content: center;
  left: auto !important;
  line-height: 1 !important;
  pointer-events: none;
  position: absolute !important;
  right: 0;
  top: 0;
  width: 48px !important;
  z-index: 2;
}

.lh-form-section .gravity-select-parent .select-arrow::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  display: block;
  height: 8px;
  transform: translateY(-2px) rotate(45deg);
  width: 8px;
}

.lh-form-section input:focus,
.lh-form-section select:focus,
.lh-form-section textarea:focus {
  border-color: var(--lh-red-700) !important;
  box-shadow: var(--lh-focus-ring-soft) !important;
  outline: 2px solid var(--lh-red-700) !important;
  outline-offset: 3px;
}

.lh-form-section .gfield_checkbox,
.lh-form-section .gchoice {
  display: grid;
  gap: var(--lh-space-2);
}

.lh-form-section .gchoice {
  align-items: start;
  grid-template-columns: 22px minmax(0, 1fr);
}

.lh-form-section .gchoice input {
  margin-top: 2px;
}

.lh-form-section .gfield_description,
.lh-form-section .gfield_validation_message,
.lh-form-section .validation_message {
  color: var(--lh-fg-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lh-form-section .gform_footer {
  margin-top: var(--lh-space-6) !important;
  padding: 0 !important;
}

.lh-form-section .gform_button,
.lh-form-section input[type="submit"] {
  align-items: center;
  background: var(--lh-red-700) !important;
  border: 1px solid var(--lh-red-700) !important;
  border-radius: var(--lh-radius-sm) !important;
  color: var(--lh-white) !important;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--lh-font-sans) !important;
  font-size: var(--lh-text-button) !important;
  font-weight: 800 !important;
  height: 48px !important;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1 !important;
  min-height: 48px !important;
  min-width: 160px;
  padding: 0 var(--lh-space-5) !important;
  text-decoration: none;
  transition: background-color var(--lh-dur-base) var(--lh-ease-out), border-color var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out);
}

.lh-form-section .gform_button:hover,
.lh-form-section .gform_button:focus,
.lh-form-section input[type="submit"]:hover,
.lh-form-section input[type="submit"]:focus {
  background: var(--lh-red-900) !important;
  border-color: var(--lh-red-900) !important;
  box-shadow: var(--lh-focus-ring-soft);
}

.lh-form-section .gform_validation_errors {
  background: var(--lh-bg-attention);
  border: 1px solid rgba(168, 3, 3, 0.28);
  border-radius: var(--lh-radius-sm);
  color: var(--lh-red-900);
  margin-bottom: var(--lh-space-5);
  padding: var(--lh-space-4);
}

/* -------------------------------------------------------------------------
   Campus accents
   ------------------------------------------------------------------------- */
.lh-campus-accent-palmetto { --lh-campus-accent: var(--lh-campus-palmetto); }
.lh-campus-accent-dade,
.lh-campus-accent-dade-city { --lh-campus-accent: var(--lh-campus-dade); }
.lh-campus-accent-georgia { --lh-campus-accent: var(--lh-campus-georgia); }

.lh-campus-border,
.lh-campus-rule-top {
  border-top: 4px solid var(--lh-campus-accent, var(--lh-red-700));
}

.lh-campus-rule {
  background: var(--lh-campus-accent, var(--lh-red-700));
  display: block;
  height: 4px;
  width: 100%;
}

.lh-campus-pin {
  color: var(--lh-campus-accent, var(--lh-red-700));
}

/* -------------------------------------------------------------------------
   Reusable Avada section classes L01–L12
   ------------------------------------------------------------------------- */
.lh-hero {
  background: var(--lh-bg-inverse);
  color: var(--lh-fg-inverse);
  min-height: clamp(520px, 72vh, 760px);
  overflow: hidden;
  padding-block: clamp(var(--lh-space-10), 12vw, var(--lh-space-12));
  position: relative;
}

.lh-hero-light {
  background: var(--lh-bg-stone);
  color: var(--lh-fg);
  min-height: auto;
}

.lh-hero__media,
.lh-hero__overlay {
  inset: 0;
  position: absolute;
}

.lh-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lh-hero__media {
  opacity: 0.44;
}

.lh-hero__overlay {
  background: linear-gradient(180deg, rgba(30, 30, 31, 0.20) 0%, rgba(30, 30, 31, 0.42) 50%, rgba(30, 30, 31, 0.86) 100%);
  pointer-events: none;
}

.lh-hero__inner {
  margin-inline: auto;
  max-width: 920px;
  position: relative;
  width: min(100% - (var(--lh-gutter) * 2), var(--lh-width-page));
  z-index: 1;
}

.lh-hero h1,
.lh-hero .lh-h1 {
  color: var(--lh-white);
  max-width: 14ch;
}

.lh-hero p,
.lh-hero .lh-body-lg {
  color: var(--lh-fg-inverse-muted);
  max-width: 42rem;
}

.lh-hero-light h1,
.lh-hero-light .lh-h1 { color: var(--lh-fg-strong); }
.lh-hero-light p,
.lh-hero-light .lh-body-lg { color: var(--lh-fg); }

.lh-hero__proof {
  align-items: center;
  color: var(--lh-fg-inverse-subtle);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--lh-text-meta);
  gap: var(--lh-space-4);
  margin-top: var(--lh-space-6);
}

.lh-status-dot {
  background: var(--lh-green-500);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: var(--lh-space-2);
  width: 7px;
}

.lh-quickpaths .lh-card {
  height: 100%;
}

.lh-textmedia {
  align-items: center;
  display: grid;
  gap: clamp(var(--lh-space-6), 5vw, var(--lh-space-9));
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.lh-textmedia-reverse .lh-textmedia__media {
  order: -1;
}

.lh-campus-grid,
.lh-campus-cards {
  display: grid;
  gap: var(--lh-space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lh-campus-card {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  box-shadow: var(--lh-shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lh-campus-card__image {
  aspect-ratio: 16 / 10;
  background: var(--lh-stone-300);
}

.lh-campus-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--lh-space-3);
  padding: var(--lh-space-5);
}

.lh-campus-card__title {
  font-size: var(--lh-text-h4, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.lh-campus-card__title a {
  color: var(--lh-fg-strong);
  text-decoration: none;
}

.lh-campus-card__title a:hover,
.lh-campus-card__title a:focus {
  color: var(--lh-red-700);
}

.lh-campus-card__phone {
  color: var(--lh-fg-muted);
  font-size: var(--lh-text-meta);
  font-weight: 700;
  margin: 0;
}

.lh-campus-card__phone a {
  color: inherit;
  text-decoration: none;
}

.lh-campus-card__phone a:hover,
.lh-campus-card__phone a:focus {
  color: var(--lh-red-700);
}

.lh-campus-card__actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--lh-space-3);
  margin-top: auto;
  padding-top: var(--lh-space-3);
}

.lh-campus-card__cta {
  align-self: flex-start;
}

.lh-campus-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-2) var(--lh-space-4);
}

/* v2 CT3: keep "what to include" / check-list bullets at body size, not the
   small meta size inherited from the surrounding Avada text element. */
.lh-check-list,
.lh-check-list li {
  font-size: var(--lh-text-body);
  line-height: 1.55;
}

/* v2 C4: balance the section-level "Need help choosing a campus?" CTA band —
   vertically centre the actions column with the text instead of letting the
   buttons float at the top with a large gap beneath. Scoped to the section
   container variant so the finalCta banner (a div, not a section) is untouched. */
.fusion-fullwidth.lh-section.lh-cta-banner > .fusion-builder-row,
.fusion-fullwidth.lh-section.lh-cta-banner .fusion-row {
  align-items: center !important;
}

.lh-cta-banner__actions .lh-button-row {
  justify-content: flex-end;
}

.lh-campus-card dl,
.lh-fact-list {
  display: grid;
  gap: var(--lh-space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: var(--lh-space-2) 0 0;
}

.lh-campus-card dt,
.lh-fact-list dt {
  color: var(--lh-fg-muted);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lh-campus-card dd,
.lh-fact-list dd {
  color: var(--lh-fg-strong);
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
}

.lh-testimony {
  align-items: center;
  display: grid;
  gap: clamp(var(--lh-space-6), 5vw, var(--lh-space-9));
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.lh-testimony__meta {
  align-items: center;
  color: var(--lh-fg-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--lh-text-meta);
  gap: var(--lh-space-3);
}

.lh-testimony-grid {
  display: grid;
  gap: var(--lh-space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lh-testimony-grid--spotlight {
  grid-template-columns: minmax(0, 1fr);
}

.lh-testimony-card {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  box-shadow: var(--lh-shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--lh-dur-base) var(--lh-ease-out), box-shadow var(--lh-dur-base) var(--lh-ease-out), border-color var(--lh-dur-base) var(--lh-ease-out);
}

.lh-testimony-grid--spotlight .lh-testimony-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
}

.lh-testimony-card:hover,
.lh-testimony-card:focus-within {
  border-color: rgba(168, 3, 3, 0.20);
  box-shadow: var(--lh-shadow-md);
  transform: translateY(-2px);
}

.lh-testimony-card__image {
  aspect-ratio: 4 / 5;
  background: var(--lh-stone-300);
  display: block;
  overflow: hidden;
}

.lh-testimony-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lh-testimony-grid--spotlight .lh-testimony-card__image {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.lh-testimony-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--lh-space-3);
  padding: var(--lh-space-5);
}

.lh-testimony-card__body h3 {
  font-size: var(--lh-text-h4, 1.375rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.lh-testimony-card__body h3 a {
  color: var(--lh-fg-strong);
  text-decoration: none;
}

.lh-testimony-card__body h3 a:hover,
.lh-testimony-card__body h3 a:focus {
  color: var(--lh-red-700);
}

.lh-testimony-card__meta {
  color: var(--lh-fg-muted);
  font-size: var(--lh-text-meta);
  font-weight: 700;
  margin: 0;
}

.lh-testimony-card__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-3);
  margin-top: auto;
  padding-top: var(--lh-space-2);
}

.lh-link {
  color: var(--lh-red-700);
  font-weight: 700;
  text-decoration: none;
}

.lh-link:hover,
.lh-link:focus {
  color: var(--lh-red-900);
  text-decoration: underline;
}

.lh-play-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--lh-shadow-md);
  color: var(--lh-red-700);
  display: inline-flex;
  height: 72px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
}

.lh-impact-band {
  background: var(--lh-bg-inverse);
  color: var(--lh-fg-inverse);
}

.lh-impact-grid {
  border-top: 1px solid var(--lh-border-inverse);
  display: grid;
  gap: var(--lh-space-6);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: var(--lh-space-6);
}

.lh-stat__value {
  color: var(--lh-white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lh-stat__label {
  color: var(--lh-white);
  font-weight: 800;
  margin-top: var(--lh-space-3);
}

.lh-stat__sub {
  color: var(--lh-fg-inverse-subtle);
  font-size: var(--lh-text-meta);
  margin-top: var(--lh-space-1);
}

.lh-cta-banner {
  background: var(--lh-bg-stone);
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
  padding: clamp(var(--lh-space-7), 6vw, var(--lh-space-10));
  position: relative;
}

.lh-cta-banner-dark {
  background: var(--lh-bg-inverse);
  color: var(--lh-fg-inverse);
}

.lh-cta-banner-dark h2,
.lh-cta-banner-dark p { color: inherit; }
.lh-cta-banner-dark p { color: var(--lh-fg-inverse-muted); }

.lh-faq-list,
.lh-accordion-reset {
  max-width: var(--lh-width-reading);
}

.lh-faq-list .fusion-panel,
.lh-faq-list details,
.lh-faq-item {
  border-bottom: var(--lh-border-hair);
}

.lh-faq-list .panel-title a,
.lh-faq-list summary,
.lh-faq-question {
  color: var(--lh-fg-strong);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  min-height: 44px;
  padding-block: var(--lh-space-4);
}

.lh-mapcontact {
  align-items: stretch;
  display: grid;
  gap: var(--lh-space-6);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.lh-mapcontact__details {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  padding: var(--lh-space-6);
}

.lh-mapcontact__map {
  background: var(--lh-bg-stone);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  min-height: 320px;
  overflow: hidden;
}

.lh-campus-director {
  display: flow-root;
  margin-block: var(--lh-space-4) var(--lh-space-5);
}

.lh-mapcontact__details .lh-campus-director__image {
  border-radius: var(--lh-radius-md);
  box-shadow: var(--lh-shadow-sm);
  display: block;
  float: left;
  margin: 2px var(--lh-space-5) var(--lh-space-4) 0;
  max-width: 156px;
  overflow: hidden;
  width: clamp(112px, 36%, 156px);
}

.lh-mapcontact__details .lh-campus-director__image img {
  aspect-ratio: 4 / 5;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.lh-campus-director__name,
.lh-campus-director__name p {
  color: var(--lh-fg-strong);
  font-weight: 900;
  margin-bottom: 2px;
}

.lh-campus-director__role,
.lh-campus-director__role p {
  color: var(--lh-red-700);
  font-size: var(--lh-text-meta);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: var(--lh-space-3);
  text-transform: uppercase;
}

.lh-campus-director__bio,
.lh-campus-director__bio p {
  color: var(--lh-fg-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.lh-campus-contact,
.lh-campus-contact p {
  color: var(--lh-fg-strong);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lh-campus-contact--address {
  border-top: var(--lh-border-hair);
  clear: both;
  margin-top: var(--lh-space-5);
  padding-top: var(--lh-space-5);
}

.lh-eventpromo,
.lh-handoff-panel {
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
}

.lh-eventpromo {
  background: var(--lh-bg-muted);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
}

.lh-eventpromo__body {
  padding: clamp(var(--lh-space-6), 5vw, var(--lh-space-8));
}

.lh-events-archive .tribe-common {
  color: var(--lh-fg);
  font-family: var(--lh-font-sans);
}

.lh-events-archive .tribe-events,
.lh-events-archive .tribe-events-widget {
  max-width: none;
  width: 100%;
}

.lh-events-archive .tribe-events-widget-events-list {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  box-shadow: var(--lh-shadow-sm);
  margin-top: var(--lh-space-4);
  overflow: hidden;
}

.lh-events-archive .tribe-events-widget-events-list__event-row {
  border-bottom: var(--lh-border-hair);
  display: grid;
  gap: var(--lh-space-4);
  grid-template-columns: minmax(64px, 0.12fr) minmax(0, 1fr);
  margin: 0 !important;
  padding: var(--lh-space-5) !important;
}

.lh-events-archive .tribe-events-widget-events-list__event-row:last-child {
  border-bottom: 0;
}

.lh-events-archive .tribe-events-widget-events-list__event-date-tag {
  background: var(--lh-bg-attention);
  border: 1px solid rgba(184, 28, 35, 0.18);
  border-radius: var(--lh-radius-sm);
  min-width: 64px;
  padding: var(--lh-space-2);
  text-align: center;
}

.lh-events-archive .tribe-events-widget-events-list__event-date-tag-month,
.lh-events-archive .tribe-events-widget-events-list__event-date-tag-daynum {
  color: var(--lh-red-700);
  display: block;
  font-family: var(--lh-font-sans);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.lh-events-archive .tribe-events-widget-events-list__event-date-tag-month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.lh-events-archive .tribe-events-widget-events-list__event-date-tag-daynum {
  font-size: 1.75rem;
  margin-top: 4px;
}

.lh-events-archive .tribe-events-widget-events-list__event-title,
.lh-events-archive .tribe-events-widget-events-list__event-title-link {
  color: var(--lh-charcoal-900) !important;
  font-family: var(--lh-font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0;
  line-height: 1.12;
  text-decoration: none;
}

.lh-events-archive .tribe-events-widget-events-list__event-title-link:hover,
.lh-events-archive .tribe-events-widget-events-list__event-title-link:focus {
  color: var(--lh-red-700) !important;
}

.lh-events-archive .tribe-events-widget-events-list__event-datetime,
.lh-events-archive .tribe-events-widget-events-list__event-venue,
.lh-events-archive .tribe-events-widget-events-list__event-organizer,
.lh-events-archive .tribe-events-widget-events-list__event-cost {
  color: var(--lh-fg-muted);
  font-family: var(--lh-font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.lh-events-archive .tribe-events-widget-events-list__view-more {
  border-top: var(--lh-border-hair);
  margin: 0 !important;
  padding: var(--lh-space-4) var(--lh-space-5) !important;
}

.lh-events-archive .tribe-events-widget-events-list__view-more-link {
  color: var(--lh-red-700) !important;
  font-weight: 800;
  text-decoration: none;
}

.lh-events-archive .tribe-events-c-messages__message {
  align-items: flex-start;
  background: var(--lh-bg-stone) !important;
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-sm);
  color: var(--lh-fg-muted);
  display: flex;
  gap: var(--lh-space-3);
  margin: var(--lh-space-4) !important;
  padding: var(--lh-space-4) !important;
}

.lh-progress {
  background: var(--lh-gray-200);
  border-radius: var(--lh-radius-pill);
  height: 8px;
  overflow: hidden;
}

.lh-progress__bar {
  background: var(--lh-red-700);
  border-radius: inherit;
  height: 100%;
  width: var(--lh-progress-value, 0%);
}

.lh-handoff-panel {
  background: var(--lh-bg-info);
  border-color: rgba(24, 150, 209, 0.35);
  padding: clamp(var(--lh-space-5), 4vw, var(--lh-space-7));
}

.lh-handoff-panel .lh-eyebrow {
  color: var(--lh-blue-700);
}

.lh-step-list {
  counter-reset: lh-step;
  display: grid;
  gap: var(--lh-space-4);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.lh-step-list > li {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-md);
  counter-increment: lh-step;
  padding: var(--lh-space-5);
  position: relative;
}

.lh-step-list > li::before {
  color: var(--lh-red-700);
  content: counter(lh-step, decimal-leading-zero);
  display: block;
  font-size: var(--lh-text-meta);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: var(--lh-space-2);
}

.lh-anchor-chips {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-2);
}

.lh-anchor-chips a {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-pill);
  color: var(--lh-fg-strong);
  font-size: var(--lh-text-meta);
  font-weight: 800;
  min-height: 36px;
  padding: var(--lh-space-2) var(--lh-space-4);
  text-decoration: none;
}

.lh-anchor-chips a:hover,
.lh-anchor-chips a:focus {
  border-color: var(--lh-red-700);
  color: var(--lh-red-700);
}

.lh-video-block .lh-media {
  box-shadow: var(--lh-shadow-sm);
}

.lh-testimony-media {
  align-items: center;
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  box-shadow: var(--lh-shadow-sm);
  display: grid;
  gap: clamp(var(--lh-space-5), 4vw, var(--lh-space-8));
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding: clamp(var(--lh-space-5), 4vw, var(--lh-space-7));
}

.lh-testimony-media__video,
.lh-testimony-media__body {
  min-width: 0;
}

.lh-testimony-media__body {
  color: var(--lh-fg);
  display: flex;
  flex-direction: column;
  gap: var(--lh-space-4);
}

.lh-testimony-media__body h2,
.lh-testimony-media__body h3,
.lh-testimony-media__body p {
  margin: 0;
}

.lh-testimony-media__body h2 {
  color: var(--lh-fg-strong);
  font-family: var(--lh-font-heading);
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  line-height: 1.08;
}

.lh-testimony-media__body > p:not(.lh-eyebrow) {
  color: var(--lh-fg-muted);
  font-size: var(--lh-text-body-lg);
  line-height: 1.6;
}

.lh-video-transcript {
  background: var(--lh-bg-muted);
  border-radius: var(--lh-radius-md);
  margin-top: var(--lh-space-4);
  padding: var(--lh-space-5);
}

/* Header/footer polish hooks for Avada Layout classes. */
.lh-header-shell {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: var(--lh-border-hair);
}

.lh-js .lh-header-shell.lh-is-scrolled {
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.08);
}

.lh-mobile-utility {
  background: var(--lh-white);
  border-top: 2px solid var(--lh-red-700);
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(20, 20, 20, 0.10);
  display: none;
  left: 0;
  padding: var(--lh-space-2) max(var(--lh-space-2), env(safe-area-inset-right)) max(var(--lh-space-2), env(safe-area-inset-bottom)) max(var(--lh-space-2), env(safe-area-inset-left));
  position: fixed;
  right: 0;
  z-index: 999;
}

.lh-mobile-utility a,
.lh-mobile-utility .fusion-button {
  align-items: center;
  flex: 1;
  justify-content: center;
  line-height: 1.1;
  min-height: 48px;
  text-align: center;
  white-space: normal !important;
}

.lh-mobile-utility .fusion-button-text {
  line-height: 1.1;
  white-space: normal;
}

.lh-footer-shell {
  background: var(--lh-bg-inverse);
  color: var(--lh-fg-inverse-muted);
}

.lh-footer-shell p,
.lh-footer-shell li,
.lh-footer-shell .lh-body,
.lh-footer-shell .lh-meta {
  color: var(--lh-fg-inverse-muted);
}

.lh-footer-shell a {
  color: var(--lh-fg-inverse-muted);
  text-decoration: none;
}

.lh-footer-shell a:hover,
.lh-footer-shell a:focus {
  color: var(--lh-white);
}

.lh-footer-shell h2,
.lh-footer-shell h3,
.lh-footer-shell h4,
.lh-footer-shell .fusion-title-heading {
  color: var(--lh-white) !important;
}

.lh-footer__legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lh-space-3) var(--lh-space-5);
  margin-top: var(--lh-space-6);
}

.lh-footer__legal a,
.lh-footer__copy {
  line-height: 1.4;
}

.lh-section-inverse h1,
.lh-section-inverse h2,
.lh-section-inverse h3,
.lh-section-inverse h4,
.lh-section-inverse h5,
.lh-section-inverse h6,
.lh-section-inverse .fusion-title-heading {
  color: var(--lh-white) !important;
}

.lh-section-inverse a:not(.fusion-button):not(.lh-button):not(.lh-button--primary):not(.lh-cta-primary):not(.lh-cta-secondary):not(.lh-cta-inverse):not(.lh-cta-ghost) {
  color: var(--lh-white);
}

.lh-section-inverse a:not(.fusion-button):not(.lh-button):not(.lh-button--primary):not(.lh-cta-primary):not(.lh-cta-secondary):not(.lh-cta-inverse):not(.lh-cta-ghost):hover,
.lh-section-inverse a:not(.fusion-button):not(.lh-button):not(.lh-button--primary):not(.lh-cta-primary):not(.lh-cta-secondary):not(.lh-cta-inverse):not(.lh-cta-ghost):focus {
  color: #ffb4b8;
}

@media (max-width: 1024px) {
  .lh-textmedia,
  .lh-testimony,
  .lh-testimony-media,
  .lh-mapcontact,
  .lh-eventpromo {
    grid-template-columns: 1fr;
  }

  .lh-textmedia-reverse .lh-textmedia__media {
    order: 0;
  }

  .lh-campus-grid,
  .lh-campus-cards,
  .lh-testimony-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lh-impact-grid,
  .lh-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html.lh-js {
    scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .lh-mobile-utility {
    display: flex;
    gap: var(--lh-space-2);
  }

  body.lh-has-mobile-utility {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .lh-button-row,
  .lh-hero__proof,
  .lh-testimony__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .lh-testimony-grid--spotlight .lh-testimony-card {
    display: flex;
  }

  .lh-testimony-grid--spotlight .lh-testimony-card__image {
    height: auto;
  }

  .lh-button,
  .fusion-button.lh-button,
  .lh-button--primary,
  .fusion-button.lh-button--primary,
  .lh-cta-primary,
  .fusion-button.lh-cta-primary,
  .lh-cta-secondary,
  .fusion-button.lh-cta-secondary,
  .lh-cta-inverse,
  .fusion-button.lh-cta-inverse {
    width: 100%;
  }

  .lh-hero {
    min-height: auto;
  }

  .lh-hero__inner {
    width: min(100% - (var(--lh-gutter-mobile) * 2), var(--lh-width-page));
  }

  .lh-campus-grid,
  .lh-campus-cards,
  .lh-testimony-grid,
  .lh-impact-grid,
  .lh-step-list,
  .lh-campus-card dl,
  .lh-fact-list {
    grid-template-columns: 1fr;
  }

  .lh-eventpromo__media {
    min-height: 260px;
    order: -1;
  }

  .lh-anchor-chips {
    flex-wrap: nowrap;
    margin-inline: calc(var(--lh-gutter-mobile) * -1);
    overflow-x: auto;
    padding-inline: var(--lh-gutter-mobile);
    scroll-snap-type: x mandatory;
  }

  .lh-anchor-chips a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* -------------------------------------------------------------------------
   Client MVP Avada specificity layer.
   These selectors intentionally outrank Fusion's generated CSS in public and
   Live Builder surfaces while keeping the markup editable in Avada.
   ------------------------------------------------------------------------- */
.fusion-fullwidth.lh-header-shell.lh-header-shell {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: var(--lh-border-hair) !important;
  color: var(--lh-fg-strong);
  position: sticky;
  top: 0;
  z-index: 50;
}

.fusion-fullwidth.lh-header-shell.lh-header-shell > .fusion-builder-row,
.fusion-fullwidth.lh-header-shell.lh-header-shell .fusion-row {
  align-items: stretch;
  box-sizing: border-box;
  column-gap: 40px;
  display: grid !important;
  grid-template-areas:
    "brand utility"
    "brand nav";
  grid-template-columns: minmax(236px, 280px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--lh-width-page) !important;
  min-height: 112px;
  padding-block: 0;
  width: min(calc(100% - 48px), var(--lh-width-page)) !important;
}

.lh-header-shell .fusion-layout-column,
.lh-header-shell .fusion_builder_column,
.lh-header-shell .fusion-builder-column {
  margin-bottom: 0 !important;
}

.lh-header-shell .fusion-column-wrapper {
  min-height: 0 !important;
}

.lh-header-shell .fusion-text,
.lh-header-shell .fusion-text p {
  margin: 0 !important;
}

.lh-header-shell .lh-header__brand {
  align-items: center;
  align-self: stretch;
  border-right: var(--lh-border-hair);
  display: flex !important;
  grid-area: brand;
  max-width: none;
  padding: 18px 28px 18px 0;
  width: auto !important;
}

.lh-header-shell .lh-header__nav {
  align-items: center;
  display: flex !important;
  grid-area: nav;
  justify-content: flex-end;
  min-width: 0;
  padding: 12px 0 14px;
  width: auto !important;
}

.lh-header-shell .lh-header__utility {
  align-items: center;
  border-bottom: var(--lh-border-hair);
  display: flex !important;
  grid-area: utility;
  justify-content: flex-end;
  min-width: 0;
  padding: 14px 0 12px;
  width: auto !important;
}

.lh-header-shell .lh-header__mobile-menu {
  display: none !important;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  width: auto !important;
}

.lh-brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.lh-brand:hover,
.lh-brand:focus {
  color: var(--lh-fg-strong);
  text-decoration: none;
}

.lh-brand__mark {
  display: block;
  flex: none;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.lh-header-shell .lh-brand--header .lh-brand__mark {
  height: 68px;
  width: 68px;
}

.lh-brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.lh-brand__name {
  color: var(--lh-charcoal-900);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.lh-header-shell .lh-brand--header .lh-brand__name {
  font-size: 1.3125rem;
  letter-spacing: 0;
}

.lh-brand__sub {
  color: var(--lh-charcoal-500);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.lh-header-shell .lh-brand--header .lh-brand__sub {
  font-size: 0.75rem;
}

.lh-primary-menu,
.lh-primary-menu .fusion-menu-element-wrapper,
.lh-primary-menu .fusion-menu,
.lh-primary-menu .awb-menu__main-ul {
  --awb-active-bg: transparent !important;
  --awb-active-border-color: var(--lh-red-700) !important;
  --awb-active-color: var(--lh-red-700) !important;
  --awb-color: var(--lh-charcoal-900) !important;
  min-width: 0;
  width: 100%;
}

.lh-primary-menu .fusion-menu,
.lh-primary-menu .awb-menu__main-ul {
  align-items: center;
  display: flex !important;
  direction: ltr;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 0 28px;
  justify-content: flex-end;
  list-style: none;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.lh-primary-menu .awb-menu__m-toggle {
  display: none !important;
}

.lh-primary-menu .fusion-menu > li,
.lh-primary-menu .awb-menu__main-li {
  margin: 0 !important;
  padding: 0 !important;
}

.lh-primary-menu .menu-item-has-children {
  position: relative;
}

.lh-primary-menu a {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--lh-charcoal-900) !important;
  display: inline-flex;
  font-size: 0.90625rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 44px;
  padding: 8px 0 !important;
  text-decoration: none;
  white-space: nowrap;
}

.lh-primary-menu a:hover,
.lh-primary-menu a:focus {
  border-bottom-color: var(--lh-red-700);
  color: var(--lh-red-700) !important;
}

.lh-primary-menu .current-menu-item > .awb-menu__main-a,
.lh-primary-menu .current_page_item > .awb-menu__main-a,
.lh-primary-menu .current-menu-ancestor > .awb-menu__main-a,
.lh-primary-menu .current_page_ancestor > .awb-menu__main-a,
.lh-primary-menu .current-page-ancestor > .awb-menu__main-a,
.lh-primary-menu .current-menu-parent > .awb-menu__main-a,
.lh-primary-menu .current_page_parent > .awb-menu__main-a,
.lh-primary-menu .current-menu-item > a,
.lh-primary-menu .current_page_item > a,
.lh-primary-menu .current-menu-ancestor > a,
.lh-primary-menu .current_page_ancestor > a,
.lh-primary-menu .current-page-ancestor > a,
.lh-primary-menu .current-menu-parent > a,
.lh-primary-menu .current_page_parent > a {
  border-bottom-color: var(--lh-red-700) !important;
  color: var(--lh-red-700) !important;
}

.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-page-ancestor > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-parent > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_parent > .awb-menu__main-a.awb-menu__main-a {
  border-bottom-color: var(--lh-red-700) !important;
  color: var(--lh-red-700) !important;
}

.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-page-ancestor > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-parent > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_parent > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-page-ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-parent > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_parent > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-page-ancestor > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current-menu-parent > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu .current_page_parent > .awb-menu__main-a.awb-menu__main-a .awb-menu__open-nav-submenu-hover::before {
  color: var(--lh-red-700) !important;
}

.lh-primary-menu .awb-menu__sub-ul,
.lh-primary-menu .sub-menu {
  background: var(--lh-white) !important;
  border: var(--lh-border-hair) !important;
  border-top: 3px solid var(--lh-red-700) !important;
  border-radius: 0 0 var(--lh-radius-md) var(--lh-radius-md) !important;
  box-shadow: var(--lh-shadow-md) !important;
  display: block !important;
  flex-direction: column !important;
  gap: 0 !important;
  list-style: none;
  margin: 0 !important;
  max-width: calc(100vw - 48px);
  min-width: 280px !important;
  overflow: hidden;
  padding: 10px 0 !important;
  transition: none !important;
  width: min(320px, calc(100vw - 48px)) !important;
}

.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu.awb-menu_desktop .awb-menu__sub-ul.awb-menu__sub-ul_main,
.fusion-fullwidth.lh-header-shell .lh-primary-menu.lh-primary-menu.awb-menu_desktop .sub-menu {
  inline-size: min(320px, calc(100vw - 48px)) !important;
  left: 0 !important;
  max-inline-size: calc(100vw - 48px) !important;
  max-width: calc(100vw - 48px) !important;
  min-inline-size: 280px !important;
  min-width: 280px !important;
  right: auto !important;
  width: min(320px, calc(100vw - 48px)) !important;
}

.lh-primary-menu .menu-item:hover > .awb-menu__sub-ul,
.lh-primary-menu .menu-item:focus-within > .awb-menu__sub-ul,
.lh-primary-menu .awb-menu__main-li:hover > .awb-menu__sub-ul,
.lh-primary-menu .awb-menu__main-li:focus-within > .awb-menu__sub-ul,
.lh-primary-menu .menu-item:hover > .sub-menu,
.lh-primary-menu .menu-item:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1000 !important;
}

.lh-primary-menu .awb-menu__sub-li,
.lh-primary-menu .sub-menu li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.lh-primary-menu .awb-menu__sub-a,
.lh-primary-menu .sub-menu a {
  align-items: center;
  border-bottom: 0 !important;
  color: var(--lh-charcoal-900) !important;
  display: flex !important;
  font-size: 0.90625rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  min-height: 46px;
  padding: 12px 18px !important;
  white-space: normal;
  width: 100%;
}

.lh-primary-menu .awb-menu__sub-a:hover,
.lh-primary-menu .awb-menu__sub-a:focus,
.lh-primary-menu .sub-menu a:hover,
.lh-primary-menu .sub-menu a:focus,
.lh-primary-menu .awb-menu__sub-ul .current-menu-item > a,
.lh-primary-menu .awb-menu__sub-ul .current_page_item > a,
.lh-primary-menu .current-menu-item > .awb-menu__sub-a,
.lh-primary-menu .current_page_item > .awb-menu__sub-a,
.lh-primary-menu .sub-menu .current-menu-item > a,
.lh-primary-menu .sub-menu .current_page_item > a {
  background: var(--lh-bg-attention) !important;
  color: var(--lh-red-700) !important;
}

.lh-header__utility .lh-button-row {
  align-items: center;
  display: flex;
  flex-wrap: nowrap !important;
  gap: 8px;
  justify-content: flex-end;
}

.lh-header__utility-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
}

.lh-header__utility-actions {
  flex: 0 1 auto;
  min-width: 0;
}

.lh-header__utility .fusion-text,
.lh-header__utility .lh-button-row > p {
  align-items: center;
  display: flex;
  flex-wrap: nowrap !important;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
}

.lh-header__utility .fusion-button,
.lh-header__utility .lh-button {
  font-size: 0.875rem;
  min-height: 38px;
  padding-inline: 14px !important;
  white-space: nowrap;
}

.lh-header__utility .fusion-button.lh-cta-ghost,
.lh-header__utility .lh-button.lh-cta-ghost {
  background: var(--lh-bg-attention);
  border: 1.5px solid rgba(168, 3, 3, 0.24);
  color: var(--lh-red-700);
  padding-inline: 14px !important;
}

.lh-header__utility .fusion-button.lh-cta-ghost:hover,
.lh-header__utility .fusion-button.lh-cta-ghost:focus,
.lh-header__utility .lh-button.lh-cta-ghost:hover,
.lh-header__utility .lh-button.lh-cta-ghost:focus {
  background: var(--lh-white);
  border-color: var(--lh-red-700);
  color: var(--lh-red-900);
}

.lh-header__social {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
}

.lh-social-links {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.lh-social-link {
  --lh-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.1 0-5 2-5 5v3H6v4h3v6h4v-6h3.1l.9-4h-4V9.3c0-.8.4-1.3 1-1.3Z'/%3E%3C/svg%3E");
  align-items: center;
  border-radius: var(--lh-radius-sm);
  color: var(--lh-charcoal-700) !important;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  text-decoration: none;
  transition: background-color var(--lh-dur-base) var(--lh-ease-out), color var(--lh-dur-base) var(--lh-ease-out);
  width: 36px;
}

.lh-social-link::before {
  background: currentColor;
  content: "";
  display: block;
  height: 20px;
  mask: var(--lh-social-icon) center / contain no-repeat;
  width: 20px;
  -webkit-mask: var(--lh-social-icon) center / contain no-repeat;
}

.lh-social-link--instagram {
  --lh-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 3A2.5 2.5 0 0 0 5 7.5v9A2.5 2.5 0 0 0 7.5 19h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 16.5 5h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm4.9-3.1a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.lh-social-link--youtube {
  --lh-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12s0-3.4-.4-5a3 3 0 0 0-2.1-2.1C17.8 4.5 12 4.5 12 4.5s-5.8 0-7.5.4A3 3 0 0 0 2.4 7C2 8.6 2 12 2 12s0 3.4.4 5a3 3 0 0 0 2.1 2.1c1.7.4 7.5.4 7.5.4s5.8 0 7.5-.4a3 3 0 0 0 2.1-2.1c.4-1.6.4-5 .4-5ZM10 15.5v-7l6 3.5-6 3.5Z'/%3E%3C/svg%3E");
}

.lh-social-link:hover,
.lh-social-link:focus {
  background: var(--lh-bg-attention);
  color: var(--lh-red-700) !important;
}

.lh-header__social .fusion-social-networks,
.lh-header__social .fusion-social-networks-wrapper,
.lh-header__social .fusion-social-networks.boxed-icons {
  align-items: center;
  display: flex !important;
  gap: 10px;
  justify-content: flex-end;
  margin: 0 !important;
}

.lh-header__social .fusion-social-network-icon,
.lh-header-social .fusion-social-network-icon {
  align-items: center;
  border-radius: var(--lh-radius-sm);
  color: var(--lh-charcoal-700) !important;
  display: inline-flex !important;
  height: 36px;
  justify-content: center;
  margin: 0 !important;
  text-decoration: none;
  transition: background-color var(--lh-dur-base) var(--lh-ease-out), color var(--lh-dur-base) var(--lh-ease-out);
  width: 36px;
}

.lh-header__social .fusion-social-network-icon:hover,
.lh-header__social .fusion-social-network-icon:focus,
.lh-header-social .fusion-social-network-icon:hover,
.lh-header-social .fusion-social-network-icon:focus {
  background: var(--lh-bg-attention);
  color: var(--lh-red-700) !important;
}

.lh-menu-panel {
  position: relative;
}

.lh-menu-panel:not([open]) .lh-menu-panel__dropdown {
  display: none !important;
}

.lh-menu-panel > summary {
  list-style: none;
}

.lh-menu-panel > summary::-webkit-details-marker {
  display: none;
}

.lh-menu-trigger {
  align-items: center;
  background: var(--lh-white);
  border: 1.5px solid var(--lh-charcoal-700);
  border-radius: var(--lh-radius-sm);
  color: var(--lh-charcoal-900);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--lh-font-sans);
  font-size: 0.9375rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1;
  min-height: 44px;
  padding: 0 14px;
  transition: background-color var(--lh-dur-base) var(--lh-ease-out), border-color var(--lh-dur-base) var(--lh-ease-out), color var(--lh-dur-base) var(--lh-ease-out);
}

.lh-menu-trigger:hover,
.lh-menu-trigger:focus {
  background: var(--lh-bg-attention);
  border-color: var(--lh-red-700);
  color: var(--lh-red-700);
}

.lh-menu-trigger__icon {
  display: inline-grid;
  gap: 4px;
  width: 18px;
}

.lh-menu-trigger__icon span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform var(--lh-dur-base) var(--lh-ease-out), opacity var(--lh-dur-base) var(--lh-ease-out);
  width: 18px;
}

.lh-menu-panel[open] .lh-menu-trigger {
  background: var(--lh-bg-attention);
  border-color: var(--lh-red-700);
  color: var(--lh-red-700);
}

.lh-menu-panel[open] .lh-menu-trigger__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.lh-menu-panel[open] .lh-menu-trigger__icon span:nth-child(2) {
  opacity: 0;
}

.lh-menu-panel[open] .lh-menu-trigger__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lh-menu-panel__dropdown {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-top: 3px solid var(--lh-red-700);
  box-shadow: var(--lh-shadow-md);
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 18px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px));
  z-index: 1000;
}

.lh-menu-panel[open] .lh-menu-panel__dropdown {
  display: block !important;
}

.lh-menu-panel__head {
  border-bottom: var(--lh-border-hair);
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
  padding-bottom: 12px;
}

.lh-menu-panel__head strong {
  color: var(--lh-charcoal-900);
  font-size: 1rem;
  line-height: 1.2;
}

.lh-mobile-menu,
.lh-mobile-menu .fusion-menu-element-wrapper,
.lh-mobile-menu .fusion-menu,
.lh-mobile-menu .awb-menu__main-ul {
  --awb-active-bg: var(--lh-bg-attention) !important;
  --awb-active-border-color: var(--lh-red-700) !important;
  --awb-active-color: var(--lh-red-700) !important;
  --awb-color: var(--lh-charcoal-900) !important;
  width: 100%;
}

.lh-menu-panel__dropdown > .lh-mobile-menu,
.lh-mobile-menu .fusion-menu,
.lh-mobile-menu .awb-menu__main-ul {
  display: grid !important;
  gap: 4px;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-content: stretch !important;
  justify-items: stretch !important;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.lh-menu-panel__dropdown > .lh-mobile-menu > li,
.lh-mobile-menu .fusion-menu > li,
.lh-mobile-menu .awb-menu__main-li {
  box-sizing: border-box;
  display: block !important;
  justify-self: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.lh-mobile-menu a {
  align-items: center;
  border-radius: var(--lh-radius-sm);
  color: var(--lh-charcoal-900) !important;
  display: flex !important;
  font-size: 0.9375rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  line-height: 1.25;
  min-height: 44px;
  padding: 11px 12px !important;
  text-decoration: none;
  white-space: normal;
  width: 100%;
}

.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu a {
  align-items: center !important;
  box-sizing: border-box;
  display: flex !important;
  justify-content: flex-start !important;
  position: relative !important;
  width: 100% !important;
  z-index: 2 !important;
}

.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .awb-menu__main-background-default,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .awb-menu__main-background-active {
  pointer-events: none !important;
  z-index: 0 !important;
}

.lh-mobile-menu a::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  background: currentColor;
  border-radius: 0;
  content: "";
  flex: 0 0 auto;
  height: 20px;
  mask: var(--lh-mobile-menu-icon) center / contain no-repeat;
  opacity: 0.72;
  width: 20px;
  -webkit-mask: var(--lh-mobile-menu-icon) center / contain no-repeat;
}

.lh-mobile-menu a[href*="/get-help/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-4.35-9.2-9.1C1.1 8.2 3.2 5 6.7 5c2 0 3.4 1.1 4.3 2.3C11.9 6.1 13.3 5 15.3 5c3.5 0 5.6 3.2 3.9 6.9C17 16.65 12 21 12 21Z'/%3E%3Cpath d='M9 12h6'/%3E%3Cpath d='M12 9v6'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/admissions/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4h8'/%3E%3Cpath d='M9 2h6v4H9z'/%3E%3Cpath d='M6 5H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M8 16h5'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/campuses/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.2 6-11a6 6 0 1 0-12 0c0 5.8 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.4'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/stories/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5V5a2 2 0 0 1 2-2h12v16H6a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M8 7h6'/%3E%3Cpath d='M8 11h7'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/get-involved/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11v8'/%3E%3Cpath d='M17 11v8'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M12 20V9'/%3E%3Cpath d='M12 9c-1.5 0-4-1-4-3a2 2 0 0 1 4 0c0-2 4-2 4 0 0 2-2.5 3-4 3Z'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/about/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v5'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
}

.lh-mobile-menu a[href*="/contact/"]::before {
  --lh-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.lh-mobile-menu a:hover,
.lh-mobile-menu a:focus,
.lh-mobile-menu .current-menu-item > a,
.lh-mobile-menu .current_page_item > a,
.lh-mobile-menu .current-menu-ancestor > a,
.lh-mobile-menu .current_page_ancestor > a {
  background: var(--lh-bg-attention);
  border-color: var(--lh-red-700) !important;
  color: var(--lh-red-700) !important;
}

.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-item > a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_item > a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-ancestor > a,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_ancestor > a {
  background: var(--lh-bg-attention) !important;
  border-color: var(--lh-red-700) !important;
  color: var(--lh-red-700) !important;
}

.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-item > a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_item > a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-ancestor > a::before,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_ancestor > a::before {
  background: var(--lh-red-700) !important;
  color: var(--lh-red-700) !important;
}

.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-item > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_item > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current-menu-ancestor > .awb-menu__main-a.awb-menu__main-a .menu-text,
.fusion-fullwidth.lh-header-shell .lh-mobile-menu.lh-mobile-menu .current_page_ancestor > .awb-menu__main-a.awb-menu__main-a .menu-text {
  color: var(--lh-red-700) !important;
}

.lh-mobile-menu a:hover::before,
.lh-mobile-menu a:focus::before,
.lh-mobile-menu .current-menu-item > a::before,
.lh-mobile-menu .current_page_item > a::before,
.lh-mobile-menu .current-menu-ancestor > a::before,
.lh-mobile-menu .current_page_ancestor > a::before {
  opacity: 1;
}

.lh-menu-panel__actions {
  border-top: var(--lh-border-hair);
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 14px;
}

.lh-menu-panel__actions .lh-menu-action {
  justify-content: flex-start;
  min-height: 44px;
  padding-inline: 12px !important;
  width: 100%;
}

.lh-menu-panel__actions .lh-menu-action::before {
  align-items: center;
  background: currentColor;
  content: "";
  display: inline-flex;
  flex: 0 0 auto;
  height: 20px;
  justify-content: center;
  margin-right: 2px;
  mask: var(--lh-menu-action-icon) center / contain no-repeat;
  opacity: 0.72;
  width: 20px;
  -webkit-mask: var(--lh-menu-action-icon) center / contain no-repeat;
}

.lh-menu-panel__actions .lh-menu-action--call::before {
  --lh-menu-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E");
}

.lh-menu-panel__actions .lh-menu-action--apply::before {
  --lh-menu-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
}

.lh-menu-panel__actions .lh-menu-action--give::before {
  --lh-menu-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-4.35-9.2-9.1C1.1 8.2 3.2 5 6.7 5c2 0 3.4 1.1 4.3 2.3C11.9 6.1 13.3 5 15.3 5c3.5 0 5.6 3.2 3.9 6.9C17 16.65 12 21 12 21Z'/%3E%3C/svg%3E");
}

.lh-menu-panel__social {
  align-items: center;
  border-top: var(--lh-border-hair);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
}

.lh-menu-panel__social-label {
  color: var(--lh-charcoal-500);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.lh-menu-panel__social .lh-social-links {
  gap: 8px;
}

.lh-menu-panel__social .lh-social-link {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  height: 38px;
  width: 38px;
}

.lh-menu-panel__social .lh-social-link:hover,
.lh-menu-panel__social .lh-social-link:focus {
  border-color: rgba(168, 3, 3, 0.24);
}

.fusion-fullwidth.lh-mobile-utility.lh-mobile-utility {
  background: var(--lh-white) !important;
  border-top: 2px solid var(--lh-red-700) !important;
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(20, 20, 20, 0.10);
  display: none !important;
  left: 0;
  padding: var(--lh-space-2) max(var(--lh-space-2), env(safe-area-inset-right)) max(var(--lh-space-2), env(safe-area-inset-bottom)) max(var(--lh-space-2), env(safe-area-inset-left)) !important;
  position: fixed;
  right: 0;
  z-index: 999;
}

.lh-admin-notice.lh-admin-notice {
  box-sizing: border-box;
  max-width: 100% !important;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  width: auto !important;
}

.fusion-fullwidth.lh-hero.lh-hero {
  background: var(--lh-bg-inverse) !important;
  color: var(--lh-fg-inverse) !important;
  min-height: 620px;
  overflow: hidden;
  padding-block: var(--lh-space-11) var(--lh-space-10) !important;
  position: relative;
}

.fusion-fullwidth.lh-hero.lh-hero::after {
  background-image: url("../images/logo-white.avif");
  background-position: right max(32px, calc((100vw - var(--lh-width-page)) / 2)) center;
  background-repeat: no-repeat;
  background-size: min(34vw, 360px) auto;
  content: "";
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  position: absolute;
}

.fusion-fullwidth.lh-hero.lh-hero > .fusion-builder-row,
.fusion-fullwidth.lh-hero.lh-hero .fusion-row,
.fusion-fullwidth.lh-section.lh-section > .fusion-builder-row,
.fusion-fullwidth.lh-section.lh-section .fusion-row {
  margin-inline: auto;
  max-width: var(--lh-width-page);
  position: relative;
  width: min(100% - (var(--lh-gutter) * 2), var(--lh-width-page));
  z-index: 1;
}

.fusion-fullwidth.lh-hero.lh-hero .lh-hero__inner {
  max-width: 920px;
  width: 100% !important;
}

.fusion-fullwidth.lh-hero.lh-hero .fusion-title-heading,
.fusion-fullwidth.lh-hero.lh-hero h1,
.fusion-fullwidth.lh-hero.lh-hero .lh-h1 {
  color: var(--lh-white) !important;
  letter-spacing: 0;
  max-width: 16ch;
}

.fusion-fullwidth.lh-hero.lh-hero .fusion-text p,
.fusion-fullwidth.lh-hero.lh-hero p,
.fusion-fullwidth.lh-hero.lh-hero .lh-body-lg {
  color: var(--lh-fg-inverse-muted) !important;
}

.fusion-fullwidth.lh-hero.lh-hero .lh-eyebrow {
  color: #ffb4b8 !important;
}

.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light {
  background: var(--lh-bg-stone) !important;
  color: var(--lh-fg) !important;
  min-height: auto;
  padding-block: var(--lh-space-9) !important;
}

.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light::after {
  background-image: url("../images/logo-black.avif");
  opacity: 0.035;
}

.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light .fusion-title-heading,
.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light h1,
.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light .lh-h1 {
  color: var(--lh-fg-strong) !important;
}

.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light .fusion-text p,
.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light p,
.fusion-fullwidth.lh-hero.lh-hero.lh-hero-light .lh-body-lg {
  color: var(--lh-fg) !important;
}

.fusion-fullwidth.lh-section.lh-section {
  padding-block: var(--lh-space-9) !important;
}

.fusion-fullwidth.lh-section-muted.lh-section-muted {
  background: var(--lh-bg-muted) !important;
}

.fusion-fullwidth.lh-section-stone.lh-section-stone {
  background: var(--lh-bg-stone) !important;
}

.fusion-fullwidth.lh-section-inverse.lh-section-inverse,
.fusion-fullwidth.lh-impact-band.lh-impact-band {
  background: var(--lh-bg-inverse) !important;
  color: var(--lh-fg-inverse) !important;
}

.fusion-button.lh-cta-primary.lh-cta-primary,
.fusion-button.lh-button--primary.lh-button--primary {
  background: var(--lh-red-700) !important;
  border-color: var(--lh-red-700) !important;
  color: var(--lh-white) !important;
}

.fusion-button.lh-cta-secondary.lh-cta-secondary {
  background: transparent !important;
  border-color: var(--lh-charcoal-700) !important;
  color: var(--lh-charcoal-900) !important;
}

.fusion-button.lh-cta-inverse.lh-cta-inverse {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  color: var(--lh-white) !important;
}

.fusion-button.lh-cta-ghost.lh-cta-ghost {
  background: transparent !important;
  border-color: transparent !important;
  color: var(--lh-red-700) !important;
}

.fusion-button.lh-cta-primary .fusion-button-text,
.fusion-button.lh-button--primary .fusion-button-text,
.fusion-button.lh-cta-secondary .fusion-button-text,
.fusion-button.lh-cta-inverse .fusion-button-text,
.fusion-button.lh-cta-ghost .fusion-button-text {
  color: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.lh-footer-shell.lh-footer-shell::selection,
.lh-footer-shell.lh-footer-shell ::selection,
.lh-footer-shell.lh-footer-shell *::selection {
  background: rgba(237, 28, 36, 0.88);
  color: var(--lh-white);
}

.lh-footer-shell.lh-footer-shell .fusion-button.lh-cta-secondary.lh-cta-secondary,
.lh-footer-shell.lh-footer-shell .lh-button.lh-cta-secondary.lh-cta-secondary {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: var(--lh-white) !important;
}

.lh-footer-shell.lh-footer-shell .fusion-button.lh-cta-secondary.lh-cta-secondary:hover,
.lh-footer-shell.lh-footer-shell .fusion-button.lh-cta-secondary.lh-cta-secondary:focus,
.lh-footer-shell.lh-footer-shell .lh-button.lh-cta-secondary.lh-cta-secondary:hover,
.lh-footer-shell.lh-footer-shell .lh-button.lh-cta-secondary.lh-cta-secondary:focus {
  background: var(--lh-white) !important;
  border-color: var(--lh-white) !important;
  color: var(--lh-charcoal-900) !important;
}

.lh-cta-banner {
  background: var(--lh-bg-stone);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  display: grid;
  overflow: hidden;
  padding: var(--lh-space-9) var(--lh-space-8);
  position: relative;
}

.lh-cta-banner-dark {
  background: var(--lh-bg-inverse) !important;
  border-color: transparent;
  color: var(--lh-fg-inverse);
}

.lh-cta-banner__mark {
  display: block;
  height: auto;
  opacity: 0.08;
  position: absolute;
  right: var(--lh-space-7);
  top: 50%;
  transform: translateY(-50%);
  width: min(30vw, 280px);
}

.lh-cta-banner__content {
  display: grid;
  gap: var(--lh-space-4);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.lh-cta-banner h2 {
  color: var(--lh-fg-strong);
  letter-spacing: 0;
  margin: 0;
  max-width: 22ch;
}

.lh-cta-banner p {
  margin: 0;
  max-width: 56ch;
}

.lh-cta-banner .lh-button-row {
  margin-top: var(--lh-space-3);
}

.lh-cta-banner-dark h2 {
  color: var(--lh-white) !important;
}

.lh-cta-banner-dark p {
  color: var(--lh-fg-inverse-muted) !important;
}

.lh-brand-panel {
  background: var(--lh-white);
  border: var(--lh-border-hair);
  border-radius: var(--lh-radius-lg);
  color: var(--lh-fg);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  min-height: 100%;
  overflow: hidden;
  padding: var(--lh-space-6);
  position: relative;
}

.lh-brand-panel::before {
  background: var(--lh-red-700);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.lh-brand-panel__mark {
  align-self: flex-end;
  display: block;
  height: 76px;
  object-fit: contain;
  opacity: 0.18;
  width: 76px;
}

.lh-brand-panel__content {
  display: grid;
  gap: var(--lh-space-3);
  position: relative;
  z-index: 1;
}

.lh-brand-panel h3 {
  color: inherit;
  font-size: 1.75rem;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
}

.lh-brand-panel p {
  color: inherit;
  margin: 0;
  max-width: 34ch;
}

.lh-brand-panel--paper {
  background: var(--lh-white);
}

.lh-brand-panel--stone {
  background: var(--lh-bg-stone);
}

.lh-brand-panel--dark,
.lh-brand-panel--palm,
.lh-brand-panel--pine {
  border-color: transparent;
  color: var(--lh-white);
}

.lh-brand-panel--dark {
  background: var(--lh-charcoal-900);
}

.lh-brand-panel--palm {
  background: var(--lh-red-900);
}

.lh-brand-panel--pine {
  background: var(--lh-campus-georgia);
}

.lh-brand-panel--dark p,
.lh-brand-panel--palm p,
.lh-brand-panel--pine p {
  color: rgba(255, 255, 255, 0.78);
}

.lh-brand-panel--dark h3,
.lh-brand-panel--palm h3,
.lh-brand-panel--pine h3 {
  color: var(--lh-white) !important;
}

.lh-brand-panel--dark .lh-eyebrow,
.lh-brand-panel--palm .lh-eyebrow,
.lh-brand-panel--pine .lh-eyebrow {
  color: #ffb4b8;
}

.lh-media.lh-media-fill {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}

.lh-media .lh-brand-panel {
  border-radius: inherit;
}

.lh-photo-panel {
  background: var(--lh-charcoal-900);
  border: var(--lh-border-hair);
  box-shadow: var(--lh-shadow-sm);
}

.lh-photo-panel img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.001);
}

.lh-photo-panel::after {
  display: none;
}

.lh-photo-panel__caption {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.lh-photo-panel__caption .lh-eyebrow {
  color: #ffb4b8 !important;
  margin: 0;
}

.lh-photo-panel__caption strong {
  color: var(--lh-white);
  font-family: var(--lh-font-sans);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.lh-photo-panel__caption span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.45;
  max-width: 36ch;
}

.lh-campus-photo.lh-photo-panel {
  background: var(--lh-white);
  display: flex;
  flex-direction: column;
}

.lh-campus-photo.lh-photo-panel::after {
  display: none;
}

.lh-campus-photo .lh-campus-photo__image {
  aspect-ratio: 16 / 9;
  flex: 1 1 auto;
  height: auto;
  min-height: 220px;
  object-fit: cover;
}

.lh-campus-photo .lh-photo-panel__caption {
  background: var(--lh-white);
  border-top: var(--lh-border-hair);
  bottom: auto;
  clip: auto;
  clip-path: none;
  color: var(--lh-fg);
  display: grid;
  gap: 6px;
  height: auto;
  overflow: visible;
  padding: clamp(18px, 2.5vw, 24px);
  position: static;
  white-space: normal;
  width: auto;
}

.lh-campus-photo .lh-photo-panel__caption .lh-eyebrow {
  color: var(--lh-red-700) !important;
}

.lh-campus-photo .lh-photo-panel__caption strong {
  color: var(--lh-fg-strong);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

.lh-campus-photo .lh-photo-panel__caption span:last-child {
  color: var(--lh-fg-muted);
}

.lh-footer-shell .lh-brand--footer {
  color: var(--lh-white);
  margin-bottom: var(--lh-space-4);
}

.lh-footer-shell .lh-brand--footer .lh-brand__mark {
  height: 56px;
  width: 49px;
}

.lh-footer-shell .lh-brand--footer .lh-brand__name {
  color: var(--lh-white);
}

.lh-footer-shell .lh-brand--footer .lh-brand__sub {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1180px) {
  .fusion-fullwidth.lh-header-shell.lh-header-shell > .fusion-builder-row,
  .fusion-fullwidth.lh-header-shell.lh-header-shell .fusion-row {
    align-items: center;
    display: flex !important;
    flex-wrap: nowrap;
    gap: 28px;
    justify-content: space-between;
    min-height: 0;
    padding-block: 14px;
  }

  .fusion-fullwidth.lh-header-shell.lh-header-shell .lh-header__nav,
  .fusion-fullwidth.lh-header-shell.lh-header-shell .lh-header__utility,
  .lh-header-shell .lh-header__nav,
  .lh-header-shell .lh-header__utility {
    display: none !important;
    flex: 0 0 0;
    max-width: 0;
    overflow: hidden;
    width: 0 !important;
  }

  .fusion-fullwidth.lh-header-shell.lh-header-shell .lh-header__mobile-menu,
  .lh-header-shell .lh-header__mobile-menu {
    align-items: center;
    display: flex !important;
    justify-content: flex-end;
    max-width: none;
    visibility: visible !important;
  }

  .lh-header-shell .lh-header__brand {
    border-right: 0;
    padding: 0;
  }

  .lh-header-shell .lh-brand--header .lh-brand__mark {
    height: 42px;
    width: 42px;
  }

  .lh-header-shell .lh-brand--header .lh-brand__name {
    font-size: 1rem;
  }

  .lh-header-shell .lh-brand--header .lh-brand__sub {
    font-size: 0.6875rem;
  }

  .lh-leadership-feature {
    grid-template-columns: 1fr;
  }

  .lh-leadership-feature__media {
    min-height: 300px;
  }
}

@media (max-width: 1180px) {
  .lh-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .fusion-fullwidth.lh-header-shell.lh-header-shell > .fusion-builder-row,
  .fusion-fullwidth.lh-header-shell.lh-header-shell .fusion-row {
    column-gap: 28px;
    grid-template-columns: minmax(214px, 244px) minmax(0, 1fr);
  }

  .lh-primary-menu .fusion-menu,
  .lh-primary-menu .awb-menu__main-ul {
    gap: 0 18px;
  }

  .lh-primary-menu a {
    font-size: 0.875rem;
  }

  .lh-header__utility-inner {
    gap: 12px;
  }

  .lh-header__utility .fusion-button,
  .lh-header__utility .lh-button {
    font-size: 0.8125rem;
    padding-inline: 12px !important;
  }

  .lh-header-shell .lh-brand--header .lh-brand__mark {
    height: 60px;
    width: 60px;
  }

  .lh-header-shell .lh-brand--header .lh-brand__name {
    font-size: 1.125rem;
  }
}

@media (max-width: 900px) {
  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility {
    display: flex !important;
    gap: var(--lh-space-2);
  }

  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row {
    align-items: stretch;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: var(--lh-space-2);
    width: 100%;
  }

  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row > p {
    align-items: stretch;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--lh-space-2);
    margin: 0;
    width: 100%;
  }

  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .fusion-button,
  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button {
    flex: 1 1 0 !important;
    max-width: none !important;
    font-size: 0.8125rem;
    line-height: 1.1;
    min-width: 0;
    padding-inline: 8px !important;
    white-space: normal !important;
    width: auto !important;
  }

  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row > .fusion-button,
  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row > .lh-button,
  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row > p > .fusion-button,
  .fusion-fullwidth.lh-mobile-utility.lh-mobile-utility .lh-button-row > p > .lh-button {
    flex-basis: 0 !important;
    flex-grow: 1 !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .fusion-fullwidth.lh-section.lh-section {
    padding-inline: 0 !important;
  }

  .fusion-fullwidth.lh-header-shell.lh-header-shell > .fusion-builder-row,
  .fusion-fullwidth.lh-header-shell.lh-header-shell .fusion-row {
    width: min(calc(100% - 32px), var(--lh-width-page)) !important;
  }

  .lh-mapcontact__details .lh-campus-director__image {
    float: none;
    margin: 0 0 var(--lh-space-4);
    max-width: 180px;
    width: min(62vw, 180px);
  }

  .lh-brand__name {
    font-size: 0.9375rem;
  }

  .lh-brand__mark {
    height: 38px;
    width: 38px;
  }

  .lh-menu-panel__dropdown {
    max-height: calc(100vh - 116px);
    padding: 16px;
    right: 0;
  }

  .lh-events-archive .tribe-events-widget-events-list__event-row {
    grid-template-columns: 1fr;
  }

  .lh-events-archive .tribe-events-widget-events-list__event-date-tag {
    justify-self: start;
  }

  .fusion-fullwidth.lh-hero.lh-hero {
    min-height: auto;
    padding-block: var(--lh-space-9) var(--lh-space-8) !important;
  }

  .fusion-fullwidth.lh-hero.lh-hero .fusion-title-heading,
  .fusion-fullwidth.lh-hero.lh-hero h1,
  .fusion-fullwidth.lh-hero.lh-hero .lh-h1 {
    font-size: 3rem !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    overflow-wrap: break-word;
    width: 100% !important;
  }

  .fusion-fullwidth.lh-hero.lh-hero .fusion-text p,
  .fusion-fullwidth.lh-hero.lh-hero p,
  .fusion-fullwidth.lh-hero.lh-hero .lh-body-lg {
    font-size: 1.0625rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  .fusion-fullwidth.lh-hero.lh-hero .lh-button-row,
  .fusion-fullwidth.lh-hero.lh-hero .lh-button-row > p {
    align-items: stretch;
    width: 100%;
  }

  .fusion-fullwidth.lh-hero.lh-hero .lh-hero__proof {
    display: none !important;
  }

  .fusion-fullwidth.lh-hero.lh-hero::after {
    background-position: right -72px center;
    background-size: 240px auto;
  }

  .fusion-fullwidth.lh-hero.lh-hero > .fusion-builder-row,
  .fusion-fullwidth.lh-hero.lh-hero .fusion-row,
  .fusion-fullwidth.lh-section.lh-section > .fusion-builder-row,
  .fusion-fullwidth.lh-section.lh-section .fusion-row {
    width: min(100% - (var(--lh-gutter-mobile) * 2), var(--lh-width-page));
  }

  .lh-cta-banner {
    padding: var(--lh-space-7) var(--lh-space-5);
  }

  .lh-cta-banner__mark {
    right: -40px;
    width: 180px;
  }

  .lh-brand-panel {
    min-height: 260px;
    padding: var(--lh-space-5);
  }

  .lh-team-grid {
    gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lh-team-card {
    border-radius: var(--lh-radius-md);
  }

  .lh-team-card__image {
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }

  .lh-team-card__body {
    gap: 8px;
    padding: 18px;
  }

  .lh-team-card__eyebrow {
    font-size: 0.7rem;
  }

  .lh-team-card__name {
    font-size: clamp(1.35rem, 7.2vw, 1.75rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .lh-team-card__role {
    font-size: 0.925rem;
  }

  .lh-team-card__bio {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .lh-leadership-feature__media {
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  .lh-menu-trigger {
    gap: 0;
    min-width: 46px;
    padding-inline: 13px;
  }

  .lh-menu-trigger__text {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}

@media (max-width: 400px) {
  .fusion-fullwidth.lh-hero.lh-hero .fusion-title-heading,
  .fusion-fullwidth.lh-hero.lh-hero h1,
  .fusion-fullwidth.lh-hero.lh-hero .lh-h1 {
    font-size: 2.625rem !important;
    line-height: 1.08 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.lh-reduced-motion,
  html.lh-reduced-motion *,
  html.lh-reduced-motion *::before,
  html.lh-reduced-motion *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---------- v2 M1 / MO1 / MO2: mobile section stacking ----------
   At Avada's small breakpoint the content/hero flex rows were leaving stacked
   columns overlapping their neighbours (headings, paragraphs, and buttons
   printing over the next section) and the equal-height quick-path cards left
   large empty voids. Force these rows into a single clean vertical column so
   every section is a normal block that pushes the next one down. Scoped to
   lh-section / lh-hero only — header, mobile utility bar, and footer keep their
   own (already-correct) responsive rules. */
@media (max-width: 640px) {
  .fusion-fullwidth.lh-section.lh-section > .fusion-builder-row,
  .fusion-fullwidth.lh-section.lh-section .fusion-row,
  .fusion-fullwidth.lh-hero.lh-hero > .fusion-builder-row,
  .fusion-fullwidth.lh-hero.lh-hero .fusion-row {
    align-items: stretch !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    margin-inline: auto !important;
    max-width: var(--lh-width-page) !important;
    width: min(100% - (var(--lh-gutter-mobile) * 2), var(--lh-width-page)) !important;
  }

  .fusion-fullwidth.lh-section.lh-section > .fusion-builder-row > .fusion-layout-column,
  .fusion-fullwidth.lh-section.lh-section .fusion-row > .fusion-layout-column,
  .fusion-fullwidth.lh-hero.lh-hero > .fusion-builder-row > .fusion-layout-column,
  .fusion-fullwidth.lh-hero.lh-hero .fusion-row > .fusion-layout-column {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .lh-quickpaths .lh-card {
    height: auto !important;
  }
}

/* ============================================================
   Brand graphics — [lh_brand_graphic] / BrandGraphicLibrary.
   Seven branded vector/CSS panels that replace the reused stock
   photos across the site. Ported from the design system
   "Loving Hands Brand Graphics" file; every selector is scoped
   under .lh-brand-graphic so the generic inner class names
   (.bar, .venn, .cal, .timeline, .pins, .legend, …) can't leak.
   No animation — safe for print/PDF/reduced-motion by design.
   ============================================================ */
.lh-brand-graphic,
.lh-brand-graphic *,
.lh-brand-graphic *::before,
.lh-brand-graphic *::after { box-sizing: border-box; }

/* The graphic frame — 4:3 by default, fills its column, scales down. */
.lh-brand-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--lh-radius-sm);
  overflow: hidden;
  font-family: var(--lh-font-sans);
  color: var(--lh-charcoal-900);
}
.lh-brand-graphic--r16x9 { aspect-ratio: 16 / 9; }
.lh-brand-graphic--r1x1  { aspect-ratio: 1 / 1; }
.lh-brand-graphic--rfill { aspect-ratio: auto; height: 100%; }

.lh-brand-graphic h4 { margin: 0; }
.lh-brand-graphic .eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.lh-brand-graphic .wm { position: absolute; opacity: .06; pointer-events: none; }
.lh-brand-graphic img { max-width: none; } /* marks use explicit % widths */

/* 1 — Mission / Community */
.lh-brand-graphic--mission { background: var(--lh-stone-100); color: var(--lh-charcoal-900); }
.lh-brand-graphic--mission .rings { position: absolute; inset: 0; display: grid; place-items: center; }
.lh-brand-graphic--mission .ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--lh-red-700); opacity: .16; }
.lh-brand-graphic--mission .r1 { width: 30%; aspect-ratio: 1; }
.lh-brand-graphic--mission .r2 { width: 52%; aspect-ratio: 1; opacity: .11; }
.lh-brand-graphic--mission .r3 { width: 76%; aspect-ratio: 1; opacity: .07; }
.lh-brand-graphic--mission .mark { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); width: 26%; }
.lh-brand-graphic--mission .eyebrow { position: absolute; top: 8%; left: 9%; color: var(--lh-red-700); }
.lh-brand-graphic--mission .scripture {
  position: absolute; bottom: 8%; left: 9%; right: 9%; font-family: var(--lh-font-serif);
  font-style: italic; font-size: 1.15rem; color: var(--lh-charcoal-700); line-height: 1.35;
}

/* 2 — Giving / Stewardship */
.lh-brand-graphic--gift { background: #fff; color: var(--lh-charcoal-900); padding: 9% 9% 8%; display: flex; flex-direction: column; }
.lh-brand-graphic--gift .eyebrow { color: var(--lh-red-700); }
.lh-brand-graphic--gift h4 { font-family: var(--lh-font-sans); font-weight: 800; font-size: 1.7rem; line-height: 1.1; margin: 10px 0 auto; max-width: 14ch; letter-spacing: -.01em; }
.lh-brand-graphic .bar { display: flex; height: 13%; min-height: 38px; border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.lh-brand-graphic .bar span { display: block; }
.lh-brand-graphic .seg-h { background: var(--lh-charcoal-900); }
.lh-brand-graphic .seg-f { background: var(--lh-charcoal-700); }
.lh-brand-graphic .seg-t { background: var(--lh-charcoal-500); }
.lh-brand-graphic .seg-s { background: var(--lh-red-700); }
.lh-brand-graphic .seg-c { background: var(--lh-red-500); }
.lh-brand-graphic .legend { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 11.5px; color: var(--lh-charcoal-700); }
.lh-brand-graphic .legend i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 5px; vertical-align: baseline; }
.lh-brand-graphic--gift .mark { position: absolute; right: 7%; top: 8%; width: 12%; opacity: .9; }

/* 3 — Events / Campaigns (red-dominant; one per page) */
.lh-brand-graphic--events { background: var(--lh-red-700); color: #fff; padding: 9%; display: flex; flex-direction: column; }
.lh-brand-graphic--events .eyebrow { color: #ffd2d2; }
.lh-brand-graphic--events h4 { font-family: var(--lh-font-serif); font-style: italic; font-weight: 500; font-size: 2rem; line-height: 1.15; margin: 12px 0 auto; max-width: 13ch; }
.lh-brand-graphic .cal { position: absolute; right: 8%; top: 30%; width: 30%; aspect-ratio: 1 / 1.06; }
.lh-brand-graphic .cal .frame { position: absolute; inset: 0; border: 2px solid rgba(255, 255, 255, .55); border-radius: 10px; }
.lh-brand-graphic .cal .top { position: absolute; left: 0; right: 0; top: 0; height: 26%; background: rgba(255, 255, 255, .55); border-radius: 8px 8px 0 0; }
.lh-brand-graphic .cal .peg { position: absolute; top: -10%; width: 8%; aspect-ratio: 1 / 2; background: #fff; border-radius: 3px; }
.lh-brand-graphic .cal .p1 { left: 24%; }
.lh-brand-graphic .cal .p2 { right: 24%; }
.lh-brand-graphic .cal .dots { position: absolute; left: 12%; right: 12%; bottom: 12%; top: 38%; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 11%; }
.lh-brand-graphic .cal .dots b { background: rgba(255, 255, 255, .4); border-radius: 50%; }
.lh-brand-graphic .cal .dots b.on { background: #fff; }
.lh-brand-graphic--events .mark { position: absolute; left: 9%; bottom: 8%; width: 11%; filter: brightness(0) invert(1); }

/* 4 — Serve / Partner (Georgia pine) */
.lh-brand-graphic--serve { background: var(--lh-campus-georgia); color: #fff; padding: 9%; }
.lh-brand-graphic--serve .eyebrow { color: #c8d6cc; }
.lh-brand-graphic--serve h4 { font-family: var(--lh-font-sans); font-weight: 800; font-size: 1.6rem; line-height: 1.12; margin: 12px 0 0; max-width: 13ch; letter-spacing: -.01em; }
.lh-brand-graphic .venn { position: absolute; right: 7%; bottom: 9%; width: 46%; aspect-ratio: 1.5 / 1; }
.lh-brand-graphic .venn span { position: absolute; width: 52%; aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .75); background: rgba(255, 255, 255, .09); }
.lh-brand-graphic .venn .c1 { left: 0; top: 0; }
.lh-brand-graphic .venn .c2 { right: 0; top: 0; }
.lh-brand-graphic .venn .c3 { left: 24%; bottom: 0; }
.lh-brand-graphic--serve .labels { position: absolute; left: 9%; bottom: 9%; font-size: 12px; color: #dfe7e1; line-height: 1.7; }

/* 5 — A Day in the Program (timeline) */
.lh-brand-graphic--day { background: #fff; color: var(--lh-charcoal-900); padding: 9% 7%; display: flex; flex-direction: column; }
.lh-brand-graphic--day .eyebrow { color: var(--lh-red-700); padding-left: 2%; }
.lh-brand-graphic--day .timeline { margin-top: auto; margin-bottom: auto; position: relative; padding: 0 4%; }
.lh-brand-graphic--day .track { position: absolute; left: 8%; right: 8%; top: 11px; height: 2px; background: var(--lh-gray-300); }
.lh-brand-graphic--day .stops { display: flex; justify-content: space-between; position: relative; }
.lh-brand-graphic--day .stop { text-align: center; width: 18%; }
.lh-brand-graphic--day .stop .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--lh-charcoal-300); background: #fff; margin: 0 auto 12px; }
.lh-brand-graphic--day .stop.on .dot { border-color: var(--lh-red-700); background: var(--lh-red-700); box-shadow: 0 0 0 5px rgba(168, 3, 3, .14); }
.lh-brand-graphic--day .stop .lab { font-size: 12.5px; font-weight: 700; color: var(--lh-charcoal-900); }
.lh-brand-graphic--day .stop .t { display: block; font-size: 10.5px; font-weight: 600; color: var(--lh-charcoal-300); margin-top: 3px; }
.lh-brand-graphic--day .mark { position: absolute; right: 7%; top: 8%; width: 11%; opacity: .85; }

/* 6 — Three Campuses (pins) */
.lh-brand-graphic--campuses { background: var(--lh-stone-100); color: var(--lh-charcoal-900); padding: 9%; }
.lh-brand-graphic--campuses .eyebrow { color: var(--lh-red-700); }
.lh-brand-graphic--campuses .pins { position: absolute; left: 0; right: 0; bottom: 20%; display: flex; justify-content: center; gap: 11%; }
.lh-brand-graphic--campuses .baseline { position: absolute; left: 12%; right: 12%; bottom: calc(20% + 4px); height: 1px; background: var(--lh-border-stone); }
.lh-brand-graphic--campuses .pin { text-align: center; position: relative; }
.lh-brand-graphic--campuses .pin .tear {
  width: 40px; height: 40px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  margin: 0 auto 16px; position: relative; box-shadow: var(--lh-shadow-sm);
}
.lh-brand-graphic--campuses .pin .tear::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 13px; height: 13px; border-radius: 50%; background: #fff; }
.lh-brand-graphic--campuses .pin .lab { font-size: 13px; font-weight: 800; letter-spacing: -.01em; }
.lh-brand-graphic--campuses .pin .st { display: block; font-size: 11px; color: var(--lh-fg-muted); font-weight: 600; }
.lh-brand-graphic--campuses .pin-palm .tear { background: var(--lh-campus-palmetto); }
.lh-brand-graphic--campuses .pin-dade .tear { background: var(--lh-campus-dade); }
.lh-brand-graphic--campuses .pin-geo .tear { background: var(--lh-campus-georgia); }

/* 7 — Stories / Testimony (charcoal poster) */
.lh-brand-graphic--stories { background: var(--lh-charcoal-900); color: #fff; padding: 9%; }
.lh-brand-graphic--stories .eyebrow { color: #ff8d8d; }
.lh-brand-graphic--stories .play {
  position: absolute; left: 9%; top: 50%; transform: translateY(-50%);
  width: 84px; height: 84px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .6);
  display: grid; place-items: center;
}
.lh-brand-graphic--stories .play::after {
  content: ""; border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff; margin-left: 6px;
}
.lh-brand-graphic--stories .quote {
  position: absolute; left: 9%; right: 9%; bottom: 9%; font-family: var(--lh-font-serif);
  font-style: italic; font-size: 1.3rem; line-height: 1.35; color: #f1efee;
  border-left: 3px solid var(--lh-red-500); padding-left: 18px; max-width: 26ch;
}
.lh-brand-graphic--stories .quote .by { display: block; font-family: var(--lh-font-sans); font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #b9b6b4; margin-top: 8px; }
.lh-brand-graphic--stories .wm { right: -6%; top: -8%; width: 46%; filter: brightness(0) invert(1); opacity: .05; }
