.loc-card-list {
	width: 100%;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 120px;
}
.loc-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: calc(100% / 4 - 19px);
	background: #133B19e2;
	border-radius: 8px;
	color: #d8e9c4;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px;
	transition: all 0.3s ease;
}
.loc-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	mix-blend-mode: luminosity;
}
.loc-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.loc-card__body {
	padding: 24px 0;
}
.loc-card__title {
	margin: 0 0 16px 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.25;
	color: #EDFFA8;
}
.loc-card__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 7px 0;
}
.loc-card__icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
}
.custom_theme .loc-card__text {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 24px;
	color: #EDFFA8;
}
.loc-card__cta {
	display: block;
	margin-top: 16px;
	text-align: center;
	text-decoration: none;
	color: #C8FF00;
	font-size: 16px;
	padding: 14px 16px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.10);
	transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease, background-color 120ms ease, color 120ms ease;
}

@media (max-width: 767px) {
    .loc-card-list {
	gap: 16px;
	flex-wrap: nowrap;
	justify-content: flex-start;
	overflow-y: scroll;
	padding: 2px 0;
	scrollbar-width: none;
	margin-left: -15px;
	width: calc(100% + 30px);
	padding-inline: 15px;
	margin-bottom: 40px;
}
.loc-card {
	width: 80%;
	flex-shrink: 0;
}
}