/* =========================================================
   hofmanns.digital -- Block 2 / Einordnung
   ========================================================= */

.hd-b2 {
  background: #F5ECD7;
  border-radius: 16px;
  padding: 3.5rem;
  font-family: var(--wp--preset--font-family--figtree), sans-serif;
  position: relative;
  overflow: hidden;
}

/* Blob */
.hd-b2__blob {
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -60px;
  border-radius: 38% 62% 46% 54% / 60% 44% 56% 40%;
  background: #DEE8E8;
  opacity: 0.5;
  z-index: 0;
}

/* Content ueber Blob */
.hd-b2 > *:not(.hd-b2__blob) {
  position: relative;
  z-index: 1;
}

/* Stern + Heading (global, gilt fuer alle Bloecke) */
.hd-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hd-stern {
  width: 26px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.hd-heading__text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1B4242;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* Items */
.hd-b2__items {
  display: flex;
  flex-direction: column;
}

.hd-b2__item {
  font-size: 1.05rem;
  color: #175B5F;
  line-height: 1.7;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(23, 91, 95, 0.12);
  cursor: default;
  transition: color 0.25s ease, transform 0.25s ease;
  margin: 0;
}

.hd-b2__item:last-child {
  border-bottom: 1px solid rgba(23, 91, 95, 0.12);
}

.hd-b2__item:hover {
  color: #C0392B;
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 640px) {
  .hd-b2 { padding: 2rem 1.5rem; }
}
