.gs-faq {
  --gs-faq-border: #d9dee7;
  --gs-faq-ink: #17202e;
  --gs-faq-muted: #536174;
  --gs-faq-accent: #176b87;
  color: var(--gs-faq-ink);
}

.gs-faq__item {
  border-top: 1px solid var(--gs-faq-border);
}

.gs-faq__item:last-child {
  border-bottom: 1px solid var(--gs-faq-border);
}

.gs-faq__question {
  position: relative;
  padding: 1.1rem 2.5rem 1.1rem 0;
  color: inherit;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.gs-faq__question::-webkit-details-marker {
  display: none;
}

.gs-faq__question::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  color: var(--gs-faq-accent);
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.gs-faq__item[open] .gs-faq__question::after {
  content: '\2212';
}

.gs-faq__question:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gs-faq-accent) 35%, transparent);
  outline-offset: 4px;
}

.gs-faq__answer {
  padding: 0 2.5rem 1.2rem 0;
  color: var(--gs-faq-muted);
  line-height: 1.7;
}

.gs-faq__answer > :first-child {
  margin-top: 0;
}

.gs-faq__answer > :last-child {
  margin-bottom: 0;
}
