/* Locatie (location) grid card styles */
.location_article {
    height: 100%;
}

.location-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: max(1rem, calc(1.25 * var(--su)));
	border: 1px solid rgba(10, 55, 124, 0.10);
	border-radius: 1.5rem;
}
.location_article.active .location-wrapper {
	background-color: var(--dia-blue-light);
}

.location-wrapper .location-content {
	display: flex;
    flex-direction: column;
}
.location-wrapper .location-content .location-title {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 0.5em;
	margin-bottom: 0;
}
.location-wrapper .location-content .location-title .icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 100%;
	flex-shrink: 0;
	background-color: var(--dia-green);
	transition: background-color 0.2s ease;
}
.location-wrapper .location-content .location-title .icon-wrapper svg {
	width: 0.375em;
	margin: 0 auto;
	aspect-ratio: 1/1;
}


.location-wrapper .location-content .location-title .icon-wrapper svg path {
	stroke: currentColor;
	transition: stroke 0.2s ease;
}
.location-wrapper:hover .location-content .location-title .icon-wrapper svg path {
	stroke: white;
}
.location-wrapper:hover .location-content .location-title .icon-wrapper {
	background-color: var(--dia-blue);
}

.location-wrapper .location-address,
.location-wrapper .location-opening-hours {
    margin: 0;
}


.location-wrapper .location-meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.5rem;
}
.location-wrapper .location-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 1em;
}
.location-wrapper .location-meta .meta-item svg {
	width: 1em;
	height: auto;
	flex-shrink: 0;
}

.location-wrapper .location-disclaimer {
	font-size: var(--desktop-body-xs);
	padding-top: 0.75rem;
	margin-top: 0.75rem;
	border-top: 1px solid rgba(10, 55, 124, 0.10);
}