/* ==================================================
   Startseite: Mission
   schwimm einfach Theme
================================================== */

.mission-section {
  position: relative;

  width: 100%;
  padding: 80px 0;

  background-color: rgb(191 191 191);
}

/*
 * Elementor verwendet im Original eine vertikale
 * Flex-Struktur mit 20px Abstand zwischen den Elementen.
 */
.mission-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;

  text-align: center;
}

/* ==================================================
   Überschrift
================================================== */

.mission-section__title {
  margin: 0;

  color: #000;

  font-family: var(--font-family-heading);
  font-size: 45px;
  font-weight: var(--font-weight-regular);
  line-height: 45px;

  text-align: center;
  padding-bottom: 30px;
}

/* ==================================================
   Text
================================================== */

.mission-section__text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  color: #000;

  font-family: var(--font-family-body);
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  line-height: 27px;

  text-align: center;
}

.mission-section__text > :first-child {
  margin-top: 0;
}

.mission-section__text > :last-child {
  margin-bottom: 0;
}

/* ==================================================
   Tablet
================================================== */

@media (max-width: 1100px) {
  .mission-section {
    padding: 64px 0;
  }

  .mission-section__title {
  font-size: 38px;
  line-height: 1.2;
}
}

/* ==================================================
   Mobile
================================================== */

@media (max-width: 767px) {
  .mission-section {
    padding: 48px 20px;
  }

  .mission-section__container {
    gap: 16px;
  }

  .mission-section__title {
  font-size: 32px;
  line-height: 1.2;
}

.mission-section__text {
  font-size: 17px;
  line-height: 1.6;
}

}