/* =========================
   GALLERY GRID ALT
   ========================= */
   .gallery-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  /* =========================
     CARD ALT
     ========================= */
  .gallery-card-alt {
    position: relative;
    border-radius: 1.25rem;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  
  .gallery-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
  }
  
  /* =========================
     IMAGE ALT
     ========================= */
  .gallery-card-image-alt {
    width: 100%;
    height: 260px;
    overflow: hidden;
  }
  
  .gallery-card-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-card-alt:hover img {
    transform: scale(1.08);
  }
  
  /* =========================
     CONTENT ALT
     ========================= */
  .gallery-card-content-alt {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35),
      transparent
    );
    color: #fff;
    position: absolute;
    inset: auto 0 0 0;
  }
  
  /* =========================
     TEXT ALT
     ========================= */
  .gallery-card-title-alt {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
  
  .gallery-card-text-alt {
    font-size: 0.85rem;
    opacity: 0.9;
  }
  
  /* =========================
     RESPONSIVE
     ========================= */
  @media (max-width: 1024px) {
    .gallery-grid-alt {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .gallery-grid-alt {
      grid-template-columns: 1fr;
    }
  }
  