/* Core */
.ca-el-acc{--ca-heading-gap:12px;}
.ca-el-acc .ca-row{border-bottom:1px solid rgba(0,0,0,.08);}
.ca-el-acc.ca-no-divider .ca-row{border-bottom:0}
.ca-el-acc .ca-trigger{
  appearance:none;border:0;background:transparent;width:100%;
  display:grid;grid-template-columns:24px 1fr auto;gap:12px;
  align-items:center;padding:12px 4px;text-align:left;cursor:pointer;
}
.ca-el-acc .ca-icon{display:inline-flex;line-height:0;}
.ca-el-acc .ca-name{font-size:16px;line-height:1.4;}
.ca-el-acc .ca-count{opacity:.7;justify-self:end;}
.ca-el-acc .ca-panel{padding:0 28px 12px 28px;}

/* Post list bullets */
.ca-el-acc .ca-posts{list-style:disc; padding-left:20px; margin:10px 0 0 0;}
.ca-el-acc .ca-posts.ca-bullets li{margin:6px 0;}
.ca-el-acc .ca-posts a{text-decoration:none;}

/* View all link */
.ca-el-acc .ca-view-all-wrap{margin-top:8px;}
.ca-el-acc .ca-view-all{text-decoration:none; display:inline-block;}

/* Heading with decorative lines */
.ca-el-acc .ca-heading{
  display:flex; align-items:center; justify-content:center;
  gap:var(--ca-heading-gap);
  position:relative; margin-bottom:10px;
}
.ca-el-acc .ca-heading-text{display:inline-block;}
/* both sides */
.ca-el-acc .ca-heading.ca-lines-both:before,
.ca-el-acc .ca-heading.ca-lines-both:after,
.ca-el-acc .ca-heading.ca-line-left:before,
.ca-el-acc .ca-heading.ca-line-right:after{
  content:""; display:block; height:2px; width:30%; background-color:currentColor; flex:0 0 auto;
}
/* Left only: before element acts as line */
.ca-el-acc .ca-heading.ca-line-left:after{content:none;}
/* Right only: before none, after line */
.ca-el-acc .ca-heading.ca-line-right:before{content:none;}
/* Underline style: use :after as full-width underline */
.ca-el-acc .ca-heading.ca-underline{justify-content:flex-start;}
.ca-el-acc .ca-heading.ca-underline:before{content:none;}
.ca-el-acc .ca-heading.ca-underline:after{
  content:""; display:block; position:absolute; left:0; bottom:-6px; height:2px; width:100%;
  background-color:currentColor;
}
