/* 2026-06-28 v1.8
 * - Center ul.hug itself with auto side margins
 *
 * 2026-06-28 v1.7
 * - Center no-phone-spread children with mobile flex column
 *
 * 2026-06-28 v1.6
 * - Added no-phone-spread mobile stacking override
 *
 * 2026-06-28 v1.5
 * - Center ul.hug chips in mobile view
 *
 * 2026-06-28 v1.4
 * - Added horizontal padding for ul.hug mobile/content spacing
 *
 * 2026-06-28 v1.3
 * - Added spread layout from Koffiedrukker hugnspread
 *
 * 2026-06-28 v1.2
 * - Targeted chip padding at the first real RO block
 *
 * 2026-06-28 v1.1
 * - Added larger first RO block chip padding
 *
 * 2026-06-28 v1.0
 * - Added hug/chip content styling for CMS list highlights
 */
.hug {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
ul.hug {
	list-style: none;
	margin-left: auto!important;
	margin-right: auto!important;
	padding-left: 30px!important;
	padding-right: 30px!important;
}
ul.hug > li {
	margin-top: auto;
	margin-bottom: auto;
}
.chip {
	display: inline-flex;
	width: auto!important;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 12px!important;
	border: 1px solid rgba(0,0,0,0.1);
	background-color: #fff;
}
.ro-blocks > div[ro-block-id]:first-child .chip {
	padding: 6px 12px;
}
.spread {
	display: flex!important;
	gap: 8px;
	justify-content: space-between;
	width: 100%;
}
.spread > * {
	margin: auto;
	margin-top: auto;
	margin-bottom: auto;
}
.spread > *:first-child {
	margin-left: 0px;
}
.spread > *:not(:first-child):last-child {
	margin-right: 0px;
	text-align: right;
}
@media only screen and (max-width: 540px) {
	ul.hug {
		justify-content: center;
		text-align: center;
	}
	.spread.no-phone-spread {
		display: flex!important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.spread.no-phone-spread > * {
		margin-left: auto!important;
		margin-right: auto!important;
		text-align: center;
	}
	.spread.no-phone-spread > *:first-child,
	.spread.no-phone-spread > *:not(:first-child):last-child {
		margin-left: auto!important;
		margin-right: auto!important;
		text-align: center;
	}
	.spread.no-phone-spread > *:not(:first-child) {
		margin-top: 10px;
	}
}
