/*
 * Icon List block — items with a 24x24 icon on the left and title + description
 * on the right, behaving like a styled bullet list.
 */

.iconlist {
  display: flex;
  flex-direction: column;
  gap: var(--iconlist-gap, var(--spacing-md));
  list-style: none;
  margin: 0;
  padding: 0;
}

.iconlist-item {
  align-items: flex-start;
  display: flex;
  gap: var(--iconlist-icon-gap, var(--spacing-sm));
}

.iconlist-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 32px;
  height: 32px;
  justify-content: center;
  margin-top: 0.15em;
  width: 32px;
}

.iconlist-icon--empty {
  background: transparent;
}

.iconlist-icon-img {
  display: block;
  height: 32px;
  object-fit: contain;
  width: 32px;
}

.iconlist-body {
  flex: 1 1 auto;
  min-width: 0;
}

.iconlist-title {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.iconlist-description {
  color: var(--color-text);
  line-height: 1.5;
  margin: 0.25em 0 0;
  opacity: 0.8;
}
