.hah-dodont li,.hah-dodont p{letter-spacing:0!important;word-break:normal!important;overflow-wrap:break-word;hyphens:none;font-size:clamp(14px,1.1vw,16px);line-height:1.45}.hah-dodont li{display:flex;align-items:flex-start;gap:10px}.hah-dodont li>*:first-child{flex:0 0 auto}.hah-dodont li>*:last-child{flex:1 1 auto;min-width:0}@media (max-width:980px){.hah-dodont{flex-direction:column!important}.hah-dodont>*{width:80%!important}}The min-width:0 on the text child is the piece people usually miss — flex items default to min-width:auto,which is exactly what forces that one-word-per-line column you're seeing.