@charset "utf-8";
/* CSS Document */
/* Grundkarte */
.nt-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Bildblock */
/* Container bekommt den Radius */
.img-wrap {
  position: relative;
  display: block;
  overflow: hidden;        /* WICHTIG: sorgt für echte runde Ecken */
  border-radius: 10px;     /* hier definierst du die Rundung */
}

/* Bild übernimmt den Radius NICHT selbst */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Titel exakt am unteren Rand */
.img-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-weight: 600;
  font-size: 1.05em;
  line-height: 1.3;
  border-radius: 0 0 10px 10px;   /* gleiche Rundung wie der Container */
}


/* Datenblock */
/* Datenliste für Bootskarten */
.boot-data {
  display: grid;
  grid-template-columns: auto 1fr;   /* links Label, rechts Wert */
  gap: 6px 14px;                     /* vertikal / horizontal */
  margin: 14px 0;
  font-size: 0.95em;
}

/* Label (dt) */
.boot-data dt {
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Wert (dd) */
.boot-data dd {
  margin: 0;
  text-align: right;
  color: #000;
}

/* Optional: dezente Trennlinien wie moderne Karten */
.boot-data dt,
.boot-data dd {
  padding: 4px 0;
}

.boot-data dd:last-of-type {
  border-bottom: none;
}


/* Preisblock */
.offer {
  margin-top: 12px;
  font-weight: 600;
}

.euro-boot {
   font-size: 0.95em;
  color: #c00;text-align: right
}
.euro-boot.woche::after {
  content: " €/Woche/Boot";
}
.euro-boot.tag::after {
  content: " €/Tag/Boot";
}


