/* Ausstattung --------------------------------------------------------------- */

.ausstattung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.ausstattung-gruppe {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
}

.ausstattung-gruppe h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.ausstattung-gruppe ul {
  list-style: none;
  padding: 0;
}

.ausstattung-gruppe li::before {
  content: "✔";
  color: #2e8b57;
  margin-right: 8px;
}




/* Preis-Cards --------------------------------------------------------------- */
.preise-mobile {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.preis-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.preis-card h3 {
  margin: 0 0 5px;
}

.zeitraum {
  color: #666;
  font-size: 0.9rem;
}

.preis {
  font-size: 1.6rem;
  margin: 10px 0;
}

.preis span {
  font-size: 0.9rem;
  color: #666;
}

.details {
  font-size: 0.9rem;
  color: #444;
}

/* Nebenkosten */
.nebenkosten-mobile ul {
  list-style: none;
  padding: 0;
}

.nebenkosten-mobile li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
