/**
 * Overrides for the SiteOrigin Widgets Bundle accordion widget.
 *
 * SiteOrigin enqueues each accordion instance's compiled CSS from inside widget(),
 * which runs after wp_head, so that file always prints after this one. The selector
 * below is one class shallower than SiteOrigin's (0,4,0 vs 0,5,0) because it omits
 * the per-instance .so-widget-sow-accordion-default-{hash}-{postid} prefix, so
 * !important is what wins the cascade rather than specificity or load order.
 *
 * Dropping that prefix is deliberate: it applies to every accordion on the site and
 * survives style-setting changes, bundle updates, and new accordion placements, all
 * of which change the hash.
 *
 * rem rather than em so every accordion title renders at the same size regardless of
 * the font-size it would otherwise inherit from its container.
 */

.sow-accordion .sow-accordion-panel .sow-accordion-panel-header .sow-accordion-title {
	font-size: 1.3rem !important;
}
