/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

:root  {
  --root-font-size: 16px;
  --base-content-section-max-width: 80rem;
  /* ========== PRIMITIVE DESIGN TOKENS ========== */ /* Primitives are the core building blocks of the design system, often used to define raw values (e.g., colors, font sizes, spacing). Naming Convention: --[category]-[type]-[modifier] • Category: Broad category of the design token (e.g., color, font, spacing). • Type: Specific type within the category (e.g., primary, secondary, neutral). • Modifier: Optional, used to define variations (e.g., light, dark, large). */ /* --- Colours --- */ --color-brand: #EEA082;
  --color-brand-light: color-mix(in srgb, var(--color-brand) 90%, white);
  --color-brand-lighter: color-mix(in srgb, var(--color-brand) 80%, white);
  --color-brand-lightest: color-mix(in srgb, var(--color-brand) 70%, white);
  --color-brand-dark: color-mix(in srgb, var(--color-brand) 90%, black);
  --color-brand-darker: color-mix(in srgb, var(--color-brand) 80%, black);
  --color-brand-darkest: color-mix(in srgb, var(--color-brand) 70%, black);
  --color-primary: var(--color-brand);
  --color-primary-light: color-mix(in srgb, var(--color-primary) 90%, white);
  --color-primary-lighter: color-mix(in srgb, var(--color-primary) 80%, white);
  --color-primary-lightest: color-mix(in srgb, var(--color-primary) 70%, white);
  --color-primary-dark: color-mix(in srgb, var(--color-primary) 90%, black);
  --color-primary-darker: color-mix(in srgb, var(--color-primary) 80%, black);
  --color-primary-darkest: color-mix(in srgb, var(--color-primary) 70%, black);
  --color-secondary: #6F5A5A;
  --color-secondary-light: color-mix(in srgb, var(--color-secondary) 90%, white);
  --color-secondary-lighter: color-mix(in srgb, var(--color-secondary) 80%, white);
  --color-secondary-lightest: color-mix(in srgb, var(--color-secondary) 70%, white);
  --color-secondary-dark: color-mix(in srgb, var(--color-secondary) 90%, black);
  --color-secondary-darker: color-mix(in srgb, var(--color-secondary) 80%, black);
  --color-secondary-darkest: color-mix(in srgb, var(--color-secondary) 70%, black);
  --color-accent: #6F5A5A;
  --color-accent-light: color-mix(in srgb, var(--color-accent) 90%, white);
  --color-accent-lighter: color-mix(in srgb, var(--color-accent) 80%, white);
  --color-accent-lightest: color-mix(in srgb, var(--color-accent) 70%, white);
  --color-accent-dark: color-mix(in srgb, var(--color-accent) 90%, black);
  --color-accent-darker: color-mix(in srgb, var(--color-accent) 80%, black);
  --color-accent-darkest: color-mix(in srgb, var(--color-accent) 70%, black);
  --color-neutral: #FBF6F4;
  --color-neutral-light: color-mix(in srgb, var(--color-neutral) 75%, white);
  --color-neutral-lighter: color-mix(in srgb, var(--color-neutral) 50%, white);
  --color-neutral-lightest: color-mix(in srgb, var(--color-neutral) 25%, white);
  --color-neutral-dark: #F6EBE9;
  --color-neutral-darker: #F3E5E5;
  --color-neutral-darkest: #D5BDBD;
  --color-neutral-alt: #f4f4f4;
  --color-neutral-alt-light: color-mix(in srgb, var(--color-neutral-alt) 75%, white);
  --color-neutral-alt-lighter: color-mix(in srgb, var(--color-neutral-alt) 50%, white);
  --color-neutral-alt-lightest: color-mix(in srgb, var(--color-neutral-alt) 25%, white);
  --color-neutral-alt-dark: color-mix(in srgb, var(--color-neutral-alt) 95%, black);
  --color-neutral-alt-darker: color-mix(in srgb, var(--color-neutral-alt) 90%, black);
  --color-neutral-alt-darkest: color-mix(in srgb, var(--color-neutral-alt) 85%, black);
  --color-text-primary: #000000;
  --color-text-primary-dark: #000000;
  --color-text-primary-darker: #000000;
  --color-text-primary-darkest: #000000;
  --color-text-primary-light: #222222;
  --color-text-primary-lighter: #333333;
  --color-text-primary-lightest: #666666;
  --color-text-secondary: #666666;
  --color-text-inverse: #ffffff;
  --color-button-primary-bg: var(--color-brand);
  --color-button-primary-text-color: var(--color-text-inverse);
  --color-form-field-text-color: inhert;
  --color-form-field-text-disabled: #999999;
  --color-form-field-border: #CCCCCC;
  --color-form-field-border-focus: var(--color-primary);
  --color-form-field-bg: #FFFFFF;
  --color-form-field-bg-disabled: #F5F5F5;
  --color-form-button-text-color: var(--color-button-primary-text-color);
  --color-form-button-bg: var(--color-button-primary-bg);
  --color-checkbox-accent: var(--color-primary);
  /* ========== SEMANTIC DESIGN TOKENS ========== */ /* Semantic variables are context-specific and map to the primitives. They define how a primitive is used (e.g., --body-text-color, --heading-text-color). Naming Convention: --[context]-[property] • Context: Where the variable is used (e.g., body, heading, button, card). • Property: Specific property being controlled (e.g., text-color, background-color, font-size). */ /* --- Typography --- */ --body-text-color: var(--color-text-primary);
  --body-font-size: 1rem;
  --body-font-family: "Teachers", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --body-line-height: 1.6;
  --paragraph-spacing: 1rem;
  --heading-spacing: 1rem;
  --heading-text-color: var(--color-text-primary);
  --heading-font-family: "Aboreto", serif;
  --heading-font-weight: var(--font-weight-normal);
  --heading-line-height: 1.1;
  --heading-1-text-color: var(--heading-text-color);
  --heading-2-text-color: var(--heading-text-color);
  --heading-3-text-color: var(--heading-text-color);
  --heading-4-text-color: var(--heading-text-color);
  --heading-5-text-color: var(--color-secondary);
  --heading-6-text-color: var(--heading-text-color);
  --heading-1-font-weight: var(--heading-font-weight);
  --heading-2-font-weight: var(--heading-font-weight);
  --heading-3-font-weight: var(--heading-font-weight);
  --heading-4-font-weight: var(--heading-font-weight);
  --heading-5-font-weight: var(--heading-font-weight);
  --heading-6-font-weight: var(--heading-font-weight);
  /* Set h1 font-size and body font-size, and interpolated scaling for other headings between those two boundaries (with h6 being same size as body) */ --heading-1-font-size: 3.125rem;
  --heading-2-font-size: 2.5rem;
  --heading-3-font-size: 2.1875rem;
  --heading-4-font-size: 1.5625rem;
  --heading-5-font-size: 1.375rem;
  --heading-6-font-size: 1.25rem;
  --heading-1-line-height: var(--heading-line-height);
  --heading-2-line-height: var(--heading-line-height);
  --heading-3-line-height: var(--heading-line-height);
  --heading-4-line-height: var(--heading-line-height);
  --heading-5-line-height: 1.3;
  --heading-6-line-height: var(--heading-line-height);
  /* Buttons */ /* --button-primary-bg: var(--color-primary);
  --button-primary-text: var(--color-neutral-light);
  --button-secondary-bg: var(--color-secondary);
  --button-secondary-text: var(--color-neutral-light);
  */ /* Links */ --link-color: var(--color-brand);
  --link-hover-color: color-mix(in srgb, var(--link-color) 80%, white);
  --nav-link-color: var(--color-secondary);
  --nav-link-hover-color: var(--link-hover-color);
}
/* ========== CSS RESET ========== */ *, *::before, *::after  {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd  {
  margin: 0;
}
p  {
  margin-top: 0;
  margin-bottom: var(--paragraph-spacing);
}
html  {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
input, textarea  {
  width: 100%;
}
button, input, select, textarea  {
  font-family: inherit;
}
button  {
  cursor: pointer;
}
hr  {
  border: 0;
  height: 1px;
  background: var(--color-text-primary, #ddd);
  margin: 1rem 0;
}
a  {
  text-decoration: none;
}
a  {
  color: var(--link-color);
}
/* note that we don't set a:visited because it overrides other colour settings for other classes unless we specificaly set the :visited option on all other link classes */ a:hover, a:focus  {
  color: var(--link-hover-color);
  text-decoration: underline;
}
/* ========== OVERALL DOCUMENT DEFAULTS ========== */ html  {
  font-size: var(--root-font-size);
  /* for smooth scrolling to internal anchors */ scroll-behavior: smooth;
}
body  {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-text-color);
  line-height: var(--body-line-height);
  margin: 0;
}
/* ========== HEADINGS ========== */ h1, h2, h3, h4, h5, h6  {
  font-family: var(--heading-font-family);
  color: var(--heading-text-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
  margin-bottom: var(--heading-spacing);
}
h1, .heading-style-h1  {
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: var(--heading-1-text-color);
}
h2, .heading-style-h2  {
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: var(--heading-2-text-color);
}
h3, .heading-style-h3  {
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  line-height: var(--heading-3-line-height);
  color: var(--heading-3-text-color);
}
h4, .heading-style-h4  {
  font-size: var(--heading-4-font-size);
  font-weight: var(--heading-4-font-weight);
  line-height: var(--heading-4-line-height);
  color: var(--heading-4-text-color);
}
h5, .heading-style-h5  {
  font-family: var(--body-font-family);
  font-size: var(--heading-5-font-size);
  font-weight: var(--heading-5-font-weight);
  line-height: var(--heading-5-line-height);
  color: var(--heading-5-text-color);
}
h6, .heading-style-h6  {
  font-size: var(--heading-6-font-size);
  font-weight: var(--heading-6-font-weight);
  line-height: var(--heading-6-line-height);
  color: var(--heading-6-text-color);
}
/* ========== BUTTONS ========== */ .btn-primary  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-button-primary-bg);
  color: var(--color-button-primary-text-color);
  border-radius: 9999px;
  padding: 0.7rem 1.5rem;
  font-weight: var(--font-weight-normal);
  border-width: 0px;
  font-size: var(--text-size-reg);
  text-decoration: none;
  text-wrap: nowrap;
}
.btn-primary:hover  {
  filter: brightness(110%);
  color: var(--color-button-primary-text-color);
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-secondary);
  border-radius: 9999px;
  padding: 0.7rem 1.5rem;
  font-weight: var(--font-weight-normal);
  font-size: var(--text-size-reg);
  text-decoration: none;
}
.btn-ghost:hover  {
  /*background-color: var(--color-accent-dark);
  */ filter: brightness(110%);
  cursor: pointer;
  color: var(--color-text-primary);
  text-decoration: none;
  border: 1px solid var(--color-secondary-lightest);
}
.btn-light  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-text-inverse);
  color: var(--color-text-primary);
  border: 2px solid var(--color-secondary-dark);
  border-radius: 9999px;
  padding: 0.7rem 1.5rem;
  font-weight: var(--font-weight-medium);
  font-size: var(--text-size-reg);
  text-decoration: none;
}
.btn-light:hover  {
  background-color: var(--color-secondary-light);
  cursor: pointer;
  color: var(--color-text-primary);
  text-decoration: none;
}
@media (max-width: 640px)  {
  .btn-primary, .btn-ghost, .btn-light  {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: var(--text-size-lg);
  }
}
@media (max-width: 768px)  {
  .button-group  {
    justify-content: center;
  }
}
.core-form-style button  {
  border-radius: 9999px;
  border-width: 0px;
}
.my-form-row  {
  margin: 0 0 20px 0;
}
blockquote  {
  border-left: 2px solid #F3E5E5;
  padding-left: 1.5rem;
  margin: 3rem 0;
  font-family: var(--heading-font-family);
  font-size: 1.5625rem;
  font-weight: 400;
}


 /** Content Section Styles **/ 

