.skm-vloc-wrapper {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 14px;
	max-width: 480px;
}

.skm-vloc-viewport {
	flex: 1 1 auto;
	min-height: 300px;
	overflow-y: auto;
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	padding-right: 6px;
	/* hide native scrollbar, we render our own */
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.skm-vloc-viewport::-webkit-scrollbar {
	display: none;
}

.skm-vloc-track-list {
	display: flex;
	flex-direction: column;
}

.skm-vloc-card {
	scroll-snap-align: start;
	background-color: #ffffff;
	border: 1.5px solid #2451C4;
	border-radius: 18px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 4px 14px rgba(20, 30, 60, 0.06);
}
.skm-vloc-card:last-child {
	margin-bottom: 0;
}

.skm-vloc-heading {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	color: #151515;
}

.skm-vloc-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}
.skm-vloc-row:last-child {
	margin-bottom: 0;
}

.skm-vloc-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.skm-vloc-icon svg {
	stroke: #2f2f2f;
}

.skm-vloc-address {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #5c5c5c;
}

.skm-vloc-phone {
	font-size: 14px;
	line-height: 1.5;
	color: #5c5c5c;
	text-decoration: none;
}
.skm-vloc-phone:hover {
	text-decoration: underline;
}

/* Right side scroll indicator */
.skm-vloc-track {
	flex: 0 0 4px;
	width: 4px;
	border-radius: 4px;
	background-color: #e6e9f2;
	position: relative;
	overflow: hidden;
}

.skm-vloc-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #2451C4;
	border-radius: 4px;
	transition: top 0.05s linear;
}

@media (max-width: 480px) {
	.skm-vloc-wrapper {
		max-width: 100%;
	}
	.skm-vloc-card {
		padding: 18px;
	}
}
