.ps-accordion {
  display: flex;
  flex-direction: column;
}

.ps-accordion input[type="radio"],
.ps-accordion input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.ps-accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
  color: #fff;
  font-family: "Season Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.ps-accordion__title h3 {
  margin: 0;
  font: inherit;
}

@media screen and (max-width: 1023px) {
  .ps-accordion__title {
    font-size: 28px;
  }
}

.ps-accordion__title svg {
  flex-shrink: 0;
  transition: 250ms transform ease;
}

.ps-accordion input[type="radio"]:checked ~ .ps-accordion__title svg,
.ps-accordion input[type="checkbox"]:checked ~ .ps-accordion__title svg {
  transform: rotate(45deg);
}

.ps-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease;
}

.ps-accordion input[type="radio"]:checked ~ .ps-accordion__content,
.ps-accordion input[type="checkbox"]:checked ~ .ps-accordion__content {
  grid-template-rows: 1fr;
}

.ps-accordion__content-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: #a1a1a1;
  font-family: "Season Sans", sans-serif;
  font-size: 15px;
  line-height: 1.67;
}

.ps-accordion__content-inner h3 {
  color: inherit;
  font-size: 1.5rem;
  line-height: 1.15;
}

.ps-accordion__content-inner p {
  margin: 0;
}

.ps-accordion__content-inner p a {
  color: inherit;
  text-decoration: underline;
}

.ps-accordion__content-inner p a:hover {
  text-decoration: none;
}

.ps-faqs {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fff;
}

.ps-faqs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .ps-faqs__header {
    margin-bottom: 6rem;
  }
}

.ps-faqs__heading {
  position: relative;
  margin: 0;
  color: #000;
  font-family: "Season Serif", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.ps-faqs__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .ps-faqs__inner {
    gap: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .ps-faqs__inner {
    gap: 12rem;
  }
}

.ps-faqs__content {
  grid-column: span 4 / span 4;
}

@media screen and (min-width: 1024px) {
  .ps-faqs__content {
    grid-column: span 3 / span 3;
  }
}

@media screen and (max-width: 1023px) {
  .ps-faqs__content {
    transition: 250ms opacity ease;
  }

  .ps-faqs__content.faded {
    opacity: 0.5;
  }
}

.ps-faqs__left-heading {
  margin: 0;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .ps-faqs__left {
    grid-column: span 4 / span 4;
  }
}

.ps-faqs__content-heading {
  margin-bottom: 2rem;
  color: #000;
  font-size: clamp(50px, 8vw, 100px);
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .ps-faqs__content-heading {
    display: none;
  }
}

.ps-faqs__accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ps-faqs .ps-accordion__title,
.ps-faqs .ps-accordion__content-inner {
  color: #000;
}

@media screen and (max-width: 1024px) {
  .ps-faqs .ps-faqs__accordion {
    gap: 1rem;
  }

  .ps-faqs .ps-accordion__title {
    font-size: 24px;
  }
}
