/* ==================================================
   Startseite: Salzfit
   schwimm einfach Theme
================================================== */

.salzfit-section {
  position: relative;

  width: 100%;
  padding: 48px 60px 64px;

  background-color: rgb(247 247 247);
}

/* ==================================================
   Inhaltscontainer
================================================== */

.salzfit-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;

  width: 100%;
  max-width: 800px;
  margin: 0 auto;

  text-align: center;
}

/* ==================================================
   Logo
================================================== */

.salzfit-section__logo-wrapper {
  width: 100%;
  margin: 0;
}

.salzfit-section__logo {
  display: block;

  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
}

/* ==================================================
   Text
================================================== */

.salzfit-section__text {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;

  color: #000;

  font-family: var(--font-family-body);
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;

  text-align: center;
}

.salzfit-section__text > :first-child {
  margin-top: 0;
}

.salzfit-section__text > :last-child {
  margin-bottom: 0;
}

/* ==================================================
   Button
================================================== */

.salzfit-section__actions {
  display: flex;
  justify-content: center;

  width: 100%;
}

.salzfit-section__button {
  min-width: 238px;
  padding: 0.9rem 1.8rem;

  color: var(--color-white);
  background-color: #4a4a4a;
  border-color: #4a4a4a;

  font-size: 1rem;
  font-weight: var(--font-weight-regular);
}

.salzfit-section__button:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.salzfit-section__button:focus-visible {
  outline-color: var(--color-secondary);
}

/* ==================================================
   Tablet
================================================== */

@media (max-width: 1100px) {
  .salzfit-section {
    padding: 48px 40px 56px;
  }

  .salzfit-section__container {
    max-width: 720px;
    gap: 24px;
  }

  .salzfit-section__logo {
    max-width: 680px;
  }

  .salzfit-section__text {
    max-width: 650px;
  }
}

/* ==================================================
   Mobile
================================================== */

@media (max-width: 767px) {
  .salzfit-section {
    padding: 40px 16px 48px;
  }

  .salzfit-section__container {
    gap: 22px;
  }

  .salzfit-section__logo {
    max-width: 100%;
  }

  .salzfit-section__text {
    font-size: 17px;
    line-height: 1.6;
  }

  .salzfit-section__button {
    width: 100%;
    max-width: 280px;
  }
}