.coreplus-faq {
  margin-top: 1.5rem;
}

.coreplus-faq__title {
  margin: 0 0 1rem;
}

.coreplus-faq__list {
  display: grid;
  gap: 0.75rem;
}

.coreplus-faq__item {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  overflow: clip;
}

.coreplus-faq__question {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coreplus-faq__question .icon {
  transition: 150ms all linear;
}
.coreplus-faq__item[open] .coreplus-faq__question .icon {
  transform: rotate(-180deg);
}

.coreplus-faq__question::-webkit-details-marker {
  display: none;
}

.coreplus-faq__answer {
  padding: 0 1.25rem 1rem;
}

.coreplus-faq__answer > div > *:first-child {
  margin-top: 0;
}

.coreplus-faq__answer > div > *:last-child {
  margin-bottom: 0;
}
