body {
  padding-top: 100px; /* замените на высоту вашей шапки */
}

/* ===== БЛОК "ЧИТАТЬ ДАЛЕЕ" ===== */
.text-toggle-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.25;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Стили для текстового контента */
.text-toggle-content {
  margin-bottom: 0;
}

/* Стили для абзацев - без отступов между параграфами */
.text-toggle-content p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.25;
  color: #2d2d2d;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Стили для пустых параграфов (отбивки) */
.text-toggle-content p:empty {
  margin: 0;
  padding: 0;
  height: 1em; /* Высота равна межстрочному интервалу */
  min-height: 1em;
  line-height: 1em;
  content: "";
  display: block;
}

/* Убираем любые отступы между соседними параграфами */
.text-toggle-content p + p {
  margin-top: 0;
}

/* Стили для жирного текста */
.text-toggle-content strong, 
.text-toggle-content b {
  font-weight: 700;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Стили для списков */
.text-toggle-content ul, 
.text-toggle-content ol {
  margin: 0 0 0 0;
  padding-left: 30px;
}

.text-toggle-content li {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  color: #2d2d2d;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Стили для ссылок */
.text-toggle-content a {
  color: #247C84 !important;
  text-decoration: none;
  font-weight: 700;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
  transition: color 0.2s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.text-toggle-content a:hover {
  color: #245656 !important;
  text-decoration: none;
}

/* ===== АНИМАЦИЯ ===== */
.hidden-part {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-in-out;
  margin: 0;
  visibility: hidden;
}

.hidden-part.visible {
  grid-template-rows: 1fr;
  visibility: visible;
}

.hidden-part > div {
  overflow: hidden;
  min-height: 0;
}

/* Стили для кнопки */
.toggle-button {
  display: inline-block;
  background-color: transparent;
  color: #8a8a8a !important;
  border: none;
  padding: 0;
  font-size: 16px;
  font-family: "Golos-UI-2", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.25;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
  margin: 10px 0 5px 0;
}

.toggle-button:hover {
  background-color: transparent;
  color: #245656 !important;
}

.button-bottom-container {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
}

.toggle-button:focus {
  outline: none;
}