.elementor-8283 .elementor-element.elementor-element-4c1361a{--display:flex;}.elementor-8283 .elementor-element.elementor-element-218f9c7{--display:flex;}.elementor-8283 .elementor-element.elementor-element-2ba8077{--display:flex;}.elementor-8283 .elementor-element.elementor-element-2a66c35{--display:flex;}.elementor-8283 .elementor-element.elementor-element-70af760{--display:flex;}.elementor-8283 .elementor-element.elementor-element-b9911b5{--n-accordion-title-font-size:1rem;--n-accordion-item-title-space-between:0px;--n-accordion-item-title-distance-from-content:0px;--n-accordion-icon-size:15px;}/* Start custom CSS *//*
  gh-post-custom-css-draft.css
  -----------------------------
  Copy ALL into Elementor → Post → gear → Custom CSS.

  Section classes (outer testimonial section), include BOTH:
    gh-section gh-section-dark gh-section-testimonial gh-post-testimonial gh-full

  Why gh-full?
    gh-global.css sets `.gh-section { max-width: 87%; margin: auto; padding-inline: 1.75rem }`
    — that boxes every section and leaves white gutters. `.gh-section.gh-full` opts out
    (max-width: 100%, horizontal padding 0). This draft also forces the same via CSS so
    the layout works even if you forget gh-full.

  Structure you described:
    gh-section … → gh-content → gh-kicker, gh-testimonial → gh-testimonial__row
      → blockquote (gh-testimonial__quote__font--sm), gh-testimonial__author-block → …
*/

