.mg-angebote-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.mg-angebot-item {
  width: 100%;
  margin-bottom: 1rem;
}

.mg-angebot-item figure {
  margin: 0;
  padding: 0;
  width: 100%;
}

.mg-angebot-item img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.mg-angebot-item figcaption {
  display: none; /* Beschriftung ausblenden */
}

/* Lightbox */
.am-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.am-lightbox.active {
  opacity: 1;
}

.am-lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.am-lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.am-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  margin: 0 auto;
}

.am-lightbox-caption {
  margin-top: 10px;
  color: #333;
  text-align: center;
  font-weight: bold;
}

/* cursor for lightbox images */
.am-lightbox-trigger {
  cursor: pointer;
}
