/* ============================================================================
   LISTS.CSS
   Styling für Listen mit Custom-Bullets und Highlights
   ============================================================================ */

/* ----------------------------------- */
/* WP-BLOCK-LIST mit Custom Bullets    */
/* ----------------------------------- */

.is-style-bullet-icon {
  list-style: none;
  padding: 0;
  margin: 0;
}

.is-style-bullet-icon li {
  position: relative;
  margin-bottom: var(--wp--preset--spacing--3);
  padding-left: 32px;
  padding-bottom: 0;
  color: var(--color-primary-80);
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.6;
}

.is-style-bullet-icon li:last-child {
  margin-bottom: 0;
}

/* Custom Bullet – absolut positioniert */
.is-style-bullet-icon li::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--wp--preset--spacing--1);
  display: block;
  width: var(--rocket-list-bullet-size);
  height: var(--rocket-list-bullet-size);
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* Strong/Bold Styling */
.is-style-bullet-icon li>strong {
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--lg);
  margin: 0 0 var(--wp--preset--spacing--0-5) 0;
  display: inline;
}

/* ----------------------------------- */
/* Post Terms als Liste (Immobilie)    */
/* ----------------------------------- */

.single-immobilie .wp-block-post-terms.immobilie-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(var(--wp--preset--spacing--3), 6vw, var(--wp--preset--spacing--10));
  row-gap: var(--wp--preset--spacing--3);
  padding: 0;
}

.single-immobilie .wp-block-post-terms.immobilie-highlights-list .wp-block-post-terms__separator {
  display: none;
}

.single-immobilie .wp-block-post-terms.immobilie-highlights-list a {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0 0 0 var(--wp--preset--spacing--4);
  color: var(--color-primary-80);
  font-size: var(--wp--preset--font-size--sm) !important;
  justify-content: flex-start;
  background: transparent !important;
  text-align: left;
  pointer-events: none;
}

.single-immobilie .wp-block-post-terms.immobilie-highlights-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: var(--rocket-list-bullet-size);
  height: var(--rocket-list-bullet-size);
  border-radius: 50%;
  background: var(--wp--preset--gradient--gradient);
}

@media (max-width: 781px) {
  .single-immobilie .wp-block-post-terms.immobilie-highlights-list a {
    padding: 0 0 0 var(--wp--preset--spacing--5);
  }
}