/* ========== A) Section: full width of parent (override global 87% box) + green band ========== */
.elementor-section.gh-post-testimonial.gh-section-testimonial,
.elementor-top-section.gh-post-testimonial.gh-section-testimonial,
.elementor-element.elementor-section.gh-post-testimonial.gh-section-testimonial,
.gh-section.gh-section-testimonial.gh-post-testimonial.gh-section-dark{
  /* Same intent as .gh-section.gh-full in gh-global — section itself must not be 87% wide */
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 0 !important;
  isolation: isolate !important;
  overflow-x: visible !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Green fills the section box (full width of parent — no 100vw shift, avoids overflow clipping) */
.elementor-section.gh-post-testimonial.gh-section-testimonial::before,
.elementor-top-section.gh-post-testimonial.gh-section-testimonial::before,
.elementor-element.elementor-section.gh-post-testimonial.gh-section-testimonial::before,
.gh-section.gh-section-testimonial.gh-post-testimonial.gh-section-dark::before{
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background-color: var(--e-global-color-primary) !important;
  pointer-events: none !important;
}

/* ========== B) gh-content: inset on all sides (default gh-section rhythm ~1.75rem) ==========
   Same token for left / right / top / bottom inside the green band. */
.gh-post-testimonial.gh-section-testimonial .gh-content{
  --gh-post-testimonial-inset: clamp(1rem, 4vw, 1.75rem);
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(var(--gh-post-testimonial-inset), env(safe-area-inset-left, 0px)) !important;
  padding-right: max(var(--gh-post-testimonial-inset), env(safe-area-inset-right, 0px)) !important;
  padding-top: max(var(--gh-post-testimonial-inset), env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(var(--gh-post-testimonial-inset), env(safe-area-inset-bottom, 0px)) !important;
  box-sizing: border-box !important;
  overflow-x: visible !important;
}

/* Elementor “boxed” containers often set --container-max-width; force this band to use full gh-content width */
.gh-post-testimonial.gh-section-testimonial .gh-content .e-con,
.gh-post-testimonial.gh-section-testimonial .gh-content .e-con-inner,
.gh-post-testimonial.gh-section-testimonial .gh-content .elementor-container{
  --container-max-width: 100% !important;
  --content-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

.gh-post-testimonial.gh-section-testimonial .e-con,
.gh-post-testimonial.gh-section-testimonial .e-con-inner,
.gh-post-testimonial.gh-section-testimonial .elementor-container,
.gh-post-testimonial.gh-section-testimonial .elementor-row,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row{
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  overflow-x: visible !important;
}

/* Match gh-global testimonial grid (quote | author) — wider horizontal gap between quote and headshot */
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row{
  display: grid !important;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  gap: 1.5rem clamp(1.5rem, 4vw, 2.75rem) !important;
  align-items: start !important;
  min-width: 0 !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row > *{
  min-width: 0 !important;
}

/* Headshot top aligns with blockquote row top (large “ icon), not first line of body copy */
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .gh-testimonial__author-block{
  margin-top: 0 !important;
  align-self: start !important;
}

/*
  Headshot: perfect circle, never wider than the author column (fixed 10rem was clipping on
  tablet when 1fr < 10rem — gh-content overflow-x:hidden cuts the overflow).
*/
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .gh-testimonial__author-block,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author{
  overflow-x: visible !important;
  max-width: 100% !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-widget-image .elementor-widget-container,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-widget-image,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-image,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author figure.wp-caption,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author-block .elementor-widget-image .elementor-widget-container{
  width: min(10rem, 100%) !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__image img,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__author img{
  display: block !important;
  width: 100% !important;
  max-width: min(10rem, 100%) !important;
  height: auto !important;
  min-width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50% !important;
  flex-shrink: 1 !important;
  box-sizing: border-box !important;
}

.gh-post-testimonial.gh-section-testimonial .e-con,
.gh-post-testimonial.gh-section-testimonial .e-con-inner{
  justify-content: stretch !important;
  align-items: stretch !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Elementor columns often ship with horizontal padding (gutter) — strip in this band only */
.gh-post-testimonial.gh-section-testimonial .elementor-column,
.gh-post-testimonial.gh-section-testimonial .elementor-column-wrap,
.gh-post-testimonial.gh-section-testimonial .elementor-widget-wrap{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========== C) Elementor Blockquote widget — flex row + icon can steal width; force wrap (see gh-global impact stories) ========== */
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote .elementor-widget-container,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row blockquote.elementor-blockquote,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-blockquote__content{
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: visible !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  white-space: normal !important;
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row blockquote.elementor-blockquote{
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  border: none !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row blockquote.elementor-blockquote > .elementor-blockquote__icon{
  flex-shrink: 0 !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row blockquote.elementor-blockquote > :not(.elementor-blockquote__icon){
  min-width: 0 !important;
  max-width: 100% !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-blockquote__content{
  flex: 0 1 auto !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote blockquote p,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote p:not(.elementor-blockquote__author):not([class*="author"]){
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  margin: 0 !important;
}

/* ========== D) Smaller quote type (overrides global ~1.2em on blockquote in testimonial section) ========== */
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote .elementor-blockquote,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote .elementor-blockquote__content,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote blockquote p,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .elementor-widget-blockquote p:not(.elementor-blockquote__author):not([class*="author"]){
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.gh-post-testimonial.gh-section-testimonial .gh-testimonial__quote .elementor-widget-text-editor p,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__quote .elementor-text-editor p,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row > .gh-testimonial:not(.gh-testimonial__author):not(.gh-testimonial__author-block):not(.gh-testimonial__link) .elementor-widget-text-editor p,
.gh-post-testimonial.gh-section-testimonial .gh-testimonial__row > .gh-testimonial:not(.gh-testimonial__author):not(.gh-testimonial__author-block):not(.gh-testimonial__link) .elementor-text-editor p{
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

/* ========== E) Mobile only: single column (quote, then author below) ==========
   Tablet (≥768px) keeps the same two-column row as desktop (see base .gh-testimonial__row).
   gh-global pins quote to column 1 and author to column 2 — below 768px that crushes the quote,
   so we stack and reset grid placement.
   Breakpoint matches Elementor / gh-global mobile (767px). */
@media (max-width: 767px){
  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__row{
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 1.25rem !important;
    align-items: stretch !important;
  }

  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__row > *{
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-width: 0 !important;
  }

  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__row .gh-testimonial__author-block{
    margin-top: 0 !important;
    justify-self: center !important;
    max-width: 20rem !important;
  }

  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-widget-image .elementor-widget-container,
  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-widget-image,
  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__author .elementor-image,
  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__author-block .elementor-widget-image .elementor-widget-container{
    width: min(7.5rem, 100%) !important;
    max-width: 100% !important;
  }

  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__image img,
  .gh-post-testimonial.gh-section-testimonial .gh-testimonial__author img{
    max-width: min(7.5rem, 100%) !important;
  }
}

/* ========== F) DEBUG — uncomment to verify CSS loads ========== */
/* .gh-post-testimonial.gh-section-testimonial.elementor-section{ outline: 4px solid #ff00aa !important; } *//* End custom CSS */