.gallery--interactive {
      position: relative;
      max-width: 900px;
      margin: 2rem auto;
      background: var(--color-bg, #fff);
      border-radius: 1.5rem;
      box-shadow: 0 4px 32px rgba(0,0,0,0.08);
      padding: 2rem 1rem 2.5rem 1rem;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .gallery__images {
      width: 100%;
      min-height: 220px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .gallery__item {
      display: none;
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
      text-align: center;
      transition: opacity 0.5s;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      background: #f8f8fa;
    }
    .gallery__item img {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      border-radius: 1rem 1rem 0 0;
      cursor: pointer;
      transition: transform 0.3s;
    }
    .gallery__item img:hover {
      transform: scale(1.03);
      box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    }
    .gallery__item figcaption {
      padding: 1rem;
      font-size: 1.1rem;
      color: #444;
      background: #fff;
      border-radius: 0 0 1rem 1rem;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
    }
    .gallery__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      font-size: 2.2rem;
      color: #222;
      padding: 0.3em 0.7em;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s, color 0.2s;
    }
    .gallery__arrow--left {
      left: 0.5rem;
    }
    .gallery__arrow--right {
      right: 0.5rem;
    }
    .gallery__arrow:hover {
      background: #222;
      color: #fff;
    }
    .gallery__dots {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      margin-top: 1.2rem;
    }
    .gallery__dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #e0e0e0;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    .gallery__dot.is-active {
      background: #222;
    }
    @media (max-width: 700px) {
      .gallery--interactive {
        padding: 1rem 0.2rem 1.5rem 0.2rem;
      }
      .gallery__item figcaption {
        font-size: 1rem;
        padding: 0.7rem;
      }
      .gallery__arrow {
        font-size: 1.5rem;
        padding: 0.2em 0.5em;
      }
    }
    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(20,20,30,0.92);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.3s;
    }
    .lightbox[hidden] {
      display: none !important;
    }
    .lightbox__img {
      max-width: 90vw;
      max-height: 70vh;
      border-radius: 1.2rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      margin-bottom: 1.2rem;
      background: #fff;
      padding: 0.5rem;
    }
    .lightbox__caption {
      color: #fff;
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 1.5rem;
      max-width: 600px;
    }
    .lightbox__close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      font-size: 2.5rem;
      color: #fff;
      cursor: pointer;
      z-index: 10001;
      transition: color 0.2s;
    }
    .lightbox__close:hover {
      color: #ff3b3b;
    }