.wizard .loc-grid {
  display: flex;
  flex-wrap: wrap;   /* erlaubt Umbruch auf kleinen Displays */
  gap: 22px;
  clear: both;
  float: left;
}

.wizard .loc-card {
  flex: 1 1 calc(33.333% - 22px); /* 3 Spalten minus Gap */
  box-sizing: border-box;
  height: auto;
  display: flex;
  flex-direction: column;
  white-space: normal;
  min-height: 0px;
}

/* Handy-Ansicht */
@media (max-width: 768px) {
  .wizard .loc-card {
    flex: 1 1 100%; /* untereinander */
  }
}
.wizard .loc-card__body{
    overflow-wrap: break-word;
}
.wizard .btn-wide{
    text-align: center;
    text-decoration: none;
    font-weight: 500;width: 100%;
padding: 12px 16px;
border-radius: 24px;
font-weight: 500;
background-color: #008FFF;
color: white;
font-size: 1em;
border: none;
outline: none;
box-shadow: none;
}
.wizard .loc-card__title{
font-weight: 800;
font-size: 20px;
margin-bottom: 8px;
}