.dorfleben-leftright-section {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 30px;
  background-color: #b2bcc2;
  border-radius: 12px;
  margin: 0px 10px 10px 10px;
}

.dorfleben-leftright-section:nth-child(even) {
  flex-direction: row-reverse;
  /*background-color: #f5f5f5;*/
  background-color: #d9dee0;
}

.dorfleben-text {
  flex: 1;
}

.bilderreihe{
  flex: 1;
}

.dorfleben-image {
  flex: 1;  
}

.dorfleben-image::after {
    content: attr(data-caption);
    display: block;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.dorfleben-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 979px) {
  /* Gemeindeeinrichtungen auf kleinen Bilsdschirmen untereinander statt nebeneinander */
  .dorfleben-leftright-section {
    flex-direction: column;
    padding: 20px;
  }

  .dorfleben-leftright-section:nth-child(even) {
    flex-direction: column; /* wichtig! überschreibt row-reverse */
  }

  .dorfleben-text,
  .dorfleben-image {
    width: 100%;
  }

  .dorfleben-image img {
    max-height: 300px;
    object-fit: scale-down;    
  }
}
