.toggle-bar {
  background-color: #F0F0F0;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  margin: 20px auto;
  user-select: none;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  line-height: 1.4;
}

.toggle-bar {
  display: block;
}

.gallery-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  width: 90%;
  margin: 0 auto;
}

.gallery-wrapper.open {
  max-height: 5000px;
}

.gallery {
  display: grid;
  gap: 15px;
  padding: 20px;
}

[data-layout="videos-only"] .gallery {
  grid-template-columns: repeat(5, 1fr);
}

[data-layout="videos-only"] video {
  width: 100%;
  border-radius: 8px;
}

[data-layout="image-video"] .gallery {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 60%;
  margin: 0 auto;
}

.image-wrapper img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.image-wrapper .image-title {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
