/* assets/css/booking.css */

/* Termin: 2-Spalten-Layout */
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}

/* Mobile: untereinander */
@media (max-width: 860px) {
  .termin-grid {
    grid-template-columns: 1fr;
  }
}

/* Info-Box */
.termin-info .h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Box kompakter */
.termin-cal {
  padding: 16px;
}

/* Cal Embed (falls später wieder genutzt) */
.cal-embed {
  width: 100%;
  position: relative;
}

.cal-embed-slot {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 520px;
}

@media (max-width: 560px) {
  .cal-embed-slot {
    min-height: 640px;
  }
}

/* Credit */
.cal-credit {
  margin-top: 10px;
  text-align: right;
  font-size: 13px;
  opacity: 0.85;
}
