.tdg-faqs {
  display: flex;
  flex-direction: column;
}
.tdg-faqs .tdg-block__wrapper {
  position: relative;
}
.tdg-faqs .tdg-block__wrapper .tdg-block__outer-container .tdg-block__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: center;
}
.tdg-faqs .tdg-block__wrapper .tdg-block__outer-container .tdg-block__inner {
  position: relative;
}
.tdg-faqs .tdg-block__wrapper .tdg-block__outer-container .tdg-block__inner .tdg-block__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (width <= 1024px) {
  .tdg-faqs .tdg-block__wrapper .tdg-block__outer-container .tdg-block__inner .tdg-block__container {
    grid-template-columns: 1fr;
  }
}
.tdg-faqs__title {
  margin-bottom: 1.5rem;
}
.tdg-faqs.g-dark-theme .tdg-faqs__title {
	color: #fff;
}


.tdg-faqs__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0 0 0 0.5rem;
  list-style: none;
}
.tdg-faqs__item {
  border: none;
  background: transparent;
}
.tdg-faqs__question {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  border: none;
  font-family: var(--gp-font--nunito-sans);
  font-size: clamp(1.125rem, 1.0662rem + 0.2451vw, 1.25rem);
  font-weight: 700;
  text-align: left;
  color: var(--contrast);
  background: transparent;
  cursor: pointer;
  line-height: 1.2;
}
.tdg-faqs.g-dark-theme .tdg-faqs__question {
	color: #fff;
}
.tdg-faqs__question:hover {
  text-decoration: underline;
  color: #051C29;
  background-color: transparent;
}
.tdg-faqs__question:focus {
  text-decoration: underline;
  color: #051C29;
  background-color: transparent;
}
/*.tdg-faqs__question::before {
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  margin-top: 0.3rem;
  border-top: 10px solid transparent;
  border-right: 0;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--accent-2);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
}*/
/* FAQ Block — chevron indicator (replaces border-triangle) */
.tdg-faqs__question::before {
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 0.6em;
  height: 0.6em;
  margin-top: 0.45rem;
  border-top: none;
  border-right: 3px solid var(--accent-2);
  border-bottom: 3px solid var(--accent-2);
  border-left: none;
  border-radius: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
}


/* Open state — chevron rotates to point down */
.tdg-faqs__question[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

/* Dark theme */
.tdg-faqs.g-dark-theme .tdg-faqs__question::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: transparent;
}



.tdg-faqs__answer {
  max-height: 0;
  margin-top: 0;
  margin-left: 1.5rem;
  padding: 0 1.5rem;
  padding: 1rem 1.75rem 0.25rem;	
  overflow: hidden;
  font-family: var(--gp-font--nunito-sans);
  font-size: clamp(1.125rem, 1.0662rem + 0.2451vw, 1.25rem);
  line-height: 1.3;
  /*background-color: #F2F2F2;*/
  opacity: 0;
  transition: opacity 0.4s ease-in-out, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100% !important;
  box-sizing: border-box;
}
.tdg-faqs.g-dark-theme .tdg-faqs__answer {
	color: #fff;
}

.tdg-faqs__answer.tdg-faqs__answer--closed {
  display: block;
  max-height: 0;
  margin: 0;
  padding: 0 1.5rem 0 1.75rem;
  opacity: 0;
}
.tdg-faqs__answer.tdg-faqs__answer--open {
  max-height: 1500px; /* Large enough for content */
  margin: 0;
  padding: 1rem 1.5rem 0.25rem 1.75rem;
  opacity: 1;
}
.tdg-faqs__answer *:last-child {
  margin-bottom: 0;
}
.tdg-faqs__headline {
  position: relative;
}
.tdg-faqs__shape-lines {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 0.5;
}
.tdg-faqs__shape-lines svg {
  width: 100%;
  max-width: 264px;
  height: auto;
}
/*.tdg-faqs__headline-title {
  margin-bottom: 1rem;
  font-family: "playfair-display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #59190D;
}
.tdg-faqs__headline-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.tdg-faqs__headline-text a {
  font-weight: 700;
  text-decoration: underline;
  color: #2D67AB;
}*/