
    /* Блоговые стили поверх главного styles.css */
    .page-hero {
      padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 72px);
      text-align: center;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }
    .page-hero h1 {
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 800;
      margin: 0 0 8px;
    }
    .page-hero p {
      color: var(--muted);
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto;
    }
    .blog-section {
      background: var(--bg);
      padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 72px);
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .blog-card {
      background: var(--paper);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 1px 3px #00000008;
      transition: box-shadow .25s;
    }
    .blog-card:hover {
      box-shadow: 0 4px 20px #00000010;
    }
    .blog-img-box {
      display: block;
      cursor: zoom-in;
      overflow: hidden;
      position: relative;
      background: var(--bg);
    }
    .blog-img-box img {
      width: 100%;
      height: 240px;
      object-fit: contain;
      padding: 16px;
    }
    .zoom-hint {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: #000000aa;
      color: #fff;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 12px;
      pointer-events: none;
      opacity: 0;
      transition: opacity .2s;
    }
    .blog-img-box:hover .zoom-hint {
      opacity: 1;
    }
    .blog-card__body {
      padding: 20px;
    }
    .blog-card__body time {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .blog-card__body h2 {
      font-size: 18px;
      font-weight: 800;
      margin: 8px 0;
      line-height: 1.3;
    }
    .blog-card__body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .blog-more {
      display: inline-block;
      margin-top: 12px;
      font-size: 14px;
      font-weight: 800;
      color: var(--red);
      text-decoration: none;
    }
    .blog-more:hover {
      color: var(--red-dark);
    }

    /* Лайтбокс */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #000000e8;
      z-index: 9999;
      align-items: center; justify-content: center;
      flex-direction: column;
    }
    .lightbox.active {
      display: flex;
    }
    .lightbox img {
      max-width: 90vw;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 8px;
    }
    .lightbox .lb-caption {
      color: #fff;
      margin-top: 16px;
      font-size: 16px;
      text-align: center;
      max-width: 80vw;
    }
    .lightbox .lb-caption a {
      color: var(--red);
      font-weight: 800;
    }
    .lb-close {
      position: absolute;
      top: 20px; right: 30px;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      width: 48px; height: 48px;
      display: flex;
      align-items: center; justify-content: center;
      border-radius: 50%;
      background: #ffffff15;
      transition: background .2s;
    }
    .lb-close:hover {
      background: #ffffff30;
    }
    .lb-prev, .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 42px;
      cursor: pointer;
      width: 56px; height: 56px;
      display: flex;
      align-items: center; justify-content: center;
      border-radius: 50%;
      background: #ffffff15;
      transition: background .2s;
      user-select: none;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-prev:hover, .lb-next:hover { background: #ffffff30; }
    .lb-counter {
      color: #ffffffaa;
      font-size: 14px;
      margin-bottom: 12px;
    }

    /* Футер блога */
    .blog-footer {
      background: var(--paper);
      border-top: 1px solid var(--line);
      padding: clamp(32px, 5vw, 56px) clamp(18px, 5vw, 72px);
      text-align: center;
    }
    .blog-footer h2 {
      font-size: 28px;
      font-weight: 800;
      margin: 0 0 8px;
    }
    .blog-footer p {
      color: var(--muted);
      margin: 0 0 20px;
    }
    .blog-footer .btn-red {
      display: inline-block;
      background: var(--red);
      color: #fff;
      padding: 14px 36px;
      border-radius: var(--radius);
      font-weight: 800;
      text-decoration: none;
    }
    .blog-footer .btn-red:hover {
      background: var(--red-dark);
    }

    @media (max-width: 768px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
    }
  
  /* Burger menu */
  .burger { display: none; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); z-index: 11; background: none; border: none; color: var(--ink); font-size: 28px; cursor: pointer; padding: 4px 8px; line-height: 1; }
  @media (max-width: 760px) {
    .burger { display: block; }
    .nav { display: none; }
    .nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); padding: 20px; gap: 14px; border-bottom: 1px solid var(--line); z-index: 9; }
  }
