:root {
	--ccb-ink: #7a7a7a;
	--ccb-heading: #41381e;
	--ccb-muted: #7a7a7a;
	--ccb-faint: rgba(65, 56, 30, 0.5);
	--ccb-line: rgba(0, 0, 0, 0.08);
	--ccb-paper: #fbf7f1;
	--ccb-panel: rgba(65, 56, 30, 0.04);
	--ccb-panel-strong: #f1ebe2;
	--ccb-white: #fffdf9;
	--ccb-copper: #977354;
	--ccb-copper-dark: #6f563e;
	--ccb-max: 1180px;
	--ccb-serif: "Marcellus", sans-serif;
	--ccb-sans: "Inter", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ccb-paper);
	color: var(--ccb-ink);
	font-family: var(--ccb-sans);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
	letter-spacing: 0;
}

a {
	color: var(--ccb-copper-dark);
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.18em;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.skip-link {
	background: var(--ccb-copper-dark);
	color: var(--ccb-white);
	left: 16px;
	padding: 10px 14px;
	position: absolute;
	top: -80px;
	z-index: 10;
}

.skip-link:focus {
	top: 16px;
}

.site-shell {
	margin: 0 auto;
	max-width: var(--ccb-max);
	padding: 0 40px;
}

.site-header {
	background: rgba(251, 247, 241, 0.96);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 5;
}

.site-header-inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-areas: "nav brand tools";
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	min-height: 90px;
	position: relative;
}

.site-menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ccb-heading);
	cursor: pointer;
	display: none;
	grid-area: toggle;
	height: 42px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 42px;
}

.site-menu-toggle span:not(.screen-reader-text) {
	background: currentColor;
	display: block;
	height: 1px;
	position: absolute;
	transition: transform 0.25s ease, opacity 0.25s ease;
	width: 24px;
}

.site-menu-toggle span:nth-child(1) {
	transform: translateY(-7px);
}

.site-menu-toggle span:nth-child(3) {
	transform: translateY(7px);
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
	transform: rotate(45deg);
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
	transform: rotate(-45deg);
}

.site-brand {
	align-items: center;
	color: var(--ccb-copper);
	display: inline-flex;
	grid-area: brand;
	justify-self: center;
	max-width: 100%;
	text-decoration: none;
}

.site-brand img {
	height: auto;
	max-width: min(260px, 28vw);
	width: 260px;
}

.site-nav .site-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav {
	grid-area: nav;
	justify-self: start;
}

.site-nav li {
	position: relative;
}

.site-nav a,
.site-tools a {
	color: #545454;
	font-family: var(--ccb-sans);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a {
	display: inline-flex;
	gap: 8px;
	letter-spacing: 0.5px;
	padding: 38px 30px;
}

.site-nav .menu-item-has-children > a::after {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	height: 5px;
	margin-top: 1px;
	transform: rotate(45deg);
	width: 5px;
}

.site-nav .sub-menu {
	background: var(--ccb-paper);
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 18px 42px rgba(65, 56, 30, 0.1);
	display: grid;
	left: 50%;
	list-style: none;
	margin: 0;
	min-width: 210px;
	opacity: 0;
	padding: 13px 0;
	pointer-events: none;
	position: absolute;
	top: calc(100% - 12px);
	transform: translateX(-50%) translateY(10px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	visibility: hidden;
	z-index: 10;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	visibility: visible;
}

.site-nav .sub-menu a {
	display: flex;
	padding: 12px 20px;
	white-space: nowrap;
	width: 100%;
}

.site-nav .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	transform: translateX(8px);
}

.site-nav .sub-menu li:hover > .sub-menu,
.site-nav .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0);
}

.site-mobile-only-menu-item {
	display: none;
}

.site-tools {
	align-items: center;
	display: flex;
	gap: 10px;
	grid-area: tools;
	justify-self: end;
}

.site-tools a {
	align-items: center;
	border: 1px solid rgba(65, 56, 30, 0.18);
	border-radius: 5px;
	display: inline-flex;
	justify-content: center;
	min-height: 38px;
	padding: 11px 16px;
	white-space: nowrap;
}

.site-tool-link-primary {
	color: var(--ccb-heading);
}

