.wh-linkbox-grid {
  padding: 24px 0;
}

.wh-linkbox-grid__headline {
  margin: 0 0 16px;
}

.wh-linkbox-grid__inner {
  display: grid;
  grid-template-columns: repeat(var(--wh-lbg-cols, 3), minmax(0, 1fr));
  gap: var(--wh-lbg-gap, 24px);
}

@media (max-width: 1024px) {
  .wh-linkbox-grid__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .wh-linkbox-grid__inner {
    grid-template-columns: 1fr;
  }
}

.wh-linkbox {
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.wh-linkbox__media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wh-linkbox__title {
  padding: 14px 16px 10px;
  font-weight: 700;
  text-align: center;
}

.wh-linkbox__links {
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wh-linkbox__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f5f7fb;
  transition: transform .15s ease, background .15s ease;
}

.wh-linkbox__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #cfe200; /* dein gelb-grün aus dem Screenshot */
  color: #1a1a1a;
  flex: 0 0 28px;
}

.wh-linkbox__link:hover {
  transform: translateY(-1px);
  background: #eef2fa;
}

.wh-linkbox-grid__empty {
  padding: 16px;
  border: 1px dashed rgba(0,0,0,0.25);
  border-radius: 8px;
  background: rgba(0,0,0,0.02);
}
