/* Today at Cinderlands — [cbco_today] (2026-09-02)
 * One panel, three locations. Tokens mirror the site: Oswald, navy #01207f,
 * Francois One location names (as on the homepage location row) on navy
 * bands, grey band #ededed, pill buttons, hover black. */

.cbco-today {
	background: #ededed;
	padding: 50px 0 60px;
	font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
	color: #3d3d3d;
}
.cbco-today__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.cbco-today__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cbco-today h2.cbco-today__title {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 45px !important;
	line-height: 51px !important;
	letter-spacing: -1.5px;
	text-transform: uppercase;
	color: #000;
}
.cbco-today__stamp {
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #3d3d3d;
	white-space: nowrap;
}

/* Three separate cards of equal height, grey band showing between them */
.cbco-today__panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}
.cbco-today__loc {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.cbco-today__band {
	background: #01207f;
	height: 110px; /* fixed: a wrapped name can never make one band taller */
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
}
.cbco-today h3.cbco-today__name {
	margin: 0;
	font-family: 'Francois One', 'Oswald', 'Arial Narrow', Arial, sans-serif;
	font-weight: 400;
	font-size: clamp(22px, 2.2vw, 30px) !important; /* shrinks before it wraps */
	line-height: 1.12 !important;
	letter-spacing: 0;
	text-transform: uppercase;
	text-wrap: balance;
	color: #fff; /* gold alternative: #dd9933 (site's location-row headings) */
}
.cbco-today__area {
	margin: 0;
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}
.cbco-today__body {
	padding: 26px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1 1 auto;
}

/* Status: text + dot, never colour alone */
.cbco-today__announce {
	margin: 0;
	padding: 8px 12px;
	background: #01207f;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.cbco-today__status {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.5px;
	color: #000;
}
.cbco-today__dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: #9a9a9a;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.cbco-today__status.is-open .cbco-today__dot {
	background: #2e9e4f;
	box-shadow: 0 0 0 3px rgba(46, 158, 79, 0.18);
}
.cbco-today__status.is-closed {
	color: #3d3d3d;
}

.cbco-today h4.cbco-today__label {
	margin: 0 0 6px;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 12px !important;
	line-height: 16px !important;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #777;
}
.cbco-today ul.cbco-today__periods,
.cbco-today ul.cbco-today__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
/* Salient sets list-style on the <li> inside text columns; override there too. */
.cbco-today ul li {
	list-style: none !important;
	padding-left: 0;
	margin-left: 0;
}
.cbco-today__periods li {
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: #3d3d3d;
	padding: 0;
	margin: 0;
}
.cbco-today__period-label {
	font-weight: 600;
	color: #000;
}
.cbco-today__period-label::after {
	content: " · ";
	font-weight: 300;
	color: #999;
}
.cbco-today__closed-line {
	margin: 0;
	font-size: 17px;
	line-height: 24px;
	color: #777;
}

