/*
 Insights List
========================================================================== */
.wp-block-meta-insights-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-meta-insights-list li {
  position: relative;
}
.wp-block-meta-insights-list li:not(:first-child) {
  margin-top: 14px;
  padding-top: 14px;
}
.wp-block-meta-insights-list li:not(:first-child):before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0;
  left: 0;
  background: currentColor;
  opacity: 0.15;
}
.wp-block-meta-insights-list a {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: var(--wp--custom--color--heading);
}
.has-text-color .wp-block-meta-insights-list a {
  color: currentColor;
}
.wp-block-meta-insights-list a:hover .icon {
  background-color: #cf8b40;
  color: var(--wp--custom--color--background);
}
.wp-block-meta-insights-list div {
  width: calc(100% - 62px);
}
.wp-block-meta-insights-list h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: currentColor;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.wp-block-meta-insights-list small {
  display: block;
  color: currentColor;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.1;
  opacity: 0.7;
  margin-top: 5px;
}
.wp-block-meta-insights-list .icon {
  width: 40px;
  height: 40px;
  background-color: #f4f6f3;
  flex-shrink: 0;
  border-radius: var(--wp--custom--border--radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cf8b40;
  transition: background 0.2s ease, color 0.2s ease;
}
.wp-block-meta-insights-list .icon img, .wp-block-meta-insights-list .icon svg {
  max-width: 16px;
  max-height: 16px;
}
.wp-block-meta-insights-list .icon path {
  fill: currentColor;
}
.wp-block-meta-insights-list.acf-block-preview a {
  pointer-events: none;
}
