/* =========================
   CUSTOM GALLERY TEMPLATE
   (BLOG-LIKE GRID SYSTEM)
========================= */

.custom-gallery {
  font-family: Arial, sans-serif;
  color: #333;
}

.cg-gallery-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.cg-gallery-comment {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  text-align: center;
}

/* =========================
   GRID = BLOG STYLE SYSTEM
========================= */

.cg-albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* wie Blog */
  gap: 30px;
  padding: 40px 20px;
  width: 100%;
}

/* =========================
   ALBUM CARD = BLOG CARD
========================= */

.cg-album {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
}

.cg-album:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* =========================
   IMAGE = BLOG STYLE
========================= */

.cg-album img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.cg-album:hover img {
  transform: scale(1.08);
}

/* =========================
   TITLE = BLOG FOOTER STYLE
========================= */

.cg-album-title {
  padding: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  border-top: 1px solid #eee;
}

/* =========================
   LINKS RESET
========================= */

.custom-gallery a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   MOBILE (BLOG LIKE)
========================= */

@media (max-width: 600px) {
  .cg-albums {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cg-album img {
    height: 200px;
  }

  .cg-gallery-title {
    font-size: 1.4rem;
  }
}