/* Fit the Korean hospital name to its actual column without changing copy. */
html[lang|="ko"] .doctors-intro { container-type: inline-size; }
html[lang|="ko"] .doctors-intro .display-title {
  font-size: min(clamp(2.5rem, 4.4vw, 5.2rem), 15cqi);
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (max-width: 768px) {
  html[lang|="ko"] .doctors-intro .display-title {
    font-size: min(clamp(2.2rem, 9vw, 3.2rem), 15cqi);
  }
}
