/* HdKD Räume — colour-led cards (no photos yet) · inherits theme typography */

.hdkd-rm-grid {
  display: grid;
  grid-template-columns: repeat(var(--hdkd-rm-cols, 3), 1fr);
  gap: 18px;
}

.hdkd-rm-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.hdkd-rm-card:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(0, 0, 0, 0.11); }

/* ---- coloured header (room identity colour) ---- */
.hdkd-rm-card__head {
  position: relative;
  padding: 20px 20px 18px;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hdkd-rm-card__floor {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 6px;
}
.hdkd-rm-card__name.hdkd-rm-card__name {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: inherit !important;
}

/* ---- body ---- */
.hdkd-rm-card__body {
  padding: 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.hdkd-rm-card__cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2A2520;
  margin: 0;
}
.hdkd-rm-card__cap svg { color: #1C8D82; flex: 0 0 auto; }

/* ---- equipment chips ---- */
.hdkd-rm-tags {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hdkd-rm-tags li { margin: 0; }
.hdkd-rm-tags li::before, .hdkd-rm-tags li::marker { content: none; display: none; }
.hdkd-rm-tag {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #6b6256;
  background: #faf9f7;
  border: 1px solid rgba(42, 37, 32, 0.14);
  border-radius: 9999px;
  padding: 5px 10px;
}
.hdkd-rm-tag--more { color: #1C8D82; border-color: rgba(28, 141, 130, 0.35); background: #fff; font-weight: 600; }

/* ---- foot: price + CTA ---- */
.hdkd-rm-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.hdkd-rm-card__price {
  font-size: 15px;
  font-weight: 600;
  color: #136B62;
  line-height: 1.2;
}
.hdkd-rm-card__price small {
  display: block;
  font-size: 11px;
  color: #6b6256;
  font-weight: 400;
  margin-top: 2px;
}
.hdkd-rm-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2A2520;
  white-space: nowrap;
  transition: color 200ms ease, transform 200ms ease;
}
.hdkd-rm-card:hover .hdkd-rm-card__cta { color: #1C8D82; }
.hdkd-rm-card:hover .hdkd-rm-card__cta span { transform: translateX(3px); }
.hdkd-rm-card__cta span { transition: transform 200ms ease; }

/* ---- responsive ---- */
@media (max-width: 959px) { .hdkd-rm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 569px) { .hdkd-rm-grid { grid-template-columns: 1fr; } }
