/**
 * The tour page's container width.
 *
 * Every other container on this site is 1320px wide: the dashboard through
 * --d-max, the booking page through .ct-book, and the tour archive through
 * tour.css. The single tour page was the one that was not, because the supplied
 * design shipped with --maxw: 1200px, and against a 1320px header and footer it
 * read as a narrower column inset inside the site rather than part of it.
 *
 * WHY A ONE-DECLARATION FILE
 * --------------------------
 * The token lives at line 55 of tour-itinerary.css, which is 31KB of supplied
 * design. This plugin can only replace a file whole, so changing that one number
 * in place means retyping 800 lines that have nothing to do with it, and any slip
 * in them is a silent visual regression somewhere on a long page. Overriding the
 * custom property from a later stylesheet is the same result for one line, and
 * deleting this file puts the old width back with no other trace.
 *
 * Redeclared at the same specificity as the original, so it wins on source order
 * alone. CT_Template::assets() enqueues it with ct-tour-itinerary as a dependency,
 * which is what guarantees that order.
 *
 * The gutter is deliberately untouched. --wrap-pad is overridden per breakpoint in
 * tour-responsive.css, and setting it here would beat those and break the phone
 * layout. Only the maximum width belongs in this file.
 *
 * @package CustomTours
 */

.ct-itin {
	--maxw: 1320px;
}
