.accordion_8f91be6e {
  width: 100%;
}

.accordion_item_2d6abc63 {
  border-bottom: 1px solid var(--frey-color-border-subtle);
}

.accordion_item_2d6abc63:last-child {
  border-bottom: none;
}

.accordion_header_c9933178 {
  display: flex;
}

.accordion_trigger_1c357514 {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--frey-color-text);
  transition: all 0.2s ease-in-out;
  text-align: left;
  outline: none;
}

.accordion_trigger_1c357514:hover {
  text-decoration: underline;
}

.accordion_trigger_1c357514:focus-visible {
  border-radius: var(--frey-radius-sm);
  box-shadow:
    0 0 0 2px var(--frey-color-surface),
    0 0 0 4px var(--frey-color-focus-ring);
}

.accordion_chevron_c55f991e {
  transition: transform 0.2s ease-in-out;
  color: var(--frey-color-text-muted);
}

.accordion_chevron_open_44560e91 {
  transform: rotate(180deg);
}

/* 
  CSS Grid trick for animating height 
  Transitions from 0fr to 1fr
*/
.accordion_content_wrapper_357a0679 {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-out;
}

.accordion_content_wrapper_open_02841768 {
  grid-template-rows: 1fr;
}

.accordion_content_wrapper_closed_58ee9305 {
  visibility: hidden;
  pointer-events: none;
}

.accordion_content_945ef079 {
  overflow: hidden; /* Important for grid animation to hide contents when 0fr */
  padding-bottom: 1rem;
  color: var(--frey-color-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Remove padding if closed to avoid seeing whitespace inside 0fr */
.accordion_content_wrapper_357a0679:not(.accordion_content_wrapper_open_02841768)
.accordion_content_945ef079 {
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .accordion_trigger_1c357514,
  .accordion_chevron_c55f991e,
  .accordion_content_wrapper_357a0679 {
    transition: none;
  }
}
