/* Outside Adventures — Trip Reports filter pills (May 17 2026).
   Loaded only on the trip-reports page. Sits in the .list-head row above
   the report cards. */

.tr-filter-rail {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-left: auto;
}

@media (max-width: 540px) {
	.tr-filter-rail {
		margin-left: 0;
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
	}
	.tr-filter-rail::-webkit-scrollbar { display: none; }
	.tr-filter-rail { -ms-overflow-style: none; scrollbar-width: none; }
}

.tr-pill {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	line-height: 1;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	white-space: nowrap;
	flex: 0 0 auto;
}

.tr-pill:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--cream);
	border-color: rgba(255, 255, 255, 0.4);
}

.tr-pill.is-active,
.tr-pill[aria-pressed="true"] {
	background: var(--cream);
	color: var(--ink);
	border-color: var(--cream);
	font-weight: 500;
}
