/* Контейнер таблицы */
.tilda-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  font-family: inherit;
}
/* Таблица */
.tilda-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
/* Заголовки */
.tilda-table thead th {
  background-color: #f5f5f5;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
}
/* Ячейки */
.tilda-table tbody td {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.5;
}
/* Первый столбец — акцент */
.tilda-table tbody td:first-child {
  font-weight: 600;
}
/* ---------- Адаптация под мобильные ---------- */
@media (max-width: 768px) {
  .tilda-table {
    min-width: 100%;
    border: none;
  }
  .tilda-table thead {
    display: none;
  }
  .tilda-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
  }
  .tilda-table tbody td {
    display: block;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 14px;
    font-size: 14px;
  }
  .tilda-table tbody td:last-child {
    border-bottom: none;
  }
  .tilda-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 4px;
  }
}



/* ===== FAQ общий контейнер ===== */
.faq-wrap {
  background: #ffffff;
  padding: 32px;
  margin: 48px 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-family: inherit;
}
.faq-wrap h4 {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}
/* ===== Элемент вопроса ===== */
.faq-item {
  border-radius: 10px;
  background: #f9fafb;
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.2s ease;
}
.faq-item:hover {
  background: #f3f4f6;
}
/* ===== Заголовок вопроса ===== */
.faq-question {
  padding: 16px 48px 16px 20px;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
/* Иконка + / − */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #2563eb;
  transition: transform 0.2s ease;
}
.faq-item.active .faq-question::after {
  content: "–";
}
/* ===== Ответ ===== */
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}
.faq-item.active .faq-answer {
  display: block;
}
/* ===== Адаптация ===== */
@media (max-width: 640px) {
  .faq-wrap {
    padding: 24px 16px;
  }
  .faq-wrap h4 {
    font-size: 20px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
  }
}





/* Хлебные крошки в статьях */
.breadcrumbs {
  font-family: 'YS Text', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-weight: 300 !important;

  /* Цвет по умолчанию */
  color: #8a8a8a !important;

  /* по умолчанию можно переносить (кроме мобилы) */
  flex-wrap: wrap !important;
}

.breadcrumbs a {
  color: #8a8a8a !important;
  text-decoration: none !important;
  transition: color 0.2s ease, text-decoration 0.2s ease !important;
}

.breadcrumbs a:hover {
  color: #000000 !important;
  text-decoration: underline !important;
}

.breadcrumbs .separator {
  color: #8a8a8a !important;
  margin: 0 2px !important;
}

/* Текущая страница (не ссылка) */
.breadcrumbs span#breadcrumb-current {
  color: #8a8a8a !important;
  font-weight: 400 !important;
}

.t-feed__post-popup__container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 320–640: одна строка + троеточие у последней крошки */
@media (max-width: 640px) {
  .breadcrumbs {
    font-size: 8px !important;
    gap: 4px !important;
    margin-bottom: 8px !important;

    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .breadcrumbs a,
  .breadcrumbs .separator {
    flex: 0 0 auto !important;
  }

  .breadcrumbs span#breadcrumb-current {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
  }
}

/* 641–1200 */
@media (min-width: 641px) and (max-width: 1200px) {
  .breadcrumbs {
    font-size: 10px !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
  }
}

/* 1201+ */
@media (min-width: 1201px) {
  .breadcrumbs {
    font-size: 12px !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
  }
}









