/* Termin-Layout */
.termin-wrapper {
  width: 100%;
}

.termin {
  display: grid;
  grid-template-columns: 100px 1fr 220px;
  gap: 20px;
  padding: 18px 18px;
  margin-bottom: 18px;
  border: 1px solid rgb(234, 238, 229);
  border-radius: 0px;
  background: #fff;
  
}

.datum {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.infos h3 {
  margin: 0 0 10px 0;
  font-size: 23px;
  line-height: 1.3;
}

.infos {
  font-size: 14px;
  color: #444;
}

a.ics-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 0px;
  background: rgb(234, 238, 229);
  color: rgb(35, 55, 36);
  border: 1ps solid rgb(40, 95, 44);
  text-decoration: none;
  font-weight: 600;
}

a.ics-link:hover {
  background: #CED1CA;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}


.bzv-content {
    display: none; /* Standardmäßig ausblenden */
}
.bzv-content.is-active {
    display: block; /* Einblenden, wenn die Klasse vorhanden ist */
}



/* Responsive (Tablet/Mobil) */
@media (max-width: 900px) {
  .termin {
    grid-template-columns: 1fr;
  }
  .image {
    order: -1;
  }
}