/* Fix: Tilda "Потоки" (Streams) default post-detail template applies the
   title's heading style (t-heading_lg / post_title_typo) to BOTH the
   Заголовок (title) AND the Анонс (announce/lead) fields, so they render
   identically and blend together. This rule re-styles only the 2nd
   heading-styled text block inside a Streams post's text cell (i.e. the
   Анонс, which always follows the title as molecule #2) back down to
   normal body-text weight/size. It cannot match the title (molecule #1)
   or the article body (uses a different class, t-text_md, not t-heading_lg),
   and .t-cms__page__cell_txt / .t-cms__page__molecule_txt only exist on
   Tilda's auto-generated Streams post pages, not on regular Zero Block
   pages, so this does not affect any other page or block on the site. */
.t-cms__page__cell_txt > .t-cms__page__molecule_txt:nth-of-type(2) .t-heading_lg {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
