.location-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2rem;
}

.location-list > li {
	margin: 0;
	padding: 0;
}

.location-list__name {
	margin-top: 0;
	margin-bottom: 0.25rem;
}

.location-list p {
	margin: 0.25rem 0;
}

.location-list__additional {
	margin-top: 0.5rem;
	opacity: 0.9;
}

.location-list__address {
	font-style: normal;
	line-height: 1.4;
}

.location-list__email a,
.location-list__phone a {
	word-break: break-word;
}

/*
 * Visually-hidden labels for screen readers (e.g. "Address:").
 * Clip technique — never display:none. Scoped to the block.
 */
.location-list .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
	word-wrap: normal !important;
}
/* Block container: bordered grid. Dividers are drawn with cell borders, so
   gap is 0. */
ul.location-list.wp-block-umsv-location-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	padding-left: 0;
	border: 1px solid var(--brand-color-dark-blue);
}

/* Row divider only.
   IMPORTANT: do NOT set align-items or justify-content here. The grid rows
   must keep their default `stretch`, which is what makes both columns equal
   height and lets the vertical divider run the full height of the row. */
ul.location-list.wp-block-umsv-location-list > li {
	margin: 0;
	padding: 18px;
	gap: 0;
	border-bottom: 1px solid var(--brand-color-dark-blue);
	list-style: none;
}
ul.location-list.wp-block-umsv-location-list > li:last-child{
	border-bottom:0;
}
ul.location-list.wp-block-umsv-location-list > li:nth-child(odd) {
	background-color: #f7fafa;
}