/* /news/style.css */
/* Перекрытие типографики шаблона для контента статьи (внутри <article>) */

article{
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px;

  color: #111 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;

  letter-spacing: normal !important;
  text-transform: none !important;

  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Базовые отступы */
article p{
  margin: 0 0 14px !important;
  text-align: left !important;
}

@media (min-width: 768px){
  article p{
    text-align: justify !important;
  }
}

/* Заголовки — убираем uppercase/центрирование/огромные размеры из шаблона */
article h1,
article h2,
article h3{
  margin: 22px 0 12px !important;
  padding: 0 !important;

  text-align: left !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;

  font-weight: 700 !important;
  line-height: 1.25 !important;
}

article h1{
  margin-top: 0 !important;
  font-size: 34px !important;
}

article h2{
  font-size: 26px !important;
}

article h3{
  font-size: 20px !important;
  font-weight: 600 !important;
}

/* Списки */
article ul,
article ol{
  margin: 0 0 14px 1.2em !important;
  padding: 0 !important;
}

article li{
  margin: 0 0 8px !important;
  text-align: left !important;
}

@media (min-width: 768px){
  article li{
    text-align: justify !important;
  }
}

/* Изображения / фигуры */
article figure{
  margin: 18px 0 22px !important;
  padding: 0 !important;
}

article img{
  display: block !important;
  max-width: 100% !important;
  height: auto !important;

  border-radius: 12px;
}

/* Если src пустой (плейсхолдер), скрываем, чтобы не было “битой” иконки */
article img:not([src]),
article img[src=""]{
  display: none !important;
}

article figcaption{
  margin-top: 8px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: #666 !important;
}

/* Ссылки */
article a{
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Разделители */
article hr{
  border: 0 !important;
  border-top: 1px solid #eaeaea !important;
  margin: 24px 0 !important;
}

/* Мелкая адаптация */
@media (max-width: 640px){
  article{
    padding: 18px 12px;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  article h1{ font-size: 28px !important; }
  article h2{ font-size: 22px !important; }
  article h3{ font-size: 18px !important; }
}
