This is happening because into your style.css there are the following style rules:
@media (max-width: 767px)
.title-teaser-text p {
display: none;
}
Please add the following style rules to your local.css:
@media (max-width: 767px)
.title-teaser-text p {
display: block;
}