.gdml-slider {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gdml-slide {
  display: flex;
  flex-direction: row;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}
.gdml-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}
.gdml-content {
  flex: 1;
  padding: 20px;
}
.gdml-title { font-size: 24px; margin-bottom: 10px; }
.gdml-desc { margin-bottom: 10px; }
.gdml-price { font-weight: bold; margin-bottom: 15px; }
.gdml-button {
  padding: 10px 20px;
  background: #0073e6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}


/* ##### Bild Text Sektion ##### */


.gdml-bild-text-container {
    background-color: #ececec;
    border-radius: 20px;
    overflow: hidden; 
}

.gdml-bild-text-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    /*gap: 30px;*/
}

.gdml-bild-text-image {
    flex: 1 1 45%;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    object-fit: cover; 
}

.gdml-bild-text-content {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #003366;
    padding: 20px;
}

.gdml-bild-text-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.gdml-bild-text-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Mobil: Bild oben, Text darunter */
@media (max-width: 768px) {
    .gdml-bild-text-inner {
        flex-direction: column;
    }

    .gdml-bild-text-image,
    .gdml-bild-text-content {
        flex: 1 1 100%;
    }
}
