/* ─── AL Service Areas — chips (sketch 005 · B) ─── */
.al-areas__chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin: 0; padding: 0; list-style: none; }
.al-areas__chips a {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 14.5px; color: var(--ink-2);
	background: var(--bone); border: 1px solid var(--line); border-radius: var(--r-pill);
	padding: 10px 18px; text-decoration: none;
	transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.al-areas__chips a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.al-areas__chips svg { width: 14px; height: 14px; stroke: var(--red); flex: none; }
.al-areas__chips a:hover svg { stroke: #fff; }
.al-areas__note { margin: 30px 0 0; font-size: 15px; color: var(--ink-3); text-align: center; }
.al-areas__note a { color: var(--red); font-weight: 700; }
