/* === WP Seminar Manager — Infoliste Widget === */

.wpsm-il {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.wpsm-il__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

/* Icon-Hintergrund-Container */
.wpsm-il__icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #eff6ff;
  border-radius: 10px;
}

/* Icon-Span: Größe via font-size, Farbe via color/fill */
.wpsm-il__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2563eb;
}

/* SVG-Icons: fill von color erben, Größe via 1em */
.wpsm-il__icon-wrap svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.wpsm-il__icon-wrap i {
  display: block;
  line-height: 1;
}

/* Content */
.wpsm-il__content {
  flex: 1;
  min-width: 0;
}

/* Überschrift */
.wpsm-il__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
  line-height: 1.3;
}

/* Details */
.wpsm-il__details {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

/* Hinweis */
.wpsm-il__hint {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.45;
  margin-top: 3px;
}

/* Trennstrich */
.wpsm-il__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
}
