/* Default (centered version — keep for other uses if needed) */
.gospel-section {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* NEW: inline-left version (used inside paragraph) */
.gospel-section.inline-left {
  float: left;
  width: 160px;
  margin: 0 16px 10px 0;
  text-align: center;
}

/* Button container */
.gospel-gallery-launch {
  display: inline-block;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7b56d;
  background: #fffaf0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Make it fit better when floated */
.gospel-section.inline-left .gospel-gallery-launch {
  width: 100%;
}

/* Image */
.gallery-cover {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Caption overlay */
.gallery-overlay {
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 6px;
  text-align: center;
}

/* Lightbox protection */
.glightbox-container img {
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* Optional: prevent layout issues after floated element */
.gospel-section.inline-left::after {
  content: "";
  display: block;
  clear: both;
}