.orange-faq-shell {
  width: 100%;
}

.orange-faq-shell.centered {
  width: min(100%, var(--site-max-width, 1380px));
  margin: 0 auto;
}

.orange-faq-shell.fullWidth,
.orange-faq-shell.full-width {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.faq-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 6px);
  background-color: transparent;
  background-image: none;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--dark-background-color) 9%, transparent);
}

.faq-wrapper::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--button-color), color-mix(in srgb, var(--button-color) 35%, transparent), transparent);
  pointer-events: none;
}

.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: clamp(0.35rem, 1vw, 0.8rem) 0;
}

.faq-left h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}

.faq-left h3 {
  margin: 0;
  color: var(--button-color);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.faq-left p {
  color: var(--muted-text-color);
  line-height: 1.78;
  max-width: 44ch;
  margin: 0.25rem 0 0;
}

.faq-right {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 18px;
  background: color-mix(in srgb, white 82%, var(--background-color) 18%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--dark-background-color) 6%, transparent);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--dark-background-color) 9%, transparent);
}

.faq-item.open {
  background: color-mix(in srgb, white 92%, var(--button-color) 8%);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.1rem 1.05rem 1.2rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--dark-background-color);
  text-align: left;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-question-text {
  flex: 1 1 auto;
  text-align: right;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: var(--accent-color);
  color: white;
}

.faq-question:hover .toggle-icon,
.faq-question:focus-visible .toggle-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.toggle-icon {
  order: -1;
  margin-left: 0;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--button-color) 12%, white 88%);
  color: var(--button-color);
  font-size: 1.1rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.faq-item.open .toggle-icon {
  background: var(--button-color);
  color: white;
  transform: rotate(90deg);
}

.faq-answer {
  margin-top: 3rem;
  padding: 0 1.2rem 1.4rem 4rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted-text-color);
  line-height: 1.78;
  font-size: 1.08rem;
  max-width: 58ch;
}

@media (max-width: 1100px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-left p,
  .faq-answer p {
    max-width: none;
  }

  /* Match mobile text scale used in center-text */
  .orange-faq-shell .faq-left h2 {
    font-size: clamp(1.45rem, 5.8vw, 2.15rem) !important;
    line-height: 1.14 !important;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .orange-faq-shell .faq-left h3 {
    font-size: clamp(0.98rem, 3.7vw, 1.2rem) !important;
    line-height: 1.3 !important;
    overflow-wrap: anywhere;
  }

  .orange-faq-shell .faq-left p {
    font-size: clamp(0.96rem, 3.3vw, 1.08rem) !important;
    line-height: 1.58 !important;
    overflow-wrap: anywhere;
  }

  .orange-faq-shell .faq-question {
    font-size: clamp(0.96rem, 3.3vw, 1.08rem) !important;
    line-height: 1.5 !important;
  }

  .orange-faq-shell .faq-answer p {
    font-size: clamp(0.96rem, 3.3vw, 1.08rem) !important;
    line-height: 1.58 !important;
  }
}

@media (max-width: 640px) {
  .orange-faq-shell.centered {
    width: 100%;
    box-sizing: border-box;
  }

  .faq-wrapper {
    padding: 1rem 10px !important;
    border-radius: var(--radius-lg);
    gap: 1.1rem;
  }

  .faq-left {
    padding-inline: 0;
  }

  .faq-left h2,
  .faq-left h3,
  .faq-left p,
  .faq-left .separator2 {
    margin-left: 0;
    margin-right: 0;
    max-width: calc(100vw - 20px);
  }

  .orange-faq-shell .faq-left h2 {
    font-size: clamp(1.28rem, 6.6vw, 1.9rem) !important;
  }

  .orange-faq-shell .faq-left h3 {
    font-size: clamp(0.9rem, 4vw, 1.08rem) !important;
  }

  .faq-question {
    padding: 0.95rem 0.95rem 0.9rem 1rem;
    font-size: clamp(0.94rem, 4vw, 1rem) !important;
  }

  .faq-answer {
    margin-top: 3rem;
    padding: 0 10px 1.1rem 2.2rem;
  }

  .toggle-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}
