/* === ФИКС ПЕРЕНОСОВ СЛОВ === */
h1, h2, h3, h4, h5, h6,
.t-title, .t-heading, .t-name,
.tn-atom {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 768px) {
  .t-title, .t-heading {
    letter-spacing: -0.2px;
  }
}

/* === ОПТИМИЗАЦИЯ ИЗОБРАЖЕНИЙ === */
img { 
  object-fit: cover; 
  max-width: 100%; 
  height: auto; 
}

/* === МОБИЛЬНЫЕ ФИКСЫ === */
@media (max-width: 768px) { 
  .t-container { 
    padding: 0 15px !important;
  } 
  .t-text:not(.t-descr_xxs) {
    font-size: 16px !important; 
    line-height: 1.5; 
  }
}

/* === ЗАЩИТА ОТ ГОРИЗОНТАЛЬНОГО СКРОЛЛА === */
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* === ВЫДЕЛЕНИЕ NAP И КНОПОК ЗАПИСИ === */
.nap-block { 
  font-weight: bold; 
  color: #000; 
} 
.book-btn { 
  background: #ff6347; 
  color: #fff; 
  padding: 10px 20px; 
  border-radius: 5px; 
}