/**
 * @file
 * Accessible CKEditor-authored accordion.
 *
 * js/dolev21.js rebuilds these accordions to the W3C APG pattern, which means
 * the clickable header text is now a real <button>. Strip the user-agent
 * button styling so it keeps inheriting the header's appearance; the padding,
 * borders and open/close arrows still live on .dui-accordion-header itself.
 *
 * The focus ring comes from the global :focus-visible rule in
 * components/src/01-elements/00-elements/_dolev-elements.scss, which already
 * matches native buttons.
 */

.dui-accordion-header > .dui-accordion-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}
