.hb-vm--empty,
.hb-vm--error {
  padding: 14px;
  border: 1px dashed #cfcfcf;
  border-radius: 12px;
}

.hb-vm__cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
	.hb-vm__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
  .hb-vm__cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hb-vm-card {
  padding: 2vw;
  background-color: #ffffff;
  text-align: left;
  padding-top: 2.2vw;
  border-radius: 0 0 85px 0;
  display: flex;
  flex-direction: column;
}

.hb-vm-card__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 27px;
  font-weight: 700;
}

.hb-vm-card__meta {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 8px;
  line-height: 19px;
}

.hb-vm-card__date {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 8px;
  line-height: 19px;
}

.hb-vm-filter__row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hb-vm-filter__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  /*flex: 1;*/
}

.hb-vm-filter__label {
  font-size: 14px;
  opacity: 0.85;
}

.hb-vm-filter__select {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.hb-vm-filter__search {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.hb-vm-filter__field--search {
  min-width: 260px;
}

.hb-vm-filter__reset {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.hb-vm-filter__results {
  margin-top: 32px;
}

.hb-vm-filter__pagination {
  margin-top: 14px;
}

.hb-vm-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hb-vm-pager__btn {
  height: 40px;
  min-width: 44px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.hb-vm-pager__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hb-vm-pager__info {
  font-size: 14px;
  opacity: 0.9;
}


/* Content in der Liste: auf max. 5 Zeilen begrenzen */
.hb-vm-card__content {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;

  p{
	font-size: 18px;
	line-height: 27px;
  }
}

.hb-vm-card__more {
 background-color: #ffffff;
  text-align: left;
  font-size: 20px;
  color: #005634;
  text-decoration: none;  
  font-weight: 700;
  margin-top: auto;

  &::after{
	content: "";
  margin-left: 11px;
  width: 17px;
  height: 13px;
  display: inline-block;
  -webkit-mask: url("/wp-content/uploads/pfeil-gruen.png") no-repeat center / contain;
  mask: url("/wp-content/uploads/pfeil-gruen.png") no-repeat center / contain;
  background-color: currentColor;
  transition: all 0.4s ease-in-out;
  }
}

.hb-vm-card__more:hover {
  text-decoration: underline;
}

/* Single: voller Text, ohne Clamp */
.hb-vm-single {
  max-width: 1600px;
  margin: 0 !important;
  
  padding-bottom: 80px;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.hb-vm-single__back {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
  text-decoration: underline;
}

.hb-vm-single__title {  
  font-size: var(--h2-size);
  line-height: var(--h2-line);
  font-weight: var(--h2-weight);
  color: var(--color-ink);
  margin: 0 0 0.6em;
}

.hb-vm-card--single .hb-vm-card__content,
.hb-vm-card__content--full {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.wp-singular:has(.hb-vm-single) .hero-bild-block{
	display: none;
}
.wp-singular:has(.hb-vm-single) .breadcrumbs{
	margin-top: 32px;
  margin-bottom: 48px;

}