.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #000;
  padding: 4px;
}

/* Landscape */
.gallery-grid img.landscape {
  height: 180px;
  object-fit: contain;
}

/* Portrait */
.gallery-grid img.portrait {
  height: 260px;
  object-fit: contain;
}
/* Base image styling */
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  padding: 4px;
  object-fit: contain;
}

/* Landscape */
.gallery-grid img.landscape {
  height: 180px;
}

/* Portrait */
.gallery-grid img.portrait {
  height: 260px;
}

/* 70s Backgrounds */

/* Option B – Flower‑Power Pastel Burst */
.gallery-grid > div:nth-child(odd) img {
  background: radial-gradient(circle at center, #ffe29f, #ffa99f, #ff719a);
}

/* Option C – Funky Purple Disco Glow */
.gallery-grid > div:nth-child(even) img {
  background: linear-gradient(135deg, #6a00ff, #b100ff, #ff00c8);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  padding: 4px;
  object-fit: contain;
  background-color: #ffe8f0; /* soft base */
  background-image:
    radial-gradient(circle at 10px 10px, #ff9acb 20%, transparent 22%),
    radial-gradient(circle at 40px 40px, #ffd36e 20%, transparent 22%);
  background-size: 50px 50px;
}
