/* Hallo Collapse Grid – Frontend */
.wp-block-hallo-collapse-grid.alignfull, .wp-block-hallo-collapse-grid.alignwide {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.hc-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(var(--hc-cols-d, 3), minmax(0, 1fr));
}
@media (max-width:1024px) {
  .hc-grid {
    grid-template-columns: repeat(var(--hc-cols-t, 2), minmax(0, 1fr));
  }
}
@media (max-width:767px) {
  .hc-grid {
    grid-template-columns: repeat(var(--hc-cols-m, 1), minmax(0, 1fr));
  }
}

.hc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}
.hc-summary::-webkit-details-marker {
  display: none;
}
.hc-item > .hc-summary::after {
  content: '+';
  font-weight: 700;
  line-height: 1;
}
.hc-item[open] > .hc-summary::after {
  content: '−';
}
.hc-content {
  padding: 12px 14px 14px;
}
.hc-item {
  border: none;
  border-radius: 0px;
  overflow: hidden;
}

/* Optional per-item background image (applies to SUMMARY only) */
.hc-summary.hc-summary-has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}