.content-section-228  {
  padding-top: 0;
  padding-bottom: 0;
  &.content-section  {
    position: relative;
    z-index: 1000;
  }
  /* making header section stretch full width of the page (not contained to the rest of the site's fixed max-width */ .content-section-inner  {
    max-width: 100%;
    padding-left: 3%;
    padding-right:3%;
  }
  .logo img  {
    width: 255px;
  }
  .my-header  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 6rem
  }
  .menu-container  {
    display: flex;
    justify-content: center;
    padding-bottom: 75px;
  }
  .header-actions  {
    display: flex;
    align-items: center;
    gap: 0rem;
    padding-bottom: 75px;
  }
  .header-actions-mobile  {
    margin-top: 20px;
  }
  /* make first item highlighted */ .core-menu-01 nav ul li:first-child a  {
    color: var(--color-brand);
  }
  .core-menu-01 a:hover  {
    color: var(--color-brand);
  }
  @media (max-width: 1023px)  {
    .header-actions  {
      display: none;
      ;
    }
    .menu-container  {
      justify-content: flex-end;
    }
  }
  @media (max-width: 767px)  {
    .logo  {
      text-align: center;
    }
    .logo img  {
      width: 200px;
      margin-bottom: 40px;
    }
  }
  @media (max-width: 639px)  {
    .logo img  {
      width: 180px;
      margin-bottom: 40px;
    }
  }
}
.content-section-229  {
  padding-top: 0;
  padding-bottom: 7rem;
  .hero-container  {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 3vw, 4rem);
    row-gap: 0;
  }
  .hero-container .hero-subtext  {
    font-size: 1.1rem;
    margin-bottom: 1.7rem;
  }
  .hero-container .hero-image-col  {
    display: flex;
    justify-content: center;
    /* uncomment below to push image to the bottom */ /* align-items: flex-end;
    */
  }
  img.hero-image  {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  @media (max-width: 767px)  {
    h1  {
      font-size: 2.5rem;
    }
    .hero-container  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    .hero-content-col  {
      text-align: center;
    }
  }
  @media (max-width: 639px)  {
    h1  {
      font-size: 2rem;
    }
  }
}
.content-section-230  {
  .my-grid  {
    margin-top: 5rem;
    display: grid;
    column-gap: clamp(2rem, 3vw, 3rem);
    row-gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-content: center;
  }
  @media (max-width: 639px)  {
    .my-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-231  {
  .my-grid  {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 5vw, 7rem);
    row-gap: 0;
  }
  .col-1  {
  }
  .col-2  {
    text-align: right;
  }
  .my-subtext  {
    font-size: var(--text-size-lg);
    margin-top: 28px;
  }
  .button-group  {
    justify-content: end;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    .col-1  {
      text-align: center;
    }
    .col-2  {
      text-align: center;
    }
    .button-group  {
      justify-content: center;
    }
  }
}
.content-section-232  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 5vw, 5rem);
    row-gap: 0;
  }
  img.my-top-right-arch-image  {
    border-top-right-radius: 50%;
  }
  .my-grid .col-2 p  {
    font-size: var(--text-size-lg);
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
.content-section-233  {
  .my-grid  {
    margin-top: 5rem;
    display: grid;
    column-gap: clamp(2rem, 4vw, 3rem);
    row-gap:3rem;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    justify-content: center;
    text-align: center;
  }
  .my-grid img  {
    max-width: 100%;
    width: 406px;
  }
  .my-grid h4  {
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .my-grid .my-book-button  {
    margin-top: 20px;
  }
  @media (max-width: 639px)  {
    .my-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-234  {
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.60);
  }
  h5  {
    margin-bottom: 3px;
    margin-top: 30px
  }
  .my-photo  {
    width: 100%;
  }
}
.content-section-235  {
  .my-grid  {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 3vw, 4rem);
    row-gap: 0;
  }
  .col-1  {
  }
  .col-2  {
    text-align: right;
  }
  .my-subtext  {
    font-size: var(--text-size-lg);
    margin-top: 28px;
  }
  .button-group  {
    justify-content: end;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    .col-1  {
      text-align: center;
    }
    .col-2  {
      text-align: center;
    }
    .button-group  {
      justify-content: center;
    }
  }
}
.content-section-236  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: clamp(2rem, 2vw, 4rem);
    row-gap: 0;
  }
  .therapist-image  {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .therapist-name  {
    text-align: center;
    margin-bottom: 3px;
  }
  .therapist-title  {
    text-align: center;
  }
  .therapist-qualifications  {
    text-align: center;
  }
  .therapist-bio  {
    margin-top: 20px;
    padding-right: 15px;
  }
  .therapist-booking  {
    text-align: center;
    margin-top: 30px;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
.content-section-237  {
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.6);
  }
  .core-accordion-01 summary  {
    color: var(--color-secondary);
  }
  .core-accordion-01 > * + *  {
    margin-top: 0;
  }
  .core-accordion-01 details  {
    border-top: 1px solid var(--color-neutral-darkest);
    padding-top: 28px;
    padding-bottom:28px;
  }
  .core-accordion-01 details:last-of-type  {
    border-bottom: 1px solid var(--color-neutral-darkest);
  }
  .my-faq-intro-text  {
    margin-top: 30px;
    margin-bottom: 90px;
  }
  .my-faq-intro-text p  {
    text-align: center;
    font-size: var(--text-size-lg);
  }
}
.content-section-238  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: clamp(2rem, 5vw, 7rem);
    row-gap: 0;
    margin-top: 50px;
  }
  .form-intro-text  {
    font-size: var(--text-size-lg);
    max-width: 780px;
  }
  .my-grid a  {
    color: var(--color-secondary-dark);
    text-decoration: underline;
  }
  .my-grid .chevron  {
    margin-bottom: -1px;
    margin-left: 10px;
    color: var(--color-secondary-dark);
  }
  .core-form-style label  {
    font-weight: normal;
  }
  .my-contacts-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 4rem;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
  @media (max-width: 639px)  {
    .my-contacts-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-239  {
  .my-logo-grid  {
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .my-logo-grid img  {
    max-width: 200px;
    max-height: 65px;
    object-fit: contain;
    flex: 0 1 auto;
  }
}
.content-section-240  {
  .my-footer-top  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 75px;
  }
  .footer-flags  {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    width: fit-content;
    margin-top: 30px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .my-footer-bottom  {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    width: fit-content;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .my-footer-bottom *  {
    font-size: var(--text-size-xs);
  }
  .my-footer-bottom a  {
    color: #4E637B;
  }
  .my-footer-bottom .copyright  {
    color: var(--color-secondary);
  }
  .footer-menu-container  {
    display: flex;
    justify-content: center;
  }
  .footer-socials  {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .social-logo  {
    height: 22px;
    color: var(--color-brand);
  }
  .core-menu-01 a:hover  {
    color: var(--color-secondary-light);
  }
  .core-menu-01 a:hover  {
    color: var(--color-brand);
  }
  .my-acknowledgment p  {
    color: var(--color-secondary);
    font-size: 0.9rem;
  }
  hr  {
    border: none;
    height: 1px;
    background-color: var(--color-neutral-darkest);
  }
  @media (max-width: 767px)  {
    .footer-logo  {
      text-align: center;
    }
    .footer-socials a  {
      text-align: center;
    }
    .my-footer-bottom  {
      flex-direction: column;
      align-items: center;
      row-gap: 10px;
      text-align: center;
    }
  }
  @media (max-width: 639px)  {
    .footer-flags  {
      display: flex;
      justify-content: center;
      column-gap: 0.5rem;
      width: auto;
      margin-top: 30px;
      margin-bottom: 35px;
    }
  }
}
.content-section-246  {
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.7);
  }
}
.content-section-412  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 3vw, 4rem);
    row-gap: 0;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
