/*-- -------------------------- -->
<---             FAQ            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-8291 {
    padding: var(--sectionPadding);
    background-color: #fff;
  }
  #faq-8291 .cs-container {
    width: 100%;
    max-width: 60rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #faq-8291 .cs-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #faq-8291 .cs-topper {
    margin: 0 0 1rem;
    padding-top: 1rem;
    color: #cc7c46;
    position: relative;
  }
  #faq-8291 .cs-topper:before {
    content: "";
    width: 3rem;
    height: 2px;
    background-color: #cc7c46;
    position: absolute;
    left: 0;
    top: 0;
  }
  #faq-8291 .cs-title {
    font-weight: 400;
    margin: 0;
    color: #223a4d;
  }
  #faq-8291 .cs-title span {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 0.2rem;
    white-space: nowrap;
  }
  #faq-8291 .cs-title span:before {
    content: "";
    position: absolute;
    left: -0.4rem;
    right: -0.2rem;
    bottom: -0.05rem;
    height: 25%;
    background: var(--secondary);
    opacity: 0.85;
    z-index: -2;
    border-radius: 4px 8px 4px 12px;
    clip-path: ellipse(60% 100% at 50% 0%);
    transform: rotate(-1deg);
  }
  #faq-8291 .cs-title span:after {
    content: "";
    position: absolute;
    left: -0.1rem;
    right: -0.5rem;
    bottom: 0.05rem;
    height: 38%;
    background: var(--secondary);
    opacity: 0.5;
    z-index: -1;
    border-radius: 6px 12px 4px 8px;
    clip-path: ellipse(55% 100% at 48% 0%);
    transform: rotate(0.5deg);
  }

  #faq-8291 .cs-faq-group {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(34, 58, 77, 0.15);
  }
  #faq-8291 .cs-faq-item {
    border-bottom: 1px solid rgba(34, 58, 77, 0.15);
  }
  #faq-8291 .cs-faq-trigger {
    width: 100%;
    padding: 1.5rem 0;
    margin: 0;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  #faq-8291 .cs-faq-question {
    font-family: 'Self Modern', serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4em;
    color: #223a4d;
  }
  #faq-8291 .cs-faq-icon {
    width: 1rem;
    height: 1rem;
    position: relative;
    flex: none;
  }
  #faq-8291 .cs-faq-icon:before,
  #faq-8291 .cs-faq-icon:after {
    content: "";
    background-color: #cc7c46;
    position: absolute;
    transition: transform 0.3s;
  }
  #faq-8291 .cs-faq-icon:before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #faq-8291 .cs-faq-icon:after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #faq-8291 .cs-faq-item.cs-active .cs-faq-icon:after {
    transform: translateX(-50%) scaleY(0);
  }

  /* Grid-rows collapse trick: animates smoothly without JS having to
     measure content height */
  #faq-8291 .cs-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }
  #faq-8291 .cs-faq-item.cs-active .cs-faq-answer {
    grid-template-rows: 1fr;
  }
  #faq-8291 .cs-faq-answer-inner {
    overflow: hidden;
  }
  #faq-8291 .cs-faq-text {
    font-size: 1rem;
    line-height: 1.5em;
    max-width: 40rem;
    margin: 0;
    padding-bottom: 1.5rem;
    color: #4e4b66;
  }
}
