/* iOS grouped list */

.ios-list {
	margin: 12px 12px;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.ios-cell {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	color: #fff;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	transition: transform 120ms ease, background 120ms ease;
}
.ios-cell + .ios-cell {
	border-top: 1px solid rgba(255,255,255,0.06);
}
.ios-cell:active {
background: rgba(255,255,255,0.04);
}
.cell-leading {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
	border: 1px solid rgba(255,255,255,0.08);
	display: grid;
	place-items: center;
	overflow: hidden;
}
.cell-leading svg {
	width: 22px;
	height: 22px;
	opacity: 0.9;
}
.cell-content {
	min-width: 0;
	display: grid;
	gap: 4px;
}
.cell-title {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
}
.cell-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}
.status-pill {
	font-size: 11px;
	line-height: 1;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: #eaeaea;
	white-space: nowrap;
}
.meta-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
}
.meta-distance {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cell-trailing {
	display: grid;
	place-items: center;
}
.cell-trailing svg { width: 16px; height: 16px; }

/* compact touch target on very small screens */
@media (max-width: 380px) {
	.ios-cell {
		grid-template-columns: 40px 1fr 14px;
		padding: 10px 12px;
	}
	.cell-leading { width: 40px; height: 40px; }
	.cell-title { font-size: 14px; }
	.meta-distance { font-size: 12px; }
}