/* Today: events + specials */
.cbco-today__now {
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cbco-today__list li {
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 0.5px;
	color: #000;
	font-weight: 600;
	padding: 0;
	margin: 0;
}
.cbco-today__event a {
	color: #01207f;
	text-decoration: none;
	border-bottom: 1px solid rgba(1, 32, 127, 0.3);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.cbco-today__event a:hover {
	color: #000;
	border-color: #000;
}
.cbco-today__time {
	font-weight: 400;
	color: #3d3d3d;
}
.cbco-today__time::after {
	content: " · ";
	color: #999;
}
.cbco-today__sub {
	font-weight: 300;
	color: #777;
}

/* Actions */
.cbco-today__actions {
	margin-top: auto;
	padding-top: 6px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cbco-today__primary-row {
	display: flex;
	gap: 8px;
}
.cbco-today__primary-row a.cbco-today__btn--primary {
	flex: 1 1 0;
	min-width: 0;
}
.cbco-today__row {
	display: flex;
	flex-wrap: nowrap; /* one line: Reserve · Order · Directions */
	gap: 8px;
}
.cbco-today a.cbco-today__btn {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11px 6px;
	border-radius: 200px;
	border: 2px solid rgba(0, 0, 0, 0.75);
	background: transparent;
	color: #444;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.cbco-today a.cbco-today__btn:hover,
.cbco-today a.cbco-today__btn:focus-visible {
	background: #000;
	border-color: #000;
	color: #fff;
}
.cbco-today a.cbco-today__btn--primary {
	padding: 13px 18px;
	border-color: #01207f;
	background: #01207f;
	color: #fff;
	box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;
}
.cbco-today a.cbco-today__btn:focus-visible {
	outline: 2px solid #fa7500;
	outline-offset: 3px;
}

/* "Warehouse-first" layout: layout="featured" — wide card + two stacked */
.cbco-today--featured .cbco-today__panel {
	grid-template-columns: 2fr 1fr;
	grid-auto-rows: auto;
}
.cbco-today--featured .cbco-today__loc--featured {
	grid-column: 1;
	grid-row: 1 / span 2;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	grid-template-areas:
		"announce announce"
		"status   now"
		"hours    now"
		"actions  now";
	grid-template-rows: auto auto 1fr auto;
	column-gap: 34px;
	row-gap: 16px;
	padding: 28px 34px 32px;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__announce { grid-area: announce; }
.cbco-today--featured .cbco-today__loc--featured .cbco-today__status   { grid-area: status; }
.cbco-today--featured .cbco-today__loc--featured .cbco-today__hours    { grid-area: hours; }
.cbco-today--featured .cbco-today__loc--featured .cbco-today__actions  { grid-area: actions; margin-top: 0; align-self: end; }
.cbco-today--featured .cbco-today__loc--featured .cbco-today__now {
	grid-area: now;
	padding: 0 0 0 34px;
	border-top: 0;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__now .cbco-today__label {
	color: #01207f;
	font-size: 13px !important;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__list {
	gap: 8px;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__list li {
	font-size: 17px;
	line-height: 24px;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__event a {
	border-bottom-width: 2px;
}
.cbco-today h4.cbco-today__label--soon {
	margin-top: 10px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	color: #777 !important;
}
.cbco-today--featured .cbco-today__loc--featured .cbco-today__list--soon li {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: #3d3d3d;
}
.cbco-today__soon {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.cbco-today__day {
	flex: 0 0 5.6em; /* room for "Sat Sep 12" */
	font-weight: 600;
	color: #000;
}
.cbco-today__soon-what {
	flex: 1 1 auto;
	min-width: 0;
}
.cbco-today__list--soon .cbco-today__event a {
	font-weight: 600;
	border-bottom-width: 1px;
}
.cbco-today__quiet {
	margin: 0;
	font-size: 16px;
	line-height: 22px;
	color: #777;
}
.cbco-today a.cbco-today__more {
	margin-top: auto;
	padding-top: 12px;
	align-self: flex-start;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	border-bottom: 2px solid #fa7500;
	transition: color 0.2s ease;
}
.cbco-today a.cbco-today__more:hover {
	color: #01207f;
}
/* Compact stacked cards beside the featured one */
.cbco-today--featured .cbco-today__loc:not(.cbco-today__loc--featured) .cbco-today__band {
	height: 84px;
	padding: 12px 20px;
}
.cbco-today--featured .cbco-today__loc:not(.cbco-today__loc--featured) .cbco-today__name {
	font-size: clamp(20px, 1.9vw, 26px) !important;
}
.cbco-today--featured .cbco-today__loc:not(.cbco-today__loc--featured) .cbco-today__body {
	padding: 20px 24px 24px;
	gap: 12px;
}
.cbco-today--featured .cbco-today__loc:not(.cbco-today__loc--featured) .cbco-today__row {
	flex-direction: row;
	min-height: 0;
}

/* Responsive */
@media (max-width: 1199px) and (min-width: 1001px) {
	/* Three columns but not enough width for three buttons on a line:
	   stack the secondary buttons in every card so the cards stay aligned. */
	.cbco-today__row {
		flex-direction: column;
		min-height: 154px; /* room for three buttons, so View Menu lines up on every card */
	}
}
@media (max-width: 1199px) {
	.cbco-today--featured .cbco-today__loc--featured .cbco-today__body {
		grid-template-columns: 1fr;
		grid-template-areas: "announce" "status" "hours" "now" "actions";
		grid-template-rows: auto;
	}
	.cbco-today--featured .cbco-today__loc--featured .cbco-today__now {
		padding: 14px 0 0;
		border-left: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}
}
@media (max-width: 1000px) {
	.cbco-today__panel,
	.cbco-today--featured .cbco-today__panel {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.cbco-today--featured .cbco-today__loc--featured {
		grid-column: auto;
		grid-row: auto;
	}
	.cbco-today__band {
		height: 96px;
		padding: 14px 20px;
	}
	.cbco-today h3.cbco-today__name {
		font-size: 28px !important;
	}
}
@media (max-width: 690px) {
	.cbco-today {
		padding: 36px 0 44px;
	}
	.cbco-today__inner {
		padding: 0 20px;
		gap: 20px;
	}
	.cbco-today h2.cbco-today__title {
		font-size: 33px !important;
		line-height: 39px !important;
		letter-spacing: -1px;
	}
	.cbco-today__stamp {
		font-size: 16px;
	}
	.cbco-today__body,
	.cbco-today--featured .cbco-today__loc--featured .cbco-today__body {
		padding: 22px 20px 24px;
	}
	.cbco-today__row {
		flex-wrap: wrap; /* three buttons → two + one on phones */
	}
	.cbco-today__row a.cbco-today__btn {
		flex: 1 1 calc(50% - 8px);
	}
}
@media (max-width: 360px) {
	.cbco-today__row {
		flex-wrap: wrap;
	}
	.cbco-today__row a.cbco-today__btn {
		flex: 1 1 100%;
	}
}
