/**
* @description Iterates over the $space-gap values and creates a class for each one.
* @param {list} $space-gap - A list of space gap values.
*/
.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.section-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.9375rem;
  row-gap: 2.5rem;
}
@media (min-width: 769px) {
  .section-layout {
    row-gap: 2rem;
  }
}
.section-layout__title h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  width: 100%;
}
@media (min-width: 769px) {
  .section-layout__title h2 {
    font-size: 3rem;
  }
}
.section-layout__title h2 strong {
  font-weight: 600;
}
.section-layout__title .left-aligned {
  text-align: left;
}
.section-layout__title .center-aligned {
  text-align: center;
}
.section-layout__title .right-aligned {
  text-align: right;
}
.section-layout__footer .rounded-background {
  background-color: #f3f2f2;
  border-radius: 1rem;
  padding: 1rem;
}
.section-layout__footer p {
  font-family: "FinalSix-book", sans-serif;
  margin: 0;
  text-align: center;
}
.section-layout__footer a {
  color: #e4002b;
  font-family: "FinalSix-medium", sans-serif;
  font-weight: 500;
}
.section-layout .pd-grid-layout {
  padding: 0;
}

/* stylelint-disable-next-line */
.experience-layouts-sectionLayout {
  margin-bottom: 4rem;
}

/*# sourceMappingURL=sectionLayout.css.map*/