.faq-container {
  max-width: 1432px;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.faq-container .faq-label {
  max-width: 464px;

  color: var(--color-black);
}


/* Wrapper */

.faq-items-wrapper {
  max-width: 726px;
  margin-top: 20px;
  margin-bottom: 93px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-left: auto;
}

/* Individual item */
.faq-items-wrapper .faq-item {
  display: flex;
  gap: 30px;
}

/* Accent bar (item-level) */
.faq-items-wrapper .accent-1 {
  width: 6px;
  background: var(--color-oja-orange);
  flex-shrink: 0;
}

.faq-items-wrapper .accent-2 {
  width: 6px;
  background: var(--color-oja-turquoise);
  flex-shrink: 0;
}

.faq-items-wrapper .accent-3 {
  width: 6px;
  background: var(--color-oja-yellow);
  flex-shrink: 0;
}

.faq-items-wrapper .accent-0 {
  width: 6px;
  background: var(--color-oja-red);
  flex-shrink: 0;
}


/* Contents */
.faq-items-wrapper .faq-item .faq-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Header (click target) */
.faq-items-wrapper .faq-item .faq-body .faq-header {
  display: flex;
  gap: 67px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

/* Title */
.faq-items-wrapper .faq-item .faq-body .faq-header .faq-title {
  color: var(--color-black);
  flex: 1 1 600px;
  min-width: 0;
}

/* Chevron icon */
.faq-items-wrapper .faq-item .faq-body .faq-header .faq-icon {
  width: 23px;
  height: 14px;
  flex: 0 0 23px;

  background-image: var(--faq-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Icon rotate on open */
.faq-items-wrapper .faq-item.open .faq-body .faq-header .faq-icon {
  transform: rotate(180deg);
}

/* Collapsible wrapper */
.faq-items-wrapper .faq-item .faq-body .faq-content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease-out;
}

/* Open state */
.faq-items-wrapper .faq-item.open .faq-body .faq-content-wrap {
  margin-top: 16px;
  grid-template-rows: 1fr;
}

/* Actual content */
.faq-items-wrapper .faq-item .faq-body .faq-content {
  flex: 0 1 600px;
  color: var(--color-black);
  max-width: 600px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 300ms ease-out;
}

/* Fade in */
.faq-items-wrapper .faq-item.open .faq-body .faq-content {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}



@media (max-width: 767px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
    max-width: 430px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-items-wrapper {
    width: 100%;
    margin-top: 0;
    gap: 40px;
  }

  .faq-items-wrapper .faq-item .faq-body .faq-header {
    gap: 12px;
  }

  .faq-items-wrapper .faq-item {
    margin-top: 0;
    gap: 24px;
  }

  .faq-items-wrapper .faq-item .faq-body .faq-header .faq-title,
  .faq-items-wrapper .faq-item .faq-body .faq-content-wrap {
    max-width: 312px;
  }

  .faq-items-wrapper .faq-item .faq-body .faq-header .faq-icon {
    width: 23px;
    height: 100%;
    margin-top: -9px;
  }

}