.faq-container {
  padding: 6rem 0;
}

/* 12 Column Grid Wrapper */
.faq-container .page-center {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.25rem;
}

/* Intro Copy */
.faq__intro-copy {
  grid-column: 1 / span 12;
  margin-bottom: 1rem;
  max-width: 900px;
}

/* Eyebrow label */
.faq__intro-copy h2 {
  font-size: 16px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  
}

/* Main title */
.faq__intro-copy h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  line-height: 1.15 !important;
  font-weight: bold !important;
}

/* The inline <span> is what holds the large font-size, so target that too */
.faq__intro-copy h3 span {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}


/* FAQ Grid */
dl.faq {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 1.25rem;
  border: none;
}

/* FAQ Items */
dl.faq dt,
dl.faq dd {
  margin: 0;
  padding: 0;
}

/* LEFT COLUMN ITEMS */
dl.faq .faq__item:nth-child(odd) {
  grid-column: 1 / span 5;
}

/* RIGHT COLUMN ITEMS */
dl.faq .faq__item:nth-child(even) {
  grid-column: 7 / span 5;
}

/* Question Card */
dl.faq dt button {
  width: 100%;
  background: #ffffff;
  border: 2px solid #7F06C3;
  border-radius: 8px;
  padding: 28px 80px 28px 28px;
  position: relative;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #191919;
  transition: all 0.3s ease;
}

/* Hover */
dl.faq dt button:hover,
dl.faq dt button:focus {
  border-color: #C886FF;
  cursor: pointer;
}

/* Active */
dl.faq dt.faq-open button {
  border-color: #00CECE;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* Plus / Minus */
dl.faq button::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #7F06C3;
  transition: all 0.3s ease;
}

/* Open State */
dl.faq button[aria-expanded="true"]::after {
  content: '–';
  color: #00CECE;
}

/* Description */
dl.faq .desc {
  display: none;
  background: #ffffff;
  border-left: 1px solid #D9DCE5;
  border-right: 1px solid #D9DCE5;
  border-bottom: 1px solid #D9DCE5;
  border-radius: 0 0 20px 20px;
  padding: 0 28px 28px;
  margin-top: -10px;
}

/* Description Text */
dl.faq .desc p {
  margin: 0;
  padding-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #191919;
}

/* Links */
dl.faq .desc a {
  color: #00AFAF;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1200px) {
  .faq-container .page-center {
    padding: 0 40px;
  }
  
    .faq__intro-copy h3,
  .faq__intro-copy h3 span {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem) !important;
  }
  
  dl.faq .faq__item:nth-child(odd),
  dl.faq .faq__item:nth-child(even) {
    grid-column: span 12;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-container {
    padding: 4rem 0;
  }
  .faq-container .page-center {
    padding: 0 20px;
  }
  
  .faq__intro-copy h3,
  .faq__intro-copy h3 span {
    font-size: clamp(1.4rem, 7.5vw, 2rem) !important;
  }
}
  dl.faq {
    row-gap: 18px;
  }
  dl.faq dt button {
    font-size: 18px;
    padding: 24px 70px 24px 24px;
    border-radius: 16px;
  }
  dl.faq button::after {
    right: 22px;
    font-size: 24px;
  }
  dl.faq .desc {
    padding: 0 24px 24px;
    border-radius: 0 0 16px 16px;
  }
  dl.faq .desc p {
    font-size: 16px;
    line-height: 1.7;
  }
}