    .article-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .article-text { flex: 1 1 400px; }
    .article-image { flex: 1 1 300px; }
    .article-image img { 
      width: 100%; 
      border-radius: 10px; 
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }
    .gallery img {
      width: 100%;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .gallery img:hover { transform: scale(1.05); }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top:0; left:0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }
    .lightbox .close, .lightbox .prev, .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 2rem;
      background: rgba(0,0,0,0.5);
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
    }
    .lightbox .close { top: 10%; right: 5%; transform: none; font-size: 2.5rem; }
    .lightbox .prev { left: 5%; }
    .lightbox .next { right: 5%; }

    @media (max-width: 768px) {
      .article-container { flex-direction: column; }
    }