/* v1.1.6: white backgrounds + color variables + remove Chrome blue focus ring */
.efqa { width: 100%; }
.efqa-list { display: grid; gap: 16px; }

.efqa-item {
  position: relative;
  overflow: hidden;               /* clip into rounded corners */
  border-radius: 18px;
  background: #fff;               /* force white base */
}

.efqa-header,
.efqa-panel,
.efqa-content {
  background: #fff;               /* keep header and content white */
}

/* Colors via variables */
.efqa .efqa-title        { color: var(--efqa-title-color, inherit); }
.efqa .efqa-icon         { color: var(--efqa-icon-color,  inherit); }
.efqa .efqa-content      { color: var(--efqa-content-color, inherit); }
.efqa .efqa-content a    { color: var(--efqa-link-color, inherit); text-decoration: none; }
.efqa .efqa-content a:hover,
.efqa .efqa-content a:focus { color: var(--efqa-link-hover-color, var(--efqa-link-color, inherit)); text-decoration: none; }

.efqa-header {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  border-radius: inherit;
}

/* Remove blue focus ring in Chrome/Edge; keep optional custom via var */
.efqa .efqa-header:focus,
.efqa .efqa-header:active,
.efqa .efqa-header:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.efqa .efqa-header::-moz-focus-inner { border: 0 !important; }
.efqa .efqa-header:focus-visible { box-shadow: var(--efqa-focus-shadow, none) !important; }

.efqa-title {
  font-weight: 600;
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
}

.efqa-icon .icon-open { display: none; }
.efqa-header[aria-expanded="true"] .icon-open { display: inline-flex; }
.efqa-header[aria-expanded="true"] .icon-closed { display: none; }
.efqa-header[aria-expanded="true"] .efqa-icon { transform: rotate(180deg); }

.efqa-panel { display: none; }
.efqa-panel[hidden] { display: none !important; }
.efqa-content { line-height: 1.6; padding: 16px 24px; }
