    /* СТИЛИ ДЛЯ СТРАНИЦЫ СТАТЬИ - ИСПРАВЛЕННЫЕ */
    /* Ширина статьи как у контейнера */
    .article-wrapper {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    .article-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      margin: 2rem 0 3rem;
      padding: 2.5rem;
    }

    /* Хлебные крошки с отступом снизу */
    .breadcrumbs {
      margin-bottom: 1.5rem;
    }

    /* Мета-данные статьи - разделенные ПУНКТИРОМ */
    .article-meta-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px dashed var(--accent-lighter);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .article-category {
      background: var(--accent);
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      font-size: 0.92rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      box-shadow: 0 3px 8px rgba(108,78,42,0.2);
    }

    .article-meta-top time {
      color: var(--muted);
      font-size: 1rem;
      font-weight: 500;
      background: var(--accent-glow);
      padding: 0.5rem 1.2rem;
      border-radius: 30px;
      border: 1px solid var(--accent-lighter);
    }

    .article-content {
      padding-top: 1rem;
    }

    .article-content h1 {
      font-size: 2.2rem;
      color: var(--accent-dark);
      margin: 0 0 2rem 0;
      line-height: 1.3;
      text-align: center;
    }

    .article-content .intro-text {
      font-size: 1.18rem;
      line-height: 1.65;
      color: var(--dark);
      margin: 0 0 3rem;
      padding: 2rem;
      background: var(--accent-glow);
      border-radius: 10px;
      border: 1px solid var(--accent-lighter);
      position: relative;
    }

    .article-content .intro-text::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, var(--accent), var(--accent-light));
      border-radius: 5px 0 0 5px;
    }

    .article-image {
      margin: 3rem 0;
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(108,78,42,0.15);
      transition: transform 0.3s ease;
      border: 1px solid var(--line);
    }

    .article-image:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(108,78,42,0.2);
    }

    .article-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .article-image figcaption {
      text-align: center;
      font-style: italic;
      color: var(--muted);
      margin-top: 1rem;
      font-size: 0.95rem;
      padding: 0.5rem;
      border-top: 1px solid var(--line);
    }

    .article-content h2 {
      font-size: 1.8rem;
      color: var(--accent-dark);
      margin: 3.5rem 0 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
    }

    .article-content h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--accent-light));
      border-radius: 4px;
    }

    .article-content h3 {
      font-size: 1.45rem;
      color: var(--accent);
      margin: 2.5rem 0 1rem;
      padding-left: 1rem;
      border-left: 3px solid var(--accent-light);
    }

    .article-content p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
      font-size: 1.1rem;
      text-align: justify;
    }

    .article-content a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 2px solid var(--accent-lighter);
      transition: all 0.25s ease;
    }

    .article-content a:hover,
    .article-content a:focus {
      color: var(--accent-dark);
      border-bottom-color: var(--accent);
    }

    /* ИСПРАВЛЕНИЕ ДЛЯ СПИСКОВ - ПРАВИЛЬНОЕ ВЫРАВНИВАНИЕ */
    .article-content ul {
      list-style: none;
      padding: 0;
      margin: 1.8rem 0;
    }

    .article-content ul li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 0.8rem;
      line-height: 1.6;
      font-size: 1.1rem;
      min-height: 1.8rem;
 
      align-items: flex-start;
    }

    .article-content ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 8px;
      height: 8px;
      background-color: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
      margin-right: 0.8rem;
    }

    /* Нумерованные списки - исправленное выравнивание */
    .article-content ol {
      list-style: none;
      counter-reset: item;
      padding: 0;
      margin: 1.8rem 0;
    }

    .article-content ol li {
      counter-increment: item;
      position: relative;
      margin-bottom: 0.8rem;
      line-height: 1.6;
      font-size: 1.1rem;
      min-height: 1.8rem;
      display: flex;
      align-items: flex-start;
    }

    .article-content ol li::before {
      content: counter(item) ".";
      position: relative;
      color: var(--accent);
      font-weight: bold;
      font-size: 1.1rem;
      background: var(--accent-glow);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      margin-right: 0.8rem;
      flex-shrink: 0;
      line-height: 1.4;
      top: 0;
    }

    /* Цитаты */
    .article-content blockquote {
      border-left: 4px solid var(--accent-light);
      background: var(--accent-glow);
      padding: 1.8rem;
      margin: 2.5rem 0;
      font-style: italic;
      border-radius: 0 12px 12px 0;
      position: relative;
    }

    .article-content blockquote::before {
      content: "❝";
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 3rem;
      color: var(--accent-light);
      opacity: 0.3;
    }

    .article-content blockquote p {
      margin: 0;
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--accent-dark);
    }

    /* Важные заметки - исправленный стиль без белого квадрата */
    .article-note {
      background: linear-gradient(135deg, var(--accent-glow), rgba(247, 243, 236, 0.9));
      border: 2px solid var(--accent-lighter);
      padding: 1.8rem;
      border-radius: 12px;
      margin: 2.5rem 0;
      position: relative;
      box-shadow: 0 4px 15px rgba(108,78,42,0.1);
    }

    .article-note::before {
      content: "💡";
      position: absolute;
      top: -18px;
      left: 20px;
      font-size: 1.8rem;
      background: var(--accent);
      color: white;
      padding: 5px 10px;
      border-radius: 50%;
      box-shadow: 0 3px 8px rgba(108,78,42,0.3);
    }

    .article-note p {
      margin: 0;
      font-weight: 500;
      color: var(--dark);
      padding-left: 10px;
    }

    /* Обертка для таблиц с горизонтальной прокруткой на мобильных */
    .table-container {
      width: 100%;
      margin: 2.5rem 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(108,78,42,0.1);
    }

    /* Таблицы - упрощенные без "рекомендуем" */
    .article-content table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px; /* Минимальная ширина для корректного отображения */
    }

    .article-content table:not(.comparison-table) {
      min-width: 500px; /* Для простых таблиц можно меньше */
    }

    .article-content th, .article-content td {
      border: 1px solid var(--line);
      padding: 1rem;
      text-align: left;
      white-space: nowrap;
    }

    .article-content th {
      background: var(--accent-glow);
      color: var(--accent-dark);
      font-weight: 600;
    }

    .article-content tr:nth-child(even) {
      background: rgba(247, 243, 236, 0.5);
    }

    /* Время чтения с пунктирной границей сверху */
    .article-meta {
      display: flex;
      justify-content: flex-end;
      margin: 3rem 0 0;
      padding-top: 2rem;
      border-top: 2px dashed var(--accent-lighter);
    }

    .read-time {
      background: var(--accent-glow);
      padding: 0.8rem 1.5rem;
      border-radius: 40px;
      font-size: 0.95rem;
      color: var(--accent-dark);
      font-weight: 600;
      box-shadow: 0 3px 10px rgba(108,78,42,0.1);
      border: 1px solid var(--accent-lighter);
    }

    .article-footer {
      margin: 3rem 0 2rem;
      text-align: center;
    }

    /* Сравнительная таблица */
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .comparison-table th {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      padding: 1.2rem;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      white-space: nowrap;
    }
    
    .comparison-table td {
      padding: 1rem;
      border: 1px solid var(--line);
      vertical-align: top;
      white-space: normal; /* Разрешаем перенос текста в ячейках */
    }
    
    .comparison-table tr:nth-child(even) {
      background: var(--accent-glow);
    }

    /* Адаптивность для статьи */
    @media (max-width: 768px) {
      .article-card {
        padding: 1.5rem;
        margin: 1.5rem 0 2.5rem;
      }
      
      .article-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
      }
      
      .article-content h1 {
        font-size: 1.8rem;
        text-align: left;
      }
      
      .article-content h2 {
        font-size: 1.5rem;
      }
      
      .article-content h3 {
        font-size: 1.3rem;
      }
      
      .article-content .intro-text {
        padding: 1.5rem;
        font-size: 1.05rem;
      }
      
      .article-image {
        margin: 2rem 0;
      }
      
      .article-content p {
        font-size: 1.05rem;
      }
      
      .article-content ul li,
      .article-content ol li {
        font-size: 1.05rem;
        padding-left: 1.8rem;
      }
      
      .article-content ul li::before {
        top: 0.5rem;
      }
      
      /* Исправление для таблиц на мобильных */
      .table-container {
        margin: 1.5rem 0;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(108,78,42,0.1);
      }
      
      .article-content table {
        font-size: 0.95rem;
      }
      
      .article-content th,
      .article-content td {
        padding: 0.8rem;
        white-space: normal; /* Разрешаем перенос текста на мобильных */
      }
      
      /* Для сравнения таблиц на мобильных */
      .comparison-table th,
      .comparison-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.95rem;
      }
      
      /* Особые стили для таблиц на очень маленьких экранах */
      @media (max-width: 480px) {
        .article-content th,
        .article-content td {
          padding: 0.6rem 0.4rem;
          font-size: 0.9rem;
        }
        
        .comparison-table th,
        .comparison-table td {
          padding: 0.6rem 0.4rem;
          font-size: 0.9rem;
        }
      }
    }

    @media (max-width: 480px) {
      .article-card {
        padding: 1.2rem;
      }
      
      .article-content h1 {
        font-size: 1.6rem;
      }
      
      .article-content h2 {
        font-size: 1.35rem;
      }
      
      .article-content h3 {
        font-size: 1.2rem;
      }
      
      .article-category {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
      }
      
      .article-meta-top time {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
      }
      
      .article-content .intro-text {
        padding: 1.2rem;
        font-size: 1rem;
      }
      
      .article-content p,
      .article-content ul li,
      .article-content ol li {
        font-size: 1rem;
      }
      
      /* Улучшение таблиц на очень маленьких экранах */
      .table-container {
        margin: 1.2rem -1.2rem;
        width: calc(100% + 2.4rem);
        border-radius: 0;
      }
      
      .article-content table {
        font-size: 0.85rem;
        min-width: 480px;
      }
      
      .article-content th,
      .article-content td {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
      }
      
      .comparison-table th,
      .comparison-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
      }
    }

    /* Анимация для появления статьи */
    .article-card {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }