.fu-distance-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 33, 45, 0.06);
}

.fu-distance-box h2 {
  margin: 0 0 16px;
}

.fu-distance-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fu-distance-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.fu-distance-list li:last-child {
  border-bottom: 0;
}

.fu-distance-list span {
  color: #5f6f7d;
}

.fu-distance-list strong {
  color: #11212d;
  font-weight: 700;
  white-space: nowrap;
}

/* Automatische Platzierung auf manuell gebauten Detailseiten:
   Das Modul darf irgendwo auf der Seite ausgegeben werden; JS verschiebt es direkt nach das H1.
   Danach floatet es rechts neben den Introtext. */
.fu-distance-box.fu-distance-auto-placed {
  float: right;
  width: 340px;
  max-width: 340px;
  margin: 2px 0 22px 34px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .fu-distance-box.fu-distance-auto-placed {
    float: none;
    width: 100%;
    max-width: none;
    margin: 22px 0 28px;
  }
}
