.section {
  max-width: var(--content-max-width);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: var(--container-padding);
}
.section h1, .section h2 {
  font-size: var(--font-size-huge);
}
.section ol > li {
  padding-left: 1rem;
}
.section ol > li::marker {
  color: var(--color-button-bg);
}
.section--centered {
  text-align: center;
}
.section__wrapper {
  position: relative;
}
.section__wrapper .section__style-container {
  display: none;
}
.section__wrapper--bg_purple {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  --color-text-dark: var(--color-text-light);
  --color-text-dark-translucent: var(--color-text-light-translucent);
}
.section__background {
  margin: 0 auto;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section__background .field--name-field-background-image {
  height: 100%;
}
.section__background .field--name-field-background-image article {
  height: 100%;
  overflow: clip;
}
.section__background .field--name-field-background-image article img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  height: auto;
}
.section__text {
  z-index: 1;
}
.section__button {
  position: absolute;
  height: 60px;
  bottom: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 2;
}
.section__button a {
  padding: 1.25rem 2.25rem;
  border-radius: 40px;
  font-size: 1.5rem;
  color: var(--color-text-dark-translucent);
  font-weight: 700;
  text-decoration: none;
  background: var(--color-button-bg);
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: var(--bp-medium)) {
  .section__button a {
    padding: 0.75rem 1.25rem;
    border-radius: 32px;
    font-size: 1.125rem;
  }
}
.section__button a:hover {
  color: var(--color-text-dark);
}
.section__button.grey a {
  background: #CECECE;
  border: 6px solid #f6f6f6;
}
.section__button.grey a:hover {
  box-shadow: inset 0 12px 45px 2px rgba(0, 0, 0, 0.2);
}