/* Do not edit anything below */
.heading-text-section {
  position: relative;
}
.heading-text-section .container {
  inline-size: var(--container-size, 67.5rem);
}
.heading-text-section .heading-text-grid {
  display: grid;
  gap: 1.5rem;
  margin-inline: auto;
}
@media (width >= 768px) {
  .heading-text-section .heading-text-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.heading-text-section .heading-text-grid.layout-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-inline-size: unset;
}
.heading-text-section .heading-text-grid.layout-stack .heading-col,
.heading-text-section .heading-text-grid.layout-stack .text-col {
  display: contents;
}
.heading-text-section .heading-text-grid.layout-stack .title,
.heading-text-section .heading-text-grid.layout-stack .sub-heading {
  text-align: center;
}
.heading-text-section .heading-text-grid.layout-stack .description {
  text-align: center;
  order: 2;
  max-inline-size: 47.125rem;
  margin-block-start: 1rem;
}
.heading-text-section .heading-text-grid.layout-stack .btn {
  order: 3;
  margin-block-start: 1.5rem;
}
.heading-text-section .heading-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading-text-section .image-wrap {
  max-inline-size: clamp(7.5rem, 7.5rem + 8.125 * (100vw - 48rem) / 27, 15.625rem);
  margin-block-end: 1.5rem;
}
.heading-text-section .sub-heading {
  font-size: clamp(1.25rem, 1.25rem + 0.375 * (100vw - 48rem) / 27, 1.625rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.52px;
  display: block;
  margin-block-end: 1rem;
}
.heading-text-section .title {
  font-family: "Oldschool Grotesk", -apple-system, blinkmacsystemfont, "avenir next", "avenir, segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: clamp(2.25rem, 2.25rem + 0.75 * (100vw - 48rem) / 27, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.heading-text-section .title i {
  font-family: "Source Serif Pro", georgia, serif;
  font-style: italic;
  font-weight: 600;
}
.heading-text-section .description {
  font-family: "Source Serif Pro", georgia, serif;
  font-size: clamp(1.125rem, 1.125rem + 0.125 * (100vw - 48rem) / 27, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.heading-text-section .btn {
  margin-block-start: 1.5rem;
}
.heading-text-section .btn-desktop {
  display: none;
}
@media (width >= 768px) {
  .heading-text-section .btn-desktop {
    display: flex;
  }
}
.heading-text-section .btn-mobile {
  display: flex;
}
@media (width >= 768px) {
  .heading-text-section .btn-mobile {
    display: none;
  }
}