.contentMainGallery .titel {
	font-size: 0.8rem;
  background-color: var(--logo-color-1);
  border-radius: var(--border-radius);
  padding: 0px 15px;
  font-weight: 600;

}
.contentMainGallery .beschreibung {
	font-size: 0.6rem;
  padding: 0px 15px;
  font-weight: 400;
  font-style: oblique; 
}
.contentMainGallery .beschreibung::before {
  content: "👉 ";
  display: inline-block;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.contentMainGallery:hover .beschreibung::before {
  transform: translateX(0);
  opacity: 1;
}

.contentMainGallery .overlay {
	text-align: right;
	
}

.contentMainGallery .imgbox {
  position: relative;
}

/*  rho: stört neue Positionierung von lizenzdata unten rechts im Bild
.lizenzData {
position: absolute;
  top: 0px;
  right: 9px;
  font-size: 0.5rem;
  transform: rotate(270deg);
  text-align: right;
  transform-origin: top right;
  white-space: nowrap;
  opacity: 0.5;
}
*/