*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-block-size: 100dvb;
  margin-block: 0;

  background: hsl(275, 100%, 97%) url("assets/images/background-pattern-desktop.svg") no-repeat center 0;
  display: grid;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  line-height: 1.3;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

.faqs {
  width: 600px;
  padding: 2.5rem;
  border-radius: 10px;

  margin: auto;
  background: white;
}

.faq-item {
  border-top: 1px solid hsl(275, 100%, 97%);
  padding: 1.25rem 0;

  &:first-child {
    border-top: none;
  }

  &:not(.active) .faq-content {
    display: none;
  }

  &.active .faq-content {
    display: block;
  }

}

.faq-title {
  font-weight: bold;
  color: hsl(292, 42%, 14%);
  display: flex;
  justify-content: space-between;
  align-items: center;

  button {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;

    & img {
    }
  }
}

.faq-content {
  margin: 1.25rem 0 0 0;
  color: hsl(292, 16%, 49%);
}
