  /* Дополнительные стили для журнала */
  .article-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .article-card:hover .article-image img {
      transform: scale(1.05);
  }
  
  .article-image {
      overflow: hidden;
  }
  
  .article-image img {
      transition: transform 0.5s ease;
  }
  
  /* Пагинация */
  .pagination-btn {
      transition: all 0.3s ease;
  }
  
  .pagination-btn:hover:not(:disabled) {
      background: #E30613;
      color: white;
      border-color: #E30613;
  }
  
  .pagination-btn.active {
      background: #E30613;
      color: white;
      border-color: #E30613;
  }
  
  /* Промо блок */
  .promo-block {
      background: linear-gradient(135deg, #111111 0%, #333333 100%);
      position: relative;
      overflow: hidden;
  }
  
  .promo-block::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: url("../images/7.png") center/contain no-repeat;
      opacity: 0.1;
      transform: rotate(-15deg);
  }
  
  /* Фильтры/теги */
  .filter-tag {
      transition: all 0.3s ease;
  }
  
  .filter-tag:hover, .filter-tag.active {
      background: #E30613;
      color: white;
  }
  
  /* Поиск */
  .search-input:focus {
      border-color: #E30613;
      box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
  }
  
  /* Хлебные крошки */
  .breadcrumb a:hover {
      color: #E30613;
  }