/**
 * WTE Custom Departures — supplemental styles.
 *
 * Intentionally minimal: the block reuses WP Travel Engine's own classes
 * (category-trip-dates, trip-dates-title, category-trip-start-date) for
 * date/title/layout so it inherits the active theme's existing WP Travel
 * Engine styling automatically. These rules only cover the price figure
 * and wrapping behavior, which have no WP Travel Engine equivalent.
 */

.wtecd-trip-departures .wtecd-line {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 0.4em;
}

/* Keep "May 8, 2026" together, and "£7,800" together, so the browser only
   ever wraps between the two groups — never mid-phrase. */
.wtecd-trip-departures .wtecd-date,
.wtecd-trip-departures .wtecd-amount {
	white-space: nowrap;
}

.wtecd-trip-departures .wtecd-amount {
	font-weight: 600;
	text-decoration: none !important;
	color: inherit !important;
}

.wtecd-trip-departures .wtecd-amount::before,
.wtecd-trip-departures .wtecd-amount::after {
	content: none !important;
}
