Does the Dawn theme support Chinese for blog previews?

Hello, I am using Dawn theme for my Chinese cooking ingredients store which will be in Traditional Chinese.

I have added a blog post section on home page, but the preview would show the entire blog and there is no way to shorten the preview. I have tried editing the code in article-card.liquid, changing 100 to a smaller number, it works for my English blog, but Chinese blog remains showing the entire blog. No matter how I change the number, it seems not affecting the Chinese blog preview.

{%- if show_excerpt -%}
              {%- if article.excerpt.size > 0 or article.content.size > 0 -%}
                

                  {%- if article.excerpt.size > 0 -%}
                    {{ article.excerpt | strip_html | truncatewords: 100 }}
                  {%- else -%}
                    {{ article.content | strip_html | truncatewords: 100 }}
                  {%- endif -%}

Please let me know if this is possible to fix. Or the theme just does not support Chinese?

Thanks!

Hello would anyone has a solution to this? Much appreciated!

please tell me your shop url

it is www.5c5493-2.myshopify.com

password: supersoup

.article-card__excerpt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

try this in your base.css

it works perfectly! Thank you!