.bmi-berechnung-block { 
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
  height: 100%;
}


.bmi-berechnung-block > div {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bmi-berechnung-block.mb0 > div {
  padding-bottom: 0; 
}
 
.bmi-berechnung-block.mt0 > div {
  padding-top: 0; 
}

.bmi-berechnung-block > div > p {
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.4;
}

.bmi-berechnung-block h3 {
  font-size: calc(45 / 16 * 1rem);
  line-height: 1.2; 
  font-family: 'RobotoRegular', sans-serif;
}

.bmi-berechnung-block .ok   { color: #0a7a0a; font-weight:700; }
.bmi-berechnung-block .warn { color: #b36b00; font-weight:700; }
.bmi-berechnung-block .bad  { color: #b00020; font-weight:700; } 

.bmi-berechnung-block .bmi-form .berechnung {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bmi-berechnung-block .bmi-form .berechnung .werte {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.bmi-berechnung-block .bmi-form .berechnung .werte .wert {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.bmi-berechnung-block .bmi-form .berechnung .werte .wert label {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.2; 
  font-family: 'RobotoRegular', sans-serif;
}

.bmi-berechnung-block .bmi-form .berechnung .werte .wert input {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.2; 
  font-family: 'RobotoRegular', sans-serif;
  padding: 8px;
  width: 100px;
  box-sizing: border-box;
  width: 100%;
}

.bmi-berechnung-block .bmi-form .berechnung button {
  width: max-content;
  font-size: calc(18 / 16 * 1rem);
  padding: 12px 30px;
  gap: 15px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  background: #463D27;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bmi-berechnung-block #bmi-ergebnis {
  margin-top: 20px;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.4;
  font-family: 'RobotoRegular', sans-serif; 
  width: 100%;

}

.bmi-berechnung-block #bmi-ergebnis.bad,
.bmi-berechnung-block #bmi-ergebnis.warn,
.bmi-berechnung-block #bmi-ergebnis.ok {
  border: 1px solid #cecece;
  padding: 20px;
  box-sizing: border-box;
  background: #efefef;
  border-radius: 10px;
}

.bmi-berechnung-block .berechnung-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.bmi-berechnung-block .berechnung-wrapper .details > p {
  font-weight: 500;
  margin-bottom: 10px;

}

.bmi-berechnung-block .berechnung-wrapper .details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bmi-berechnung-block .berechnung-wrapper .details ul li::before {
  display: none;
}

.bmi-berechnung-block .berechnung-wrapper .details ul li {
  padding-left: 0px;
  font-size: calc(14 / 16 * 1rem);
}

@media only screen and (max-width: 1380px) { 

}

@media only screen and (max-width: 870px) { 

  .bmi-berechnung-block > div,
  .bmi-berechnung-block.mb0 > div {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bmi-berechnung-block > div > p {
    font-size: calc(21 / 16 * 1rem);
    line-height: 1.8;
  }

  .bmi-berechnung-block .berechnung-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .bmi-berechnung-block h3 {
    font-size: calc(32 / 16 * 1rem);
    margin-bottom: 15px;
  }

            
}

.block-editor-block-list__block .bmi-berechnung-block {
  max-width: 100%;
  width: 100%; 
  padding-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem;
  box-sizing: border-box;
}

.block-editor-block-list__block .bmi-berechnung-block > div {
  padding-top: 0;
  padding-bottom: 0;
}

.block-editor-block-list__block .bmi-berechnung-block > div h3 {
  margin-top: 0;
}