.Section {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media screen and (min-width: 601px) {

.Section {
    padding-top: 40px;
    padding-bottom: 40px;
}
  }

.Section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Section--hasBackgroundImage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.Section--hasBackgroundImage > * {
    position: relative;
    z-index: 1;
  }

.Section--overlayDark::before,
.Section--overlayLight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.Section--overlayDark::before {
  background-color: rgba(0, 0, 0, 0.45);
}

.Section--overlayLight::before {
  background-color: rgba(255, 255, 255, 0.65);
}

.Section--textLight {
  --headline-color: var(--clr-white);
  --text-color: var(--clr-white);

  color: var(--clr-white);
}

.Section--textDark {
  --headline-color: var(--clr-greyDark);
  --text-color: var(--clr-greyDark);

  color: var(--clr-greyDark);
}
