.toggle-item {
  background-color: var(--color-quartz-20);
  border-radius: 24px;
  padding: 32px 24px;
  margin-bottom: 16px;
}
.toggle-item:last-child {
  margin-bottom: 0;
}

.toggle-item .toggle-header {
  align-items: center;
  color: var(--color-blue-50);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  gap: 16px;
  justify-content: space-between;
  line-height: 24px;
  width: 100%;
}

.toggle-item .toggle-title {
  text-align: left;
}

.toggle-item .toggle-body {
  overflow: hidden;
}

.toggle-item .toggle-content {
  font-size: 16px;
  font-weight: var(--font-weight-normal);
  line-height: 24px;
  margin-top: 16px;
}

/* Toggle icon: plus when closed, minus when open. Rendered via mask-image
   so the fill follows currentColor (inherited from .toggle-header). */
.toggle-item .toggle-icon {
  background-color: currentColor;
  display: inline-block;
  flex-shrink: 0;
  height: 24px;
  mask-image: url("../icons/plus.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../icons/plus.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 24px;
}

.toggle-item.is-open .toggle-icon {
  mask-image: url("../icons/minus.svg");
  -webkit-mask-image: url("../icons/minus.svg");
}

.toggle-body ul,
.toggle-body ol {
  margin-bottom: 16px;
  padding-left: 1.5em;
}

.toggle-body ul {
  list-style: disc;
}

.toggle-body ol {
  list-style: decimal;
}