/* =expandable-content block
*/
.block-expandable-content + .block-expandable-content {
  margin-top: 1rem;
}

.list-item--collapse {
  width: 100%;
  max-width: 100%;
  text-align: left;
  margin: 0;
}
.list-item--collapse + .list-item--collapse {
  border-top: solid 1px rgba(0,0,0,.25);
}
.list-item--collapse .list-item__heading {
  position: relative;
  margin: 0;
  font-weight: 500;
  padding: 1rem 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.list-item--collapse .list-item__heading span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list-item--collapse .list-item__heading::after {
  content: '+';
  font-weight: bold;
  font-family: var(--wp--preset--font-family--system-font);
  color: var(--wp--preset--color--foreground);
  display: inline-block;
  font-weight: 300;
  font-size: 30px;
}
.has-primary-background-color .list-item--collapse .list-item__heading::after,
.has-secondary-background-color .list-item--collapse .list-item__heading::after,
.has-gray-900-background-color .list-item--collapse .list-item__heading::after,
.has-foreground-background-color .list-item--collapse .list-item__heading::after {
  color: var(--wp--preset--color--white);
}
.list-item--collapse .list-item__heading.is-open::after {
  content: '-';
}
.list-item--collapse .list-item__content {
  padding: 0;
  text-align: left;
}
.list-item--collapse .list-item__content p {
  margin: 0 0 var(--wp--custom--layout--padding);
}
.list-item--collapse .list-item__content__hidden {
  display: none;
  padding: 0 0 var(--wp--custom--layout--padding);
}

.wp-admin .list-item--collapse .list-item__content__hidden {
  display: block;
}

.list-item--collapse .list-item__content__hidden *:last-child {
  margin-bottom: 0;
}
