.gallery-v1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}

.gallery-v1-tile {
  position: relative;
  padding: 0;
  border: 0;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background-color: #eef3f3;
  cursor: pointer;
}

.gallery-v1-tile img,
.gallery-v1-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-v1-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  pointer-events: none;
}

.gallery-v1-video-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gallery-v1-video-slide video {
  max-width: 100%;
  max-height: 100%;
}

.article-content .gallery-v1-grid,
.faq-content .gallery-v1-grid,
.about-content .gallery-v1-grid {
  margin: 3rem auto;
}
