body {
  background: #fafafa;
  color: #333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
}

main {
  padding: 2rem 1rem;
}

input[type="text"],
input[type="search"] {
  -webkit-appearance: none;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

.faq-search {
  display: flex;
  flex-flow: row wrap;
}

.faq-search__input {
  height: 50px;
  flex: 1 0 auto;
  border-radius: 2px;
  padding: 5px 10px;
  margin-right: -4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: 0;
}

.faq-search__counter {
  width: 100%;
  flex: 0 0 auto;
  font-size: 12px;
  opacity: 0.7;
  padding: 2px 10px 0;
}

.faq-search__button {
  height: 50px;
  border-radius: 2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex: 0 0 auto;
  background: #333;
  color: white;
  border: none;
  min-width: 50px;
}

/* ul */
.faq-list {
  list-style: none;
  margin: 1rem 0 2rem;
  padding: 0;
}

/* li */
.faq-list__headline {
  font-size: 1rem;
  opacity: 0.5;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

/* li */
.faq-list__item {
  line-height: 1.2;
  margin: 0 0 1rem;
}

.details {}

.details__summary {
  /* font-weight: bold; */
  cursor: pointer;
}

.details__content {
  line-height: 1.5;
  padding: 1rem 1rem 1.25rem;
  opacity: 0.8;
}