/* === Google maps karte === */
.team-location-section {
  background: #fff;
  padding: 50px 15px;
}
.team-location-container {
  display: flex;
  max-width: 1200px;
  min-height: 550px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.map-left {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 50%;
  display: flex;
}
.map-left iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  flex: 1 1 100%;
  border-radius: 4px;
  transition: border-radius 0.2s;
}

/* ======== Kontakt Section ====*/
.kontakt-window {
  background: #f5faff;
  display: flex;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  border-radius: 4px 0 0 4px;
  transition: border-radius 0.2s;
}
.kontakt-content {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  padding: 24px 38px 34px 38px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.kontakt-content h2 {
  margin: auto;
  margin-bottom: 24px;
  font-size: 2rem;
}

.kontakt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 56px;
  width: 100%;
}
.kontakt-grid > div {
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kontakt-title {
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  color: #013f6f;
}

.kontakt-adresse,
.kontakt-erreichbar,
.kontakt-zeiten {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.6;
}
.kontakt-adresse b {
  color: #0093d2;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 0.01em;
}
.kontakt-erreichbar a,
.kontakt-adresse a {
  color: #0093d2;
  text-decoration: none;
  word-break: break-all;
}

/* Directions Button */
.directions-btn {
  padding: 15px 20px;
  font-size: 24px;
  color: #013f6f;
  border: 2px solid #013f6f;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  background: #f5faff;
  width: 100%;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.directions-btn:hover {
  background: #013f6f;
  color: white;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  .team-location-container {
    flex-direction: column-reverse;
    min-height: unset;
    max-width: 100%;
  }
  .map-left, .kontakt-window {
    max-width: 100%;
    width: 100%;
  }
  .kontakt-window {
    min-height: 400px;
    margin-bottom: 0;
  }
  .map-left iframe {
    border-radius: 0 0 4px 4px;
    min-height: 260px;
  }
  .directions-btn {
    font-size: 20px;
    padding: 13px 12px;
    margin-top: 12px;
  }
  .kontakt-content h2 {
    margin-bottom: 18px;
  }
  .kontakt-grid {
    gap: 18px 0;
  }
}

@media (max-width: 600px) {
  .team-location-section {
    padding: 20px 10px;
  }
  .kontakt-content {
    padding: 20px 20px;
  }
  .kontakt-grid {
    gap: 10px 0;
    width: 100%;
  }
  .kontakt-grid > div {
    min-width: unset;
    width: 100%;
    margin-bottom: 10px;
    gap: 3px;
  }
  .kontakt-title {
    font-size: 1.09rem;
    margin-bottom: 4px;
  }
  .directions-btn {
    font-size: 18px;
    padding: 10px 6px;
    margin-top: 10px;
  }
}

/* Optional für Social Icons, falls benötigt:
.social-icons {
  margin-top: 5px;
}
*/



/* === Karriere Section (helle Version) === */

#karriere {
  background-color: #f5faff;
  color: #013f6f;
  padding: 60px 15px;
}

.karriere-container {
  display: flex;
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

/* Linke Seite */
.karriere-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.karriere-left h2 {
  margin-bottom: 30px;
}

.block {
  margin-bottom: 30px;
  padding-left: 15px;
}

.karriere-left p {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.block > div {
  width: fit-content;
}
.message-label {
  display: block;
  font-size: 0.91rem;
  color: #fff;
  background: linear-gradient(90deg, #0093d2 60%, #013f6f 100%);
  padding: 6px 8px 6px 8px;
  border-radius: 0px 36px 36px 36px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 1;
  margin-bottom: 4px;
  display: inline-block;
  box-shadow: 0 2px 12px 0 rgba(0,147,210,0.09);
}

/* Rechte Seite – Grid */
.karriere-right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(9, 1fr); /* anpassbar */
  gap: 20px;
  height: 800px;
  position: relative;
}

.card {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Column Positioning */
.col-1 { grid-column: 1; }
.col-2 { grid-column: 2; }
.col-3 { grid-column: 3; }


@media (max-width: 768px) { 
 .karriere-container { flex-direction: column; }
 .karriere-right-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(9, 1fr);
  }
  .col-3 {
    display: none; /* Spalte 3 ausblenden */
  }
}

@media (max-width: 500px) { 
.message-label {
    border-radius: 0px 24px 24px 24px;
  }}