.site-tools .site-tool-link-secondary {
	background: transparent;
	border-color: transparent;
	color: var(--ccb-muted);
	padding-left: 4px;
	padding-right: 4px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-tools a:hover,
.site-tools a:focus {
	background: var(--ccb-copper);
	border-color: var(--ccb-copper);
	color: var(--ccb-white);
}

.site-tools .site-tool-link-secondary:hover,
.site-tools .site-tool-link-secondary:focus {
	background: transparent;
	border-color: transparent;
	color: var(--ccb-copper);
}

.hero {
	background: #1e1b17;
	padding: 0;
}

.hero-mosaic {
	display: grid;
	grid-template-columns: minmax(0, 60%) minmax(0, 40%);
	grid-template-rows: 1fr 1fr;
	min-height: calc(100vh - 90px);
}

.hero-block {
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.hero-block-link {
	inset: 0;
	position: absolute;
	z-index: 4;
}

.hero-block-large {
	border-top: 6px solid #b7927c;
	grid-row: 1 / span 2;
}

.hero-block-top {
	border-top: 6px solid #85a38d;
}

.hero-block img,
.hero-slide {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.hero-slide {
	animation: heroFade 12s infinite;
	opacity: 0;
	transform: scale(1.02);
}

.hero-slide-two {
	animation-delay: 6s;
}

.hero-overlay {
	background: linear-gradient(180deg, rgba(21, 16, 13, 0.02) 0%, rgba(21, 16, 13, 0.16) 48%, rgba(21, 16, 13, 0.72) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero-content {
	bottom: clamp(40px, 6vw, 78px);
	color: var(--ccb-white);
	left: clamp(40px, 4vw, 70px);
	max-width: 680px;
	pointer-events: none;
	position: absolute;
	z-index: 5;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.content-columns h2 {
	color: var(--ccb-heading);
	font-family: var(--ccb-serif);
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.hero h1 {
	color: var(--ccb-white);
	font-size: clamp(42px, 5.2vw, 72px);
	line-height: 1;
	max-width: 720px;
	text-transform: uppercase;
}

.hero-lede {
	color: rgba(255, 253, 249, 0.78);
	font-size: 15px;
	line-height: 1.6;
	margin: 24px 0 0;
	max-width: 680px;
}

.hero-dashes {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.hero-dashes span {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	height: 5px;
	width: 50px;
}

.hero-dashes span.is-active {
	background: var(--ccb-white);
}

.ccb-pill {
	border: 1px solid var(--ccb-line);
	border-radius: 5px;
	color: var(--ccb-muted);
	display: inline-flex;
	font-family: var(--ccb-sans);
	font-size: 13px;
	font-weight: 400;
	justify-content: center;
	line-height: 1.15;
	margin: 0 0 20px;
	padding: 10px 16px;
	text-transform: none;
}

.hero .ccb-pill {
	border-color: rgba(255, 253, 249, 0.28);
	color: var(--ccb-white);
}

.hero-card-copy {
	bottom: 40px;
	color: var(--ccb-white);
	left: 55px;
	pointer-events: none;
	position: absolute;
	z-index: 5;
}

.hero-card-copy h2 {
	color: var(--ccb-white);
	font-family: var(--ccb-serif);
	font-size: clamp(26px, 2.2vw, 36px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.hero-card-copy p {
	color: rgba(255, 253, 249, 0.74);
	margin: 8px 0 0;
}

.hero-block-top::after,
.hero-block-bottom::after {
	background: linear-gradient(215deg, rgba(57, 41, 31, 0) 0%, rgba(57, 41, 31, 0.88) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.hero-vertical-labels {
	align-items: center;
	color: rgba(255, 253, 249, 0.7);
	display: flex;
	font-size: 12px;
	font-weight: 400;
	gap: 36px;
	letter-spacing: 0.05em;
	position: absolute;
	right: 24px;
	text-transform: uppercase;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: center;
	z-index: 5;
}

@keyframes heroFade {
	0%,
	42% {
		opacity: 1;
		transform: scale(1);
	}
	50%,
	92% {
		opacity: 0;
		transform: scale(1.04);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.section {
	padding: 86px 0;
}

.page-hero {
	padding: 65px 0 0;
	text-align: center;
}

.page-hero .site-shell {
	max-width: 660px;
}

.page-hero h1 {
	font-size: clamp(38px, 3.8vw, 48px);
	line-height: 1.2;
}

.section-heading h2 {
	font-size: clamp(30px, 3vw, 36px);
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.content-columns h2 {
	font-size: clamp(32px, 3.4vw, 42px);
	line-height: 1.2;
}

.page-hero p,
.section-heading p {
	color: var(--ccb-muted);
	font-size: 15px;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	max-width: 580px;
}

.page-hero-image {
	background: var(--ccb-panel);
	aspect-ratio: 1360 / 620;
	height: auto;
	margin-top: 70px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1360px;
	overflow: hidden;
	width: min(1360px, calc(100% - 80px));
}

.page-hero-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.section-heading {
	margin: 0 auto 44px;
	max-width: 760px;
	text-align: center;
}

.section-muted {
	background: rgba(65, 56, 30, 0.04);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.content-columns,
.performance-layout {
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.content-columns p {
	color: var(--ccb-muted);
}

.ccb-performance-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ccb-performance-grid-count-2 {
	grid-template-columns: repeat(2, minmax(0, 420px));
	justify-content: center;
}

.ccb-performance-grid-count-1 {
	grid-template-columns: minmax(0, 420px);
	justify-content: center;
}

.ccb-performance-carousel-wrap {
	margin: 0 auto;
	max-width: 1180px;
}

.ccb-performance-carousel {
	overflow: hidden;
}

.ccb-performance-carousel .swiper-wrapper {
	align-items: stretch;
}

.ccb-performance-carousel .swiper-slide {
	display: flex;
	height: auto;
}

.ccb-performance-carousel .ccb-performance-card {
	width: 100%;
}

.ccb-performance-carousel-controls {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: center;
	margin-top: 28px;
}

.ccb-performance-carousel-prev,
.ccb-performance-carousel-next {
	align-items: center;
	background: rgba(65, 56, 30, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	color: var(--ccb-heading);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--ccb-sans);
	font-size: 12px;
	justify-content: center;
	letter-spacing: 0.5px;
	line-height: 1;
	min-height: 42px;
	min-width: 94px;
	padding: 12px 16px;
	text-transform: uppercase;
}

.ccb-performance-carousel-prev:hover,
.ccb-performance-carousel-prev:focus,
.ccb-performance-carousel-next:hover,
.ccb-performance-carousel-next:focus {
	background: var(--ccb-copper);
	border-color: var(--ccb-copper);
	color: var(--ccb-white);
}

.ccb-performance-carousel-pagination {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	min-width: 72px;
}

.ccb-performance-carousel-pagination .swiper-pagination-bullet {
	background: rgba(65, 56, 30, 0.28);
	height: 7px;
	margin: 0;
	opacity: 1;
	width: 7px;
}

.ccb-performance-carousel-pagination .swiper-pagination-bullet-active {
	background: var(--ccb-copper);
}

.ccb-performance-card,
.post-card,
.performance-details,
.ccb-empty-state {
	background: rgba(255, 253, 249, 0.62);
	border: 1px solid var(--ccb-line);
	border-radius: 5px;
	overflow: hidden;
	padding: 28px;
}

.ccb-performance-thumb {
	aspect-ratio: 1.42 / 1;
	background: var(--ccb-panel);
	display: block;
	margin: -28px -28px 26px;
	overflow: hidden;
	text-decoration: none;
}

.ccb-performance-thumb img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
	width: 100%;
}

.ccb-performance-card:hover .ccb-performance-thumb img {
	transform: scale(1.035);
}

.ccb-performance-card h3,
.post-card h2,
.performance-details h2,
.ccb-empty-state h3 {
	color: var(--ccb-heading);
	font-family: var(--ccb-serif);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 14px;
}

.ccb-performance-card h3 a,
.post-card h2 a {
	color: inherit;
	text-decoration: none;
}

.ccb-performance-card h3 a:hover,
.post-card h2 a:hover {
	color: var(--ccb-copper-dark);
}

.ccb-performance-card p,
.post-card p {
	color: var(--ccb-muted);
	margin: 0 0 16px;
}

.ccb-showtimes {
	border-top: 1px solid var(--ccb-line);
	display: grid;
	gap: 0;
	list-style: none;
	margin: 18px 0;
	padding: 0;
}

.ccb-showtimes li {
	border-bottom: 1px solid var(--ccb-line);
	display: grid;
	gap: 4px;
	padding: 11px 0;
}

.ccb-showtimes strong {
	color: var(--ccb-heading);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
}

.ccb-showtimes span {
	color: var(--ccb-muted);
	font-size: 13px;
	line-height: 1.4;
}

.ccb-showtimes-compact {
	margin: 0;
}

.ccb-kicker {
	color: var(--ccb-copper);
	font-family: var(--ccb-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.ccb-performance-venue {
	color: var(--ccb-faint);
	font-size: 13px;
}

.ccb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}

.ccb-button {
	align-items: center;
	background: rgba(65, 56, 30, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.03);
	border-radius: 5px;
	color: #45413a;
	display: inline-flex;
	font-family: var(--ccb-sans);
	font-size: 13px;
	font-weight: 500;
	justify-content: center;
	line-height: 1.15;
	min-height: 47px;
	padding: 15px 28px;
	text-decoration: none;
	text-transform: uppercase;
}

.ccb-button:hover,
.ccb-button:focus {
	background: var(--ccb-copper);
	border-color: var(--ccb-copper);
	color: var(--ccb-white);
}

.ccb-button-ticket {
	background: #111;
	border-color: #111;
	color: #fff;
}

.ccb-button-ticket:hover,
.ccb-button-ticket:focus {
	background: #2b2823;
	border-color: #2b2823;
	color: #fff;
}

.ccb-button-secondary {
	background: rgba(65, 56, 30, 0.04);
	color: #45413a;
}

.entry-content {
	color: var(--ccb-muted);
	max-width: 760px;
}

.entry-content > *:first-child,
.performance-details > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.performance-details > *:last-child {
	margin-bottom: 0;
}

.performance-details {
	align-self: start;
}

.performance-details dl {
	display: grid;
	gap: 14px;
	margin: 0;
}

.performance-details dt {
	color: var(--ccb-copper-dark);
	font-weight: 400;
}

.performance-details dd {
	color: var(--ccb-muted);
	margin: 0;
}

.performance-details-actions {
	border-top: 1px solid var(--ccb-line);
	margin-top: 22px;
	padding-top: 22px;
}

.performance-details-actions .ccb-button {
	width: 100%;
}

.post-list {
	display: grid;
	gap: 18px;
}

.blog-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.post-card-thumb {
	aspect-ratio: 1.45 / 1;
	background: var(--ccb-panel);
	display: block;
	margin: -28px -28px 26px;
	overflow: hidden;
	text-decoration: none;
}

.post-card-thumb img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
	width: 100%;
}

.blog-card:hover .post-card-thumb img {
	transform: scale(1.035);
}

.blog-card .ccb-kicker {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-card .ccb-kicker span::before {
	content: "/";
	margin-right: 8px;
}

.blog-card .ccb-kicker a {
	color: inherit;
	text-decoration: none;
}

.journal-read-link {
	color: var(--ccb-heading);
	font-size: 13px;
	line-height: 1.15;
	margin-top: auto;
	text-decoration: none;
	text-transform: uppercase;
}

.journal-read-link:hover,
.journal-read-link:focus {
	color: var(--ccb-copper);
}

.article-layout {
	align-items: start;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
}

.article-body {
	font-size: 17px;
	line-height: 1.75;
	max-width: 760px;
}

.article-body h2,
.article-body h3 {
	color: var(--ccb-heading);
	font-family: var(--ccb-serif);
	font-weight: 400;
	line-height: 1.2;
	margin: 1.8em 0 0.55em;
	text-transform: uppercase;
}

.article-body h2 {
	font-size: clamp(30px, 3vw, 42px);
}

.article-body h3 {
	font-size: clamp(24px, 2.5vw, 32px);
}

.article-body a {
	color: var(--ccb-heading);
}

.article-sidebar-inner {
	background: rgba(255, 253, 249, 0.62);
	border: 1px solid var(--ccb-line);
	border-radius: 5px;
	padding: 28px;
	position: sticky;
	top: 118px;
}

.article-sidebar dl {
	display: grid;
	gap: 10px;
	margin: 0 0 24px;
}

.article-sidebar dt {
	color: var(--ccb-copper-dark);
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.article-sidebar dd {
	color: var(--ccb-muted);
	margin: 0 0 8px;
}

.article-sidebar a:not(.ccb-button) {
	color: inherit;
	text-decoration-thickness: 0.05em;
}

.nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 48px;
}

.nav-links a,
.nav-links span {
	background: rgba(65, 56, 30, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.03);
	border-radius: 5px;
	color: var(--ccb-heading);
	display: inline-flex;
	font-size: 13px;
	line-height: 1;
	padding: 12px 15px;
	text-decoration: none;
}

.nav-links .current,
.nav-links a:hover,
.nav-links a:focus {
	background: var(--ccb-copper);
	color: var(--ccb-white);
}

.journal-section {
	background: var(--ccb-paper);
}

.journal-grid {
	display: grid;
	gap: clamp(28px, 4.8vw, 60px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card {
	min-width: 0;
}

.journal-image {
	aspect-ratio: 1.6 / 1;
	background: var(--ccb-panel);
	margin-bottom: 26px;
	overflow: hidden;
	position: relative;
}

.journal-image > a:first-child {
	display: block;
	height: 100%;
}

.journal-image img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
	width: 100%;
}

.journal-card:hover .journal-image img {
	transform: scale(1.035);
}

.journal-read {
	align-items: center;
	background: var(--ccb-white);
	bottom: 0;
	color: #161411;
	display: inline-flex;
	font-size: 15px;
	gap: 16px;
	line-height: 1.15;
	padding: 18px 21px;
	position: absolute;
	right: 0;
	text-decoration: none;
}

.journal-read span {
	font-size: 22px;
	line-height: 0.8;
}

.journal-category {
	color: #161411;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.1;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.journal-card h3 {
	color: var(--ccb-heading);
	font-family: var(--ccb-sans);
	font-size: clamp(20px, 1.8vw, 23px);
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
	max-width: 370px;
}

.journal-card h3 a {
	color: inherit;
	text-decoration-color: transparent;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.12em;
}

.journal-card h3 a:hover,
.journal-card h3 a:focus {
	text-decoration-color: currentColor;
}

.press-section {
	padding-top: 24px;
}

.press-list {
	border-top: 1px solid var(--ccb-line);
	display: grid;
	margin: 0 auto;
	max-width: 960px;
}

.press-item {
	align-items: baseline;
	border-bottom: 1px solid var(--ccb-line);
	display: grid;
	gap: clamp(20px, 4vw, 56px);
	grid-template-columns: 180px minmax(0, 1fr);
	padding: 28px 0;
}

.press-item time {
	color: var(--ccb-muted);
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
}

.press-item h2 {
	color: var(--ccb-heading);
	font-family: var(--ccb-sans);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 400;
	line-height: 1.18;
	margin: 0;
}

.press-item h2 a {
	color: inherit;
	text-decoration-color: transparent;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.14em;
}

.press-item h2 a:hover,
.press-item h2 a:focus {
	text-decoration-color: currentColor;
}

.press-item p {
	color: var(--ccb-copper-dark);
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin: 12px 0 0;
	text-transform: uppercase;
}

.site-footer {
	background: var(--ccb-paper);
	border-top: 1px solid var(--ccb-line);
	color: var(--ccb-ink);
	padding: 85px 0 0;
}

.footer-main {
	display: grid;
	gap: clamp(44px, 5vw, 78px);
	grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
}

.footer-brand {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
}

.footer-logo {
	align-items: center;
	color: var(--ccb-copper);
	display: inline-flex;
	margin-bottom: 30px;
	text-decoration: none;
}

.footer-brand p {
	max-width: 370px;
}

.footer-text-link {
	color: var(--ccb-heading);
	display: inline-flex;
	font-size: 13px;
	line-height: 1.15;
	margin-top: 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-text-link:hover,
.footer-text-link:focus,
.site-footer a:hover,
.site-footer a:focus {
	color: var(--ccb-copper);
}

.footer-links {
	display: grid;
	gap: clamp(28px, 3.2vw, 52px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: end;
}

.footer-links h2 {
	color: var(--ccb-heading);
	font-family: var(--ccb-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.1;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.footer-links ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links a {
	color: var(--ccb-muted);
	font-size: 15px;
	line-height: 1.6;
	text-decoration: none;
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid var(--ccb-line);
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-top: 80px;
	padding-bottom: 45px;
	padding-top: 45px;
}

.footer-mini-links {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-mini-links a {
	color: var(--ccb-heading);
	font-size: 12px;
	letter-spacing: 0.5px;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer strong {
	color: var(--ccb-heading);
	font-family: var(--ccb-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-logo img {
	height: auto;
	width: min(420px, 78vw);
}

.site-footer p {
	color: var(--ccb-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 920px) {
	.site-header-inner,
	.content-columns,
	.performance-layout,
	.article-layout,
	.footer-main,
	.footer-links,
	.journal-grid,
	.blog-grid,
	.press-item {
		grid-template-columns: 1fr;
	}

	.article-sidebar-inner {
		position: static;
	}

	.footer-main,
	.footer-brand {
		text-align: center;
	}

	.footer-brand {
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		margin-top: 54px;
		text-align: center;
	}

	.site-header-inner {
		gap: 16px;
		grid-template-areas:
			"toggle brand tools";
		grid-template-columns: 42px minmax(0, 1fr) auto;
		min-height: 76px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.site-brand {
		justify-self: center;
	}

	.site-tools {
		justify-self: end;
	}

	.site-tool-link-secondary {
		display: none;
	}

	.site-menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		background: var(--ccb-paper);
		border-top: 1px solid var(--ccb-line);
		box-shadow: 0 24px 42px rgba(65, 56, 30, 0.08);
		grid-area: unset;
		left: 0;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		position: absolute;
		right: 0;
		top: 100%;
		transform: translateY(-8px);
		transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
		visibility: hidden;
		z-index: 9;
	}

	.site-header.is-menu-open .site-nav {
		max-height: calc(100vh - 76px);
		opacity: 1;
		overflow: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.site-nav .site-menu {
		align-items: stretch;
		display: grid;
		gap: 0;
		justify-content: stretch;
		padding: 20px 28px 12px;
	}

	.site-nav a {
		display: flex;
		justify-content: center;
		padding: 14px 0;
	}

	.site-mobile-only-menu-item {
		display: block;
	}

	.site-mobile-only-menu-item a {
		color: var(--ccb-copper-dark);
		padding-bottom: 26px;
	}

	.site-mobile-only-menu-item a:hover,
	.site-mobile-only-menu-item a:focus {
		color: var(--ccb-copper);
	}

	.site-nav .sub-menu {
		background: transparent;
		border: 0;
		box-shadow: none;
		display: grid;
		left: auto;
		max-height: none;
		min-width: 0;
		opacity: 1;
		padding: 0 0 12px;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
	}

	.site-nav .sub-menu a {
		color: var(--ccb-muted);
		font-size: 12px;
		justify-content: center;
		padding: 9px 0;
	}

	.site-nav .menu-item-has-children > a::after {
		margin-top: 0;
	}

	.site-nav .sub-menu .sub-menu,
	.site-nav .sub-menu li:hover > .sub-menu,
	.site-nav .sub-menu li:focus-within > .sub-menu {
		transform: none;
	}

	.hero-mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: 68vh 42vh 42vh;
		min-height: 0;
	}

	.hero-block-large {
		grid-row: auto;
	}

	.hero-content {
		bottom: 34px;
		left: 28px;
		right: 28px;
	}

	.hero-card-copy {
		bottom: 28px;
		left: 28px;
	}

	.hero-vertical-labels {
		display: none;
	}

	.ccb-performance-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 14px;
	}

	.site-shell {
		padding: 0 18px;
	}

	.site-brand img {
		max-width: min(145px, 100%);
		width: 100%;
	}

	.site-nav .site-menu {
		gap: 0;
	}

	.hero-mosaic {
		grid-template-rows: 72vh 38vh 38vh;
	}

	.hero h1 {
		font-size: clamp(40px, 14vw, 64px);
	}

	.hero-lede {
		font-size: 0.9rem;
	}

	.hero-dashes {
		margin-bottom: 24px;
	}

	.hero-dashes span {
		width: 38px;
	}

	.section {
		padding: 56px 0;
	}

	.page-hero {
		padding-top: 56px;
	}

	.page-hero h1 {
		font-size: clamp(36px, 11vw, 48px);
		line-height: 1.12;
		overflow-wrap: normal;
	}

	.page-hero-image {
		margin-top: 42px;
		width: calc(100% - 36px);
	}
}

@media (min-width: 921px) and (max-width: 1080px) {
	.ccb-performance-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ccb-performance-grid-count-2 {
		grid-template-columns: repeat(2, minmax(0, 420px));
	}

	.ccb-performance-grid-count-1 {
		grid-template-columns: minmax(0, 420px);
	}
}
