 * {
      box-sizing: border-box;
    }
		

.image-hover-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: inline-block;
  border-radius: 0px;
  text-decoration: none;
  color: inherit;
}

.image-hover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-hover-wrapper h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  padding: 20px;
  background: #282B81;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: bold;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px #333;
}

.image-hover-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.4); /* heller Overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-hover-wrapper .overlay i {
  font-size: 2em;
  color: #333;
}

.image-hover-wrapper:hover .overlay {
  opacity: 1;
}

.image-hover-wrapper:hover img {
  transform: scale(1.05);
}





    .ba-slider {
      position: relative;
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
	  user-select: none;
    }

    .img-before,
    .img-after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
    }

    .img-after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.05s;
      z-index: 2;
    }

    .ba-handle {
      position: absolute;
      top: 0;
      left: 50%;
      width: 4px;
      height: 100%;
      background: #FFD100;
      z-index: 3;
      cursor: ew-resize;
      transform: translateX(-50%);
      user-select: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .ba-handle .handle-icon {
      position: relative;
      background: #FFD100;
      color: #fff;
      border-radius: 50%;
      padding: 20px 10px;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 0 6px rgba(0,0,0,0.3);
    }


.gallery-frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
	border: 2px solid #FFD100;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-frame:hover img {
  transform: scale(1.05);
}

.eckpunkte h4 {
	background-color: #282B81;
	color: #FFF;
	padding: 15px;
}

.modal-galerie .modal-content {
	background-color: var(--bg-galerie-modal-content);
}

.btn-close {
	background: var(--bg-btn-close);
	padding: 5px !important;
    margin-right: 5px !important;
}

.modal-galerie .list-group-item {
	background: var(--bg-modal-galerie-list-group);
	color: var(--color-modal-galerie-list-group);
}