/* Start custom CSS for text-editor, class: .elementor-element-6ed4857 *//* ========================
       Все классы с префиксом art2026__
       чтобы не конфликтовать с другими стилями сайта
    ======================== */

    .art2026__wrap {
      max-width: 860px;
      margin: 0 auto;
      font-family: 'Segoe UI', Arial, sans-serif;
      color: #1e1e2e;
      background: #f9f9fb;
      padding: 0 16px 60px;
      box-sizing: border-box;
    }

    /* --- HERO ШАПКА --- */
    .art2026__hero {
      background: linear-gradient(135deg, #1a1a6e 0%, #3b3bbd 60%, #6c63ff 100%);
      border-radius: 20px;
      padding: 48px 40px 40px;
      margin: 32px 0 40px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .art2026__hero::before {
      content: '';
      position: absolute;
      width: 260px;
      height: 260px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
      top: -60px;
      right: -60px;
    }
    .art2026__hero-tag {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 5px 16px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .art2026__hero h1 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 800;
      line-height: 1.25;
      margin: 0 0 18px;
    }
    .art2026__hero-sub {
      font-size: 16px;
      opacity: 0.85;
      line-height: 1.6;
      max-width: 600px;
      margin: 0;
    }
    .art2026__hero-emoji {
      font-size: 52px;
      margin-bottom: 16px;
      display: block;
    }

    /* --- INTRO --- */
    .art2026__intro {
      font-size: 17px;
      line-height: 1.8;
      color: #333;
      background: #fff;
      border-left: 5px solid #6c63ff;
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin-bottom: 36px;
      box-shadow: 0 2px 12px rgba(108,99,255,0.07);
    }

    /* --- СЕКЦИИ-БЛОКИ --- */
    .art2026__section {
      background: #fff;
      border-radius: 18px;
      padding: 30px 32px;
      margin-bottom: 28px;
      box-shadow: 0 4px 20px rgba(30,30,60,0.07);
      position: relative;
      overflow: hidden;
    }
    .art2026__section::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 6px;
      height: 100%;
      border-radius: 18px 0 0 18px;
    }
    .art2026__section--orange::after { background: linear-gradient(180deg,#ff9a3c,#ff6b35); }
    .art2026__section--blue::after   { background: linear-gradient(180deg,#4facfe,#00f2fe); }
    .art2026__section--green::after  { background: linear-gradient(180deg,#43e97b,#38f9d7); }
    .art2026__section--purple::after { background: linear-gradient(180deg,#a18cd1,#fbc2eb); }
    .art2026__section--red::after    { background: linear-gradient(180deg,#f7797d,#fbd786); }
    .art2026__section--teal::after   { background: linear-gradient(180deg,#0ed2f7,#b2fefa); }

    .art2026__section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .art2026__section-icon {
      font-size: 36px;
      flex-shrink: 0;
      line-height: 1;
    }
    .art2026__section-title {
      font-size: 21px;
      font-weight: 800;
      color: #1a1a3e;
      margin: 0;
      line-height: 1.3;
    }
    .art2026__section p {
      font-size: 16px;
      line-height: 1.8;
      color: #444;
      margin: 0 0 14px;
    }
    .art2026__section p:last-child { margin-bottom: 0; }

    /* --- BADGE / ПЛАШКА --- */
    .art2026__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      border-radius: 50px;
      padding: 5px 14px;
      margin-bottom: 14px;
    }
    .art2026__badge--new    { background:#eaf1ff; color:#3b3bbd; }
    .art2026__badge--alert  { background:#fff4e5; color:#d4700a; }
    .art2026__badge--ok     { background:#e6f9f1; color:#1a8a55; }
    .art2026__badge--hot    { background:#fff0f0; color:#c0392b; }

    /* --- ТАБЛИЦА ИЗМЕНЕНИЙ --- */
    .art2026__table-wrap {
      overflow-x: auto;
      margin: 20px 0 0;
      border-radius: 12px;
    }
    .art2026__table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }
    .art2026__table thead tr {
      background: linear-gradient(135deg,#1a1a6e,#3b3bbd);
      color: #fff;
    }
    .art2026__table thead th {
      padding: 13px 16px;
      text-align: left;
      font-weight: 700;
      font-size: 14px;
    }
    .art2026__table tbody tr:nth-child(even) { background: #f4f4ff; }
    .art2026__table tbody tr:hover           { background: #ebebff; }
    .art2026__table tbody td {
      padding: 12px 16px;
      border-bottom: 1px solid #e8e8f4;
      color: #333;
      vertical-align: middle;
    }
    .art2026__table .art2026__tag-yes {
      display: inline-block;
      background: #e6f9f1;
      color: #1a8a55;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
    }
    .art2026__table .art2026__tag-no {
      display: inline-block;
      background: #fff0f0;
      color: #c0392b;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
    }

    /* --- СПИСОК --- */
    .art2026__list {
      list-style: none;
      padding: 0;
      margin: 12px 0 0;
    }
    .art2026__list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      line-height: 1.7;
      color: #444;
      padding: 8px 0;
      border-bottom: 1px dashed #eee;
    }
    .art2026__list li:last-child { border-bottom: none; }
    .art2026__list-bullet {
      flex-shrink: 0;
      font-size: 20px;
      line-height: 1.4;
    }

    /* --- ЦИТАТА / МНЕНИЕ --- */
    .art2026__quote {
      background: linear-gradient(135deg,#f0efff,#e8f0ff);
      border-radius: 14px;
      padding: 22px 26px;
      margin: 24px 0 0;
      position: relative;
    }
    .art2026__quote::before {
      content: '❝';
      font-size: 48px;
      color: #c5c0f0;
      position: absolute;
      top: 8px;
      left: 18px;
      line-height: 1;
    }
    .art2026__quote-text {
      font-size: 16px;
      font-style: italic;
      color: #333;
      line-height: 1.75;
      margin: 0 0 10px;
      padding-left: 36px;
    }
    .art2026__quote-author {
      font-size: 13px;
      font-weight: 700;
      color: #6c63ff;
      padding-left: 36px;
    }

    /* --- КАРТОЧКИ МИНИ --- */
    .art2026__cards {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
      gap: 16px;
      margin: 20px 0 0;
    }
    .art2026__card {
      background: #f9f9ff;
      border: 1px solid #e2e0f8;
      border-radius: 14px;
      padding: 18px;
      text-align: center;
    }
    .art2026__card-icon { font-size: 32px; margin-bottom: 10px; display: block; }
    .art2026__card-num  { font-size: 28px; font-weight: 900; color: #3b3bbd; display: block; }
    .art2026__card-label{ font-size: 13px; color: #666; margin-top: 4px; display: block; }

    /* --- ИТОГОВЫЙ БЛОК --- */
    .art2026__final {
      background: linear-gradient(135deg,#1a1a6e 0%,#3b3bbd 60%,#6c63ff 100%);
      border-radius: 20px;
      padding: 36px 36px 32px;
      margin-top: 40px;
      color: #fff;
    }
    .art2026__final h2 {
      font-size: 24px;
      font-weight: 800;
      margin: 0 0 16px;
    }
    .art2026__final p {
      font-size: 16px;
      line-height: 1.75;
      opacity: 0.9;
      margin: 0 0 10px;
    }

    /* --- АДАПТИВ --- */
    @media (max-width: 600px) {
      .art2026__hero    { padding: 32px 20px 28px; }
      .art2026__section { padding: 22px 18px; }
      .art2026__final   { padding: 26px 20px; }
    }/* End custom CSS */