/* Ein klares Rechenbeispiel: gleicher Umsatz, eigene Arbeitszeit. */
#rechner * {
  box-sizing: border-box;
}
#rechner .intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}
@media (max-width: 900px) {
  #rechner .intro {
    grid-template-columns: 1fr;
  }
}
#rechner .intro-copy strong {
  display: block;
  margin-bottom: 12px;
}
#rechner .sc-time-example {
  overflow: hidden;
  border-radius: 14px;
  background: #fbfaf7;
  color: #2a2829;
  box-shadow: 0 20px 45px -35px #2a282940;
}
#rechner .sc-time-heading {
  padding: 28px 36px;
  background: #fbfaf7;
}
#rechner .sc-time-kicker {
  display: block;
  font:
    500 14px/1.5 Manrope,
    Arial,
    sans-serif;
  letter-spacing: 0.025em;
  color: #666365;
}
.design-studio #rechner .sc-time-heading h3 {
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 10px 0 8px;
}
#rechner .sc-time-heading h3 span {
  font-weight: 400;
}
.design-studio #rechner .sc-time-heading p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  color: #666365;
}
#rechner .sc-time-paths {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
#rechner .sc-time-path {
  min-width: 0;
  padding: 28px 36px 32px;
  background: #f0eeea;
}
#rechner .sc-time-path-b {
  background: #fae9ed;
}
#rechner .sc-time-path-b .sc-time-kicker {
  color: #b50b30;
}
.design-studio #rechner .sc-time-path h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 13px 0 4px;
}
#rechner .sc-time-path h4 span {
  white-space: nowrap;
}
#rechner .sc-time-times {
  font-weight: 400;
  color: #777174;
}
.design-studio #rechner .sc-time-unit {
  font-size: 14px;
  line-height: 1.5;
  color: #666365;
  margin: 0;
}
#rechner .sc-time-hours {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 18px;
}
#rechner .sc-time-hours strong {
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(56px, 5vw, 72px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
#rechner .sc-time-hours span {
  font-size: 15px;
  line-height: 1.6;
  color: #5c575a;
}
#rechner .sc-time-path-b .sc-time-hours strong {
  color: #c81035;
}
#rechner .sc-time-bar {
  height: 12px;
  border-radius: 20px;
  background: #d5d1cf;
  overflow: hidden;
}
#rechner .sc-time-bar i {
  display: block;
  height: 100%;
  width: var(--time-share);
  border-radius: inherit;
  background: #555053;
  transform-origin: left center;
}
#rechner .sc-time-path-b .sc-time-bar {
  background: #e9cbd2;
}
#rechner .sc-time-path-b .sc-time-bar i {
  background: #c81035;
}
#rechner .sc-time-result {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: #2a2829;
  color: #fff;
}
#rechner .sc-time-result > strong {
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 450;
  line-height: 1.15;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
#rechner .sc-time-result > div > span {
  font-size: 19px;
  line-height: 1.4;
}
.design-studio #rechner .sc-time-result p {
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 0 0;
  color: #d2cccf;
}
.design-studio #rechner .sc-time-takeaway {
  font-size: 18px;
  line-height: 1.7;
  margin: 25px 0 22px;
  color: #555053;
}
#rechner .sc-time-takeaway strong {
  font-weight: 550;
  color: #2a2829;
}
#rechner .sc-time-assumptions {
  margin: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #2a282925;
}
#rechner .sc-time-assumptions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 16px 0;
  font:
    500 16px/1.5 Manrope,
    Arial,
    sans-serif;
  cursor: pointer;
  list-style: none;
}
#rechner .sc-time-assumptions summary::-webkit-details-marker {
  display: none;
}
#rechner .sc-time-assumptions summary > span {
  font-size: 25px;
  line-height: 1;
  color: #c81035;
  transition: transform 0.2s;
}
#rechner .sc-time-assumptions[open] summary > span {
  transform: rotate(45deg);
}
#rechner .sc-time-assumptions summary:focus-visible {
  outline: 2px solid #c81035;
  outline-offset: 4px;
}
#rechner .sc-time-explanation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 40px;
  padding: 12px 0 24px;
}
.design-studio #rechner .sc-time-explanation h4 {
  font:
    550 17px/1.5 Manrope,
    Arial,
    sans-serif;
  margin: 0 0 8px;
}
.design-studio #rechner .sc-time-explanation p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  color: #5c575a;
}
#rechner .sc-time-explanation-note {
  grid-column: 1/-1;
  max-width: 900px;
}
.design-studio #rechner .sc-time-note {
  font-size: 14px;
  line-height: 1.7;
  color: #696467;
  margin: 12px 0 0;
  max-width: 1000px;
}
@media (max-width: 700px) {
  #rechner .sc-time-heading {
    padding: 24px;
  }
  #rechner .sc-time-paths {
    grid-template-columns: 1fr;
  }
  #rechner .sc-time-path {
    padding: 22px 24px 24px;
  }
  .design-studio #rechner .sc-time-path h4 {
    font-size: 25px;
    margin-top: 10px;
  }
  #rechner .sc-time-hours {
    margin: 20px 0 16px;
  }
  #rechner .sc-time-hours strong {
    font-size: 58px;
  }
  #rechner .sc-time-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
  }
  #rechner .sc-time-result > strong {
    font-size: 32px;
  }
  #rechner .sc-time-result > div > span {
    font-size: 17px;
  }
  #rechner .sc-time-explanation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .design-studio #rechner .sc-time-takeaway {
    font-size: 17px;
  }
}
@media (max-width: 380px) {
  #rechner .sc-time-heading,
  #rechner .sc-time-path,
  #rechner .sc-time-result {
    padding-left: 20px;
    padding-right: 20px;
  }
  .design-studio #rechner .sc-time-path h4 {
    font-size: 22px;
    gap: 6px;
  }
  #rechner .sc-time-kicker {
    font-size: 13px;
  }
  #rechner .sc-time-hours {
    gap: 14px;
  }
  #rechner .sc-time-hours span {
    font-size: 14px;
  }
}
