/* ===============================
   Desktop-Layout (Default)
================================== */
.slide {
  width: 100%;
  padding: 5em 2.5em;
}

.slide.white {
  background: #ffffff;
}

.slide.gray {
  background: #F2F5F7;
}

.slide-inner {
  max-width: 1250px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}
/* Nur für das Bild im Award-Hero-Slide */
.award-hero-img {
  width: 410px!important;
  height: auto!important;
}

/* Zwei-Spalten-Layout mit Abstand */
.slide .text-left,
.slide .text-right,
.slide .image-left,
.slide .image-right {
  float: left;
  width: calc(48% - 10px);
  box-sizing: border-box;
}

/* Rechte Spalte bleibt rechts */
.slide .image-right,
.slide .text-right {
  float: right;
}

/* Immer linksbündiger Text */
.text-left,
.text-right {
  text-align: left !important;
}

.slide-image-shadow {
  height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 20px 0 #00000030;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 2em;
  object-position: bottom;
}

.slide ul li {
  margin-bottom: 0.5em;
}
h2 {
  margin-bottom: 0.8em;
}

/* Mobile-Layout */
@media screen and (max-width: 768px) {
   .slide-inner {
    display: flex;
    flex-direction: column;
  }

  .text-left,
  .text-right {
    order: 1;
  }

  .image-left,
  .image-right {
    order: 2;
  }

  .slide {
    padding: 2em;
  }

  .slide .text-left,
  .slide .text-right,
  .slide .image-left,
  .slide .image-right {
    float: none;
    width: 100%;
    
  }

  .slide-image-shadow {
    height: 150px; 
  }
}


/* ===============================
   Modal (z. B. PDF Formular)
================================== */
.modal-box {
  border-radius: 10px !important;
}


/* ===============================
   Call-to-Action Button
================================== */
#open-form-modal {
  background-color: #0077c2;
  color: #fff;
  padding: 1em 2em;
  border-radius: 0.5em;
  display: inline-block;
  text-decoration: none;
  margin-top: 2em;
}
/* ===============================
   Slide-Formulare
================================== */
.slide form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 2em;
  max-width: 600px;
}

.slide form label {
  display: block;
  font-weight: 500;
  margin: 0.8em 0 0.3em;
}

.slide form input,
.slide form select {
  width: 100%;
  padding: 0.7em;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 1em;
  font-size: 1rem;
  box-sizing: border-box;
}

.slide form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5em;
}

.slide form .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 1em;
}

.slide form button {
  background: #0077c2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9em 1.8em;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease-in-out;
}

.slide form button:hover {
  background: #005fa3;
}