/* SOS Trip Tools */

.sos-tt {
	width: 100%;
	text-align: center;
}

.sos-tt__eyebrow {
	display: block;
	font-size: .74em;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #C9542C;
	margin-bottom: 10px;
}

.sos-tt__heading {
	margin: 0 0 26px;
	font-size: clamp(24px, 3.4vw, 36px);
	line-height: 1.2;
	color: #2B2926;
}

.sos-tt__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-bottom: 22px;
}

.sos-tt__pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #EFE7DB;
	color: #2B2926;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: transform .16s ease, box-shadow .16s ease;
}

.sos-tt__pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
}

/* No link yet: visible but clearly inert, so you don't ship dead links. */
.sos-tt__pill--plain {
	opacity: .6;
	cursor: default;
	box-shadow: none;
}
.sos-tt__pill--plain:hover {
	transform: none;
	box-shadow: none;
}

.sos-tt__icon {
	font-size: 1.05em;
	line-height: 1;
}

.sos-tt__disclosure {
	margin: 0;
	font-size: .88em;
	color: #8A8175;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.sos-tt__pills {
		gap: 10px;
	}
	.sos-tt__pill {
		padding: 11px 20px;
		font-size: .94em;
	}
}
