.loc-card {
	position: relative;
	display: block;
	width: 100%;
	height: 205px;
	overflow: hidden;
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	background: #111;
}

.loc-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	filter: brightness(0.85);
	transition:
		transform 0.45s ease,
		filter 0.45s ease;
}

.loc-card:hover img {
	transform: scale(1.08) translateY(-4px);
	filter: brightness(1);
}

.loc-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.35s ease;
	pointer-events: none;
}

.loc-card:hover::before {
	background: rgba(0, 0, 0, 0.18);
}

.loc-card-text {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 2;
}

.loc-card-name {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.loc-arrow {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translate(8px, -8px);
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease,
		background 0.25s ease;
}

.loc-card:hover .loc-arrow {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}

.loc-arrow:hover {
	background: rgba(255, 255, 255, 0.28);
}

.loc-arrow svg,
.loc-arrow i {
	display: block;
	width: 15px;
	height: 15px;
	font-size: 15px;
	color: #fff;
	fill: currentColor;
	transform: rotate(45deg) scale(1.1);
}

.loc-arrow svg path {
	stroke: currentColor;
}

@media (max-width: 1024px) {
	.loc-card {
		height: 250px;
	}
}

@media (max-width: 767px) {
	.loc-card {
		height: 220px;
	}

	.loc-card-name {
		font-size: 13px;
	}

	.loc-arrow {
		width: 32px;
		height: 32px;
	}
}