.info-card {
  border-radius: 0.5rem;
  background: linear-gradient(148deg, rgba(45, 133, 255, 0.30) 9.9%, rgba(45, 133, 255, 0.00) 49.24%), var(--bs-primary);
  color: var(--ha-muted-text);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: normal;
}

.info-card-item {
  display: flex;
  gap: 1rem;
}

.info-card-item:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-icon {
  width: 2.5rem;
  flex-shrink: 0;
  padding: 6px 8px;
}

.info-card-content h4 {
  color: #fff;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.info-card-content p {
  color: var(--ha-muted-text);
}

.info-card-content ul {
  margin: 0;
  padding-left: 0;
}

.info-card-content li {
  list-style: none;
  display: flex;
  position: relative;
  padding-left: 2rem;
  line-height: 1.75;
}

.info-card-content li::before {
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--ha-muted-text);
}

.info-card.light {
  border-radius: 0.5rem;
  background: white;
  color: var(--ha-body-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card.light h2 {
  color: var(--bs-primary);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ha-muted-text);
}

.info-card.light h4 {
  color: var(--bs-primary);
}

.info-card.light p {
  color: var(--ha-body-color);
  line-height: 1.75;
}

.info-card.light .info-card-item:not(:last-child) {
  border-bottom: 1px solid var(--ha-muted-text);
}
