.anfahrt-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.anfahrt-text {
  flex: 1 1 45%;
  min-width: 280px;
  font-size: 1.3rem;
 
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.anfahrt-image {
  flex: 1 1 45%;
  min-width: 280px;
}



.anfahrt-text a.button {
  display: block;
  margin: 1rem auto; 
  text-align: center;
  
}

.anfahrt-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 260px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* position above button */
  left: 50%;
  margin-left: -130px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.1rem;
  line-height: 1.4;
  white-space: normal; /* ensures wrapping works */
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Visible on hover/focus */
.tooltip:hover .tooltiptext,
.tooltip:focus .tooltiptext {
  visibility: visible;
  opacity: 1;
}


@media (max-width: 600px) {
 .anfahrt-text {
  font-size: 1rem;

}
}