@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
/* =============================================
   ПЕРЕМЕННЫЕ
   ============================================= */
/* line 6, article.scss */
:root {
  --accent: #ff6f20;
  --accent-hover: #e05a0e;
  --toc-color: #1a7b8c;
  --highlight-bg: #55a6b4;
  --text-primary: #1e1e1e;
  --text-muted: rgba(0, 0, 0, 0.5); }

/* =============================================
   ТИПОГРАФИКА — теговые селекторы для TinyMCE
   Менеджер пишет обычный текст, стили применяются сами
   ============================================= */
/* line 20, article.scss */
.article-content p {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 32px;
  margin: 0 0 20px 0 !important; }

/* line 29, article.scss */
.article-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: normal;
  margin: 40px 0 20px 0 !important; }

/* line 38, article.scss */
.article-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: normal;
  margin: 30px 0 15px 0 !important; }

/* h4 — акцентный заголовок термина, выбирается через Формат → Заголовок 4 */
/* line 48, article.scss */
.article-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--toc-color);
  line-height: 32px;
  margin: 20px 0 4px 0 !important; }

/* line 57, article.scss */
.article-content strong,
.article-content b {
  font-weight: 600; }

/* line 62, article.scss */
.article-content a {
  color: var(--accent);
  text-decoration: none; }

/* line 67, article.scss */
.article-content a:hover {
  text-decoration: underline; }

/* line 71, article.scss */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px 0; }

/* line 79, article.scss */
.article-content ul,
.article-content ol {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 32px;
  margin: 0 0 20px 0 !important;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px; }

/* line 93, article.scss */
.article-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 22px;
  line-height: 32px; }

/* line 101, article.scss */
.article-content ul li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--toc-color); }

/* ol — нумерация через counter */
/* line 113, article.scss */
.article-content ol {
  counter-reset: ol-counter; }

/* line 117, article.scss */
.article-content ol li {
  counter-increment: ol-counter; }

/* line 121, article.scss */
.article-content ol li::before {
  content: counter(ol-counter) ".";
  display: inline-block;
  flex-shrink: 0;
  min-width: 24px;
  font-weight: 600;
  color: var(--toc-color);
  font-size: 22px;
  line-height: 32px; }

/* Убираем кружок у li внутри оглавления */
/* line 133, article.scss */
nav.article-toc li::before {
  display: none; }

/* =============================================
   СПЕЦИАЛЬНЫЕ БЛОКИ
   Вставляются через Source code, текст редактируется в визуальном режиме
   ============================================= */
/* Врезка */
/* line 143, article.scss */
blockquote.article-highlight {
  background-color: var(--highlight-bg);
  border-left: none;
  padding: 20px 24px;
  margin: 20px 0; }

/* line 150, article.scss */
blockquote.article-highlight p {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: #ffffff;
  margin: 0 !important; }

/* Оглавление */
/* line 159, article.scss */
nav.article-toc {
  background-color: #f4f4f2;
  border-radius: 20px;
  padding: 40px;
  margin: 20px 0; }

/* line 166, article.scss */
nav.article-toc h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 30px 0 !important; }

/* line 174, article.scss */
.article-toc__columns {
  display: flex;
  gap: 40px; }

/* line 179, article.scss */
nav.article-toc ul {
  flex: 1;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 20px; }

/* line 189, article.scss */
nav.article-toc li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0; }

/* line 200, article.scss */
nav.article-toc li span {
  font-weight: 700;
  color: var(--toc-color);
  min-width: 24px;
  flex-shrink: 0; }

/* line 207, article.scss */
nav.article-toc a {
  color: var(--text-muted);
  text-decoration: none; }

/* line 212, article.scss */
nav.article-toc a:hover {
  color: var(--toc-color);
  text-decoration: underline; }

/* Картинка с подписью */
/* line 218, article.scss */
figure.article-image {
  margin: 20px 0;
  padding: 0; }

/* line 223, article.scss */
figure.article-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 0 10px 0; }

/* line 230, article.scss */
figure.article-image figcaption {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  line-height: 1.5;
  text-align: center; }

/* =============================================
   CTA КНОПКА
   ============================================= */
/* line 243, article.scss */
.article-cta {
  display: flex;
  justify-content: center;
  margin: 20px 0; }

/* line 249, article.scss */
.article-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  background-color: var(--accent);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none; }

/* line 268, article.scss */
.article-cta__button:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  text-decoration: none; }

/* =============================================
   АДАПТИВ
   ============================================= */
@media (max-width: 768px) {
  /* line 280, article.scss */
  .article-content p,
  .article-content ul,
  .article-content ol,
  .article-content li,
  blockquote.article-highlight p {
    font-size: 18px;
    line-height: 28px; }

  /* line 289, article.scss */
  .article-content h2 {
    font-size: 24px; }

  /* line 290, article.scss */
  .article-content h3 {
    font-size: 20px; }

  /* line 291, article.scss */
  .article-content h4 {
    font-size: 18px; }

  /* line 293, article.scss */
  .article-toc__columns {
    flex-direction: column;
    gap: 20px; }

  /* line 298, article.scss */
  .article-cta__button {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px 24px; } }
