/*
 * The block renders the archive's markup inside page content, where two theme
 * rules that never apply on a real archive do apply:
 *
 *   1. `.entry-content ul` adds list padding — the archive's <ul> has none.
 *   2. `.site-container`'s max-width rule is scoped so it does not reach this
 *      nesting, so the grid would run the full page width.
 *
 * Both are restored from the theme's own tokens, not from invented values:
 * --global-content-width is what `.site-container` uses on the archive.
 */
/* Kadence's own `.content-width-fullwidth .content-container.site-container
 * { max-width:none; padding:0 }` has the same specificity as a plain
 * `.hmd-storie-archive .content-container.site-container` and loads later, so
 * it would win. The body class is included here to outrank it by one class
 * rather than reaching for !important. */
.content-width-fullwidth .hmd-storie-archive .content-container.site-container,
.hmd-storie-archive .content-container.site-container {
	max-width: var( --global-content-width, 1290px );
	margin-left: auto;
	margin-right: auto;
	padding-left: var( --global-content-edge-padding, 24px );
	padding-right: var( --global-content-edge-padding, 24px );
}

.hmd-storie-archive ul.kadence-posts-list {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
	list-style: none;
}

.hmd-storie-archive ul.kadence-posts-list > li {
	list-style: none;
}
