/* Reset Kadence / theme button styles */
.hgc-faq__head {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hgc-faq {
  border-top: 1px solid #e6e6e6;
}

.hgc-faq__icon {
  color: #1a1a1a; /* chevron color */
}

.hgc-faq__icon-circle {
  border: 1px solid #bdbdbd;
}

/* each row */
.hgc-faq__row {
  border-bottom: 1px solid #e6e6e6;
}

/* clickable header */
.hgc-faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 14px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

/* question text */
.hgc-faq__q {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

/* right icon */
.hgc-faq__icon-circle {
  width: 32px;
  height: 32px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hgc-faq__icon-svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

/* rotate chevron when open */
.hgc-faq__head[aria-expanded="true"] .hgc-faq__icon-svg {
  transform: rotate(180deg);
}

.hgc-faq__panel {
  padding: 12px 0 20px 0;
}

.hgc-faq__q {
  text-decoration: none;
}

.hgc-faq__head:hover .hgc-faq__q,
.hgc-faq__head:focus .hgc-faq__q {
  text-decoration: none;
}

.hgc-faq__a p {
  margin: 0;
}

.hgc-faq__a p + p {
  margin-top: 10px;
}

.hgc-faq__head[aria-expanded="true"] {
  padding-bottom: 6px;
}

.hgc-faq__icon-circle {
  transition: background .15s ease;
}

.hgc-faq__head:hover .hgc-faq__icon-circle {
  background: #f5f5f5;
}

.hgc-faq__a {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ededed;

  font-size: 15px;
  line-height: 1.6;
  color: #444;
}