    /* =====================================================
       === КАРУСЕЛЬ (сверху, во всю ширину) ===
       ===================================================== */
/* =====================================================
       === ВЕРХНЕЕ МЕНЮ ===
       ===================================================== */
 /* =====================================================
       === БЛОГ — 1:1 со скриншотом ===
       ===================================================== */
    .blog-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 28px 24px 56px;
    }

    /* --- Hero --- */
    .hero-post {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      height: 420px;
      margin-bottom: 40px;
      cursor: pointer;
    }

    .hero-post-img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .hero-post:hover .hero-post-img { transform: scale(1.04); }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 56px;
      transform: translateY(-50%);
      max-width: 540px;
      background: rgba(20, 20, 35, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 26px 30px;
    }

    .post-badge {
      display: inline-flex;
      align-items: center;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3px;
      margin-bottom: 14px;
      border: 1px solid transparent;
      background: transparent;
    }

    .badge-0 { border-color: rgba(255,255,255,0.25); color: #b8b8d0; background: transparent; }
    .badge-1 { border-color: #975DF8; color: #b088f9; background: rgba(151,93,248,0.08); }
    .badge-2 { border-color: #eb4b4b; color: #ff8080; background: rgba(235,75,75,0.08); }
    .badge-3 { border-color: #8888aa; color: #aaaacc; background: rgba(136,136,170,0.08); }
    .badge-4 { border-color: #00d296; color: #00d296; background: rgba(0,210,150,0.08); }
    .badge-5 { border-color: #4b69ff; color: #7a9bff; background: rgba(75,105,255,0.08); }

    .hero-title {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 22px;
    }

    .post-meta {
      display: flex;
      align-items: center;
      gap: 0;
      color: #aaaac0;
      font-size: 13px;
      flex-wrap: wrap;
    }

    .post-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .post-meta-item svg { width: 14px; height: 14px; fill: none; }
    .post-meta-item svg.meta-avatar { width: 18px; height: 18px; color: #8888aa; }

    /* Разделитель — серый круг между элементами мета */
    .post-meta .post-meta-item + .post-meta-item::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #4a4a6a;
      margin: 0 14px;
      vertical-align: middle;
    }

    /* --- Заголовок Latest Post --- */
    .blog-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
    }

    .filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }

    .filter-tab {
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid #2a2a44;
      background: transparent;
      color: #8888aa;
      transition: all 0.2s;
      letter-spacing: 0.3px;
      font-family: inherit;
    }

    .filter-tab:hover { border-color: #4a4a7a; color: #ccc; }
    .filter-tab.active { background: rgba(151,93,248,0.15); border-color: #975DF8; color: #b088f9; }

    /* --- Сетка карточек --- */
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px 28px;
      margin-bottom: 36px;
    }

    /* Карточка БЕЗ рамки и БЕЗ фона */
    .post-card {
      background: transparent;
      border: none;
      border-radius: 0;
      overflow: visible;
      cursor: pointer;
      position: relative;
      padding-bottom: 16px;
      animation: fadeUp 0.5s ease both;
    }

    .post-card:nth-child(1) { animation-delay: 0s; }
    .post-card:nth-child(2) { animation-delay: 0.07s; }
    .post-card:nth-child(3) { animation-delay: 0.14s; }
    .post-card:nth-child(4) { animation-delay: 0.05s; }
    .post-card:nth-child(5) { animation-delay: 0.1s; }
    .post-card:nth-child(6) { animation-delay: 0.15s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .post-card:hover .post-img-wrap img { transform: scale(1.06); }

    /* Цветная полоска снизу карточки */
    .post-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      border-radius: 2px;
    }
    .post-card.ac-purple::after { background: #975DF8; }
    .post-card.ac-red::after    { background: #eb4b4b; }
    .post-card.ac-blue::after   { background: #4b69ff; }
    .post-card.ac-yellow::after { background: #FFD700; }
    .post-card.ac-green::after  { background: #00d296; }
    .post-card.ac-gray::after   { background: #8888aa; }

    .post-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 11;
      overflow: hidden;
      position: relative;
      border-radius: 12px;
      margin-bottom: 18px;
    }

    .post-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }

    .img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(10,10,25,0.5) 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .post-card:hover .img-overlay { opacity: 1; }

    .read-badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.85);
      background: rgba(151,93,248,0.9);
      color: #fff;
      font-size: 11px; font-weight: 700;
      padding: 7px 16px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      backdrop-filter: blur(6px);
      white-space: nowrap;
    }
    .post-card:hover .read-badge { opacity: 1; transform: translate(-50%, -50%) scale(1); }

    .post-body { padding: 0; }
    .post-body .post-badge { display: inline-flex; margin-bottom: 14px; }

    .post-title {
      font-size: 15px; font-weight: 700; color: #fff;
      line-height: 1.45;
      margin-bottom: 18px;
      transition: color 0.2s;
    }

    .post-card:hover .post-title { color: #d0c0ff; }

    .post-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 14px;
    }

    /* --- Пагинация --- */
    .pagination {
      display: flex; align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 12px 0 48px;
    }

    .page-btn {
      width: 44px; height: 44px;
      border-radius: 12px;
      border: 1px solid #2a2a40;
      background: transparent;
      color: #8888aa;
      font-size: 14px; font-weight: 600;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      font-family: inherit;
    }

    .page-btn:hover { border-color: #975DF8; color: #b088f9; background: rgba(151,93,248,0.06); }
    .page-btn.active {
      background: rgba(151,93,248,0.15);
      border: 2px solid #975DF8;
      color: #b088f9;
    }
    .page-btn svg { width: 18px; height: 18px; }
    .page-btn:disabled {
      cursor: not-allowed;
      opacity: 0.4;
    }
    .page-btn:disabled:hover {
      border-color: #2a2a40;
      color: #8888aa;
      background: transparent;
    }
    .page-btn.page-dots { cursor: default; border-color: transparent; }
    .page-btn.page-dots:hover { background: transparent; color: #8888aa; border-color: transparent; }

    /* =====================================================
       === БЛОК СТАТИСТИКИ (точная копия home) ===
       ===================================================== */
.stats-arrow {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 600;
      color: #00d296;
      margin-top: -4px;
    }

    .stats-arrow svg {
      width: 12px; height: 12px;
      fill: #00d296;
      flex-shrink: 0;
    }

    /* =====================================================
       === ФУТЕР (точная копия home) ===
       ===================================================== */
/* =====================================================
       === RESPONSIVE ===
       ===================================================== */
    @media (max-width: 1100px) {
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 1024px) and (min-width: 768px) {
    }

    @media (max-width: 768px) {
      .hero-post { height: 280px; }
      .hero-title { font-size: 18px; }
      .hero-content { left: 18px; bottom: 18px; max-width: calc(100% - 36px); }
      .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .blog-wrap { padding: 20px 16px 40px; }
    }

    @media (max-width: 500px) {
      .posts-grid { grid-template-columns: 1fr; }
      .hero-post { height: 240px; }
    }
