.mask{mask-image:linear-gradient(180deg,white,rgba(255,255,255,0))}.h-shadow{text-shadow:1px 1px 2px rgba(174,10,10,.5)}.trix-content{div {
    text-align: justify;
    /*text-indent: 2rem;*/
  }

  div img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* width: 75%; */
  }

  h1 {
    font-weight: 600;
    text-transform: uppercase; /* Преобразование текста в заглавные буквы */
    font-size: 1.02em; /* Увеличение размера шрифта на 1.2em */
    text-decoration: none; /* Удаление подчеркивания текста */
    position: relative; /* Для позиционирования псевдоэлемента */
    color: rgba(28, 24, 21, 1);
    text-shadow: 2px 2px 2px rgba(174, 10, 10, 0.5);
  }

  h1::after {
    content: ""; /* Псевдоэлемент для создания подчеркивания */
    display: block; /* Отображение в виде блока */
    height: 3px; /* Высота подчеркивания */
    background-color: rgba(239, 68, 68, 1); /* Цвет подчеркивания */
    position: absolute; /* Абсолютное позиционирование */
    left: 0; /* Сдвиг влево */
    right: 0; /* Сдвиг вправо (до конца блока) */
    bottom: -3px; /* Расположение подчеркивания ниже текста */
  }

  em {
    font-weight: 100;
    font-style: italic;
    letter-spacing: 0.09em;
    color: rgba(28, 24, 21, 1);
  }

  strong {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.02em;
    text-decoration: none;
    color: rgba(28, 24, 21, 1);
    text-shadow: 2px 2px 2px rgba(174, 10, 10, 0.3);
    position: relative; /* Для позиционирования псевдоэлемента */
    display: inline; /* Измените на inline, чтобы текст занимал только необходимую ширину */
  }
  
  strong::after {
    content: ""; 
    display: block; 
    height: 3px; 
    background-color: rgba(239, 68, 68, 1);
    position: relative; 
    left: 0; 
    right: 0; /* Занимает всю ширину */
    bottom: -3px; 
    width: 100%; /* Растягивает до конца окна просмотра */
  }

  /* Убираем подчеркивание, если внутри strong есть em */
  strong:has(em) {
    text-decoration: none; /* Убираем подчеркивание */
    font-weight: 100;
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: 0.09em;
    color: rgba(28, 24, 21, 1);
  }

  strong:has(em)::after {
    content: none; /* Убираем псевдоэлемент для strong */
  }

  a {
    color: rgba(239, 68, 68, 1);
  }

  a:hover {
    color: rgba(239, 68, 68, 1);
    text-decoration: underline solid rgba(239, 68, 68, 1);
    text-underline-offset: 4px;
  }

  pre {
    border-left:4px solid rgba(239, 68, 68, 1);
    font-family:El Messiri;
    color: rgba(120, 113, 108, 1);
    background-color: rgba(255, 255, 255, 1);
    font-weight: 200;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: justify;
    padding:.5em 15px .5em 15px;
  }

  blockquote {
    font-size: 1.1em;
    width:100%;
    font-family:El Messiri;
    font-style:italic;
    color: rgba(239, 68, 68, 1);
    padding:.5em 15px .5em 15px;
    border-left:4px solid rgba(239, 68, 68, 1);
    line-height:1.3;
    position: relative;
    background:rgba(250, 245, 245, 1);
  }
  
  blockquote::before {
    font-family:El Messiri;
    /*content: "\201C"; */
    color:rgba(239, 68, 68, 1);
    font-size:2em;
    position: absolute;
    left: 10px;
    top:-5px;
  }
  
  blockquote::after {
    font-family:El Messiri;
    /* content: '\201E'; */
    color:rgba(239, 68, 68, 1);
    font-size:2em;
    position: absolute;
    left: 15px;
    bottom:-5px;
  }
  
  blockquote span {
    display:block;
    color:rgba(239, 68, 68, 1);
    font-style: normal;
    font-weight: bold;
    margin-top:1em;
  }

  ul {
    color: rgba(120, 113, 108, 1);
    margin-left: 15px;
  }

  li {
    list-style: square outside;
    padding-left: 10px;
  }

  li::marker {
    color: rgba(239, 68, 68, 1);
  }
}.list{ul {
    color: rgba(120, 113, 108, 1);
  }
  
  li {
    list-style: square outside;
  }
  
  li::marker {
    color: rgba(239, 68, 68, 1);
  }
}