/* FAQ block: beige section, navy heading, navy bars with white question text, navy body copy. */
.ebp-custom-accordion-1 {
  width: 100%;
  box-sizing: border-box;
  /* Defaults match reference; Elementor color controls override wrapper + title + body. */
  background-color: #f7f5f0;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.ebp-custom-accordion-1__section-title {
  margin: 0 0 1.25rem;
  font-family: inherit;
  font-size: var(--fs-xlarge);
  font-weight: 700;
  line-height: 1.2;
  color: #003d5b;
}

.ebp-custom-accordion-1__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3-5);
}

/* Navy bar: question + chevron */
.ebp-custom-accordion-1__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: inherit;
  /* font-size: 1rem; */
  font-weight: 700;
  color: #fff;
  background-color: var(--blue);
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  /* height: var(--spacing-6); */
}

.ebp-custom-accordion-1__trigger:hover,
.ebp-custom-accordion-1__trigger:focus-visible {
  filter: brightness(1.05);
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.ebp-custom-accordion-1__trigger-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: var(--fs-medium);
}

.ebp-custom-accordion-1__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
}

.ebp-custom-accordion-1__chevron svg {
  height: 2rem;
  width: 2rem;
}

/* Collapsed: chevron points down; expanded: points up */
.ebp-custom-accordion-1__item.is-open .ebp-custom-accordion-1__chevron {
  transform: rotate(180deg);
}

/* Expanded copy sits under the bar, aligned with bar padding */
.ebp-custom-accordion-1__panel {
  padding: 1rem 1.25rem 1.25rem;
}

.ebp-custom-accordion-1__body {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 400;
  line-height: 1.55;
  color: #003d5b;
}

.ebp-custom-accordion-1__body p {
  margin: 0 0 0.75em;
}

.ebp-custom-accordion-1__body p:last-child {
  margin-bottom: 0;
}

/* When a panel is closed we rely on the [hidden] attribute (no extra class needed). */
