/* Online Calculator Tools — Physics result auto-fit support */
.result-panel .result-number{
  max-width:100%;
  white-space:nowrap;
  overflow:visible;
}
.result-panel .result-number.physics-result-wrapped{
  display:block;
  white-space:normal;
  line-height:.94;
}
.result-panel .result-number.physics-result-wrapped .physics-result-value{
  display:block;
}
.result-panel .result-number.physics-result-wrapped .physics-result-unit{
  display:block;
  margin-top:8px;
  font-size:clamp(20px,2.7vw,30px);
  line-height:1.08;
  letter-spacing:-.02em;
  color:#efcc72;
  -webkit-text-fill-color:#efcc72;
  text-shadow:none;
  filter:none;
  overflow-wrap:anywhere;
}
@media (max-width:520px){
  .result-panel .result-number.physics-result-wrapped .physics-result-unit{
    font-size:clamp(18px,7vw,26px);
  }
}
html[data-theme="light"] .result-panel .result-number.physics-result-wrapped .physics-result-unit{
  color:#8e5b00;
  -webkit-text-fill-color:#8e5b00;
}
