/*
 * BCC Tariff & Trade Hub front end
 * Every selector is scoped to .bcc-tth so Divi and other themes cannot leak in.
 */

.bcc-tth {
	--bcc-primary: #003f51;
	--bcc-accent: #d8272d;
	--bcc-link: #006b75;
	--bcc-body: #313131;
	--bcc-muted: #5d6a6e;
	--bcc-light: #f2f5f5;
	--bcc-card: #fff;
	--bcc-border: #d8e1e2;
	--bcc-body-font: Verdana, Helvetica, Arial, sans-serif;
	--bcc-heading-font: Verdana, Helvetica, Arial, sans-serif;
	--bcc-body-size: 18px;
	--bcc-hero-size: 58px;
	--bcc-hero-intro-size: 22px;
	--bcc-section-size: 38px;
	--bcc-section-intro-size: 19px;
	--bcc-card-size: 24px;
	--bcc-cta-title-size: 52px;
	--bcc-mobile-title-size: 42px;
	--bcc-content-width: 1240px;
	--bcc-radius: 24px;
	--bcc-hero-title: #003f51;
	--bcc-hero-text: #313131;
	--bcc-section-bar: #003f51;
	--bcc-section-text: #fff;
	--bcc-card-heading: #003f51;
	--bcc-card-text: #313131;
	--bcc-cta-bg: #003f51;
	--bcc-cta-heading: #fff;
	--bcc-cta-text: #fff;
	--bcc-shadow: 0 16px 44px rgba(0, 63, 81, 0.10);
	--bcc-shadow-hover: 0 20px 54px rgba(0, 63, 81, 0.16);
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none !important;
	margin: 0;
	padding: 0 !important;
	color: var(--bcc-body);
	background: #fff;
	font-family: var(--bcc-body-font) !important;
	font-size: var(--bcc-body-size);
	font-weight: 400;
	line-height: 1.62;
	text-align: left;
	-webkit-font-smoothing: antialiased;
}

.bcc-tth--full-bleed {
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	overflow: clip;
}

@supports not (overflow: clip) {
	.bcc-tth--full-bleed { overflow: hidden; }
}

.bcc-tth *,
.bcc-tth *::before,
.bcc-tth *::after {
	box-sizing: border-box;
}

.bcc-tth img {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0;
}

.bcc-tth a {
	color: var(--bcc-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.bcc-tth a:hover { color: var(--bcc-accent); }

.bcc-tth a:focus-visible {
	outline: 3px solid var(--bcc-accent);
	outline-offset: 4px;
	border-radius: 4px;
}

.bcc-tth p,
.bcc-tth ul,
.bcc-tth ol {
	margin: 0 0 1em;
	padding: 0;
	font: inherit;
}

.bcc-tth p:last-child,
.bcc-tth ul:last-child,
.bcc-tth ol:last-child { margin-bottom: 0; }

.bcc-tth h1,
.bcc-tth h2,
.bcc-tth h3,
.bcc-tth h4 {
	margin: 0;
	padding: 0;
	color: var(--bcc-card-heading) !important;
	font-family: var(--bcc-heading-font) !important;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.035em;
	text-transform: none;
}

.bcc-tth__page { width: 100%; }

.bcc-tth__container {
	width: min(var(--bcc-content-width), calc(100% - 64px));
	max-width: var(--bcc-content-width) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.bcc-tth__eyebrow {
	margin: 0 0 12px !important;
	color: var(--bcc-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.bcc-tth__meta {
	margin: 0 0 8px !important;
	color: var(--bcc-muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

/* Hero */
.bcc-tth__hero {
	position: relative;
	isolation: isolate;
	padding: clamp(52px, 6vw, 86px) 0 clamp(62px, 7vw, 98px);
	overflow: hidden;
	background: #fff;
}

.bcc-tth__hero::before {
	content: none;
	display: none;
}

.bcc-tth__hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 24%;
	height: 5px;
	background: var(--bcc-accent);
}

.bcc-tth__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
	gap: clamp(42px, 6vw, 78px);
	align-items: center;
}

.bcc-tth__brand-logo {
	width: auto;
	max-width: min(310px, 65%);
	max-height: 92px;
	margin: 0 0 34px;
	object-fit: contain;
	object-position: left center;
}

.bcc-tth__hero h1 {
	max-width: 760px;
	margin: 0 0 24px;
	color: var(--bcc-hero-title) !important;
	font-size: clamp(46px, 4.8vw, var(--bcc-hero-size)) !important;
	line-height: 1.03 !important;
}

.bcc-tth__hero h1::after {
	content: "";
	display: block;
	width: 86px;
	height: 7px;
	margin-top: 25px;
	border-radius: 99px;
	background: var(--bcc-accent);
}

.bcc-tth__hero-intro {
	max-width: 760px;
	color: var(--bcc-hero-text);
	font-size: clamp(18px, 1.45vw, var(--bcc-hero-intro-size));
	line-height: 1.64;
}

.bcc-tth__latest {
	display: grid;
	grid-template-columns: 8px 1fr;
	gap: 18px;
	max-width: 780px;
	margin-top: 32px;
	padding: 24px 26px;
	border: 1px solid rgba(0, 63, 81, 0.12);
	border-radius: calc(var(--bcc-radius) * 0.75);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 32px rgba(0, 63, 81, 0.08);
}

.bcc-tth__latest-marker {
	width: 8px;
	min-height: 100%;
	border-radius: 99px;
	background: var(--bcc-accent);
}

.bcc-tth__latest h2 {
	margin: 0 0 5px;
	font-size: 23px !important;
	line-height: 1.25 !important;
}

.bcc-tth__latest-copy { font-size: 17px; line-height: 1.62; }

.bcc-tth__hero-media {
	position: relative;
	justify-self: end;
	width: min(100%, 560px);
}

.bcc-tth__hero-image-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.bcc-tth__hero-image-frame::after {
	content: none;
	display: none;
}

.bcc-tth__hero-image-frame img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: none;
}

.bcc-tth__hero-badge {
	display: none;
	position: absolute;
	right: -22px;
	bottom: 34px;
	gap: 9px;
	align-items: center;
	padding: 13px 18px;
	border: 3px solid #fff;
	border-radius: 999px;
	color: #fff;
	background: var(--bcc-accent);
	box-shadow: 0 12px 30px rgba(216, 39, 45, 0.28);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.bcc-tth__hero-badge i {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
}

/* Jump navigation */
.bcc-tth__top-content {
	position: relative;
	z-index: 3;
	margin-top: -46px !important;
}

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

.bcc-tth__jump-card {
	position: relative;
	overflow: hidden;
	padding: 31px 30px 25px;
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius);
	background: var(--bcc-card);
	box-shadow: var(--bcc-shadow);
}

.bcc-tth__jump-card h2 {
	position: relative;
	min-height: 82px;
	margin: 0 0 18px;
	font-size: 25px !important;
	line-height: 1.28 !important;
}

.bcc-tth__jump-card h2::before {
	content: "";
	display: block;
	width: 34px;
	height: 4px;
	margin-bottom: 14px;
	border-radius: 99px;
	background: var(--bcc-accent);
}

.bcc-tth__jump-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bcc-tth__jump-card li { margin: 0; padding: 0; }

.bcc-tth__jump-card li::before,
.bcc-tth__jump-card li::after,
.bcc-tth__jump-card a::before,
.bcc-tth__jump-card a::after {
	content: none !important;
	display: none !important;
}

.bcc-tth__jump-card li::marker { content: ""; }

.bcc-tth__jump-card a {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
	border-top: 1px solid var(--bcc-border);
	color: var(--bcc-primary);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.bcc-tth__jump-card li:first-child a { border-top: 0; }
.bcc-tth__jump-card a span { color: var(--bcc-accent); font-size: 17px; }
.bcc-tth__jump-card a:hover { padding-left: 5px; color: var(--bcc-accent); }

/* Network */
.bcc-tth__network { padding: 78px 0 20px; }

.bcc-tth__minor-heading {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
	column-gap: 58px;
	align-items: end;
	margin-bottom: 28px;
}

.bcc-tth__minor-heading .bcc-tth__eyebrow { grid-column: 1 / -1; }

.bcc-tth__minor-heading h2 {
	font-size: var(--bcc-section-size) !important;
	line-height: 1.12 !important;
}

.bcc-tth__minor-heading > div { color: var(--bcc-body); }

.bcc-tth__network-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.bcc-tth__network-card {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	padding: 28px;
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius);
	background: var(--bcc-card);
	box-shadow: 0 10px 32px rgba(0, 63, 81, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bcc-tth__network-card:hover {
	transform: translateY(-3px);
	border-color: rgba(216, 39, 45, 0.35);
	box-shadow: var(--bcc-shadow-hover);
}

.bcc-tth__network-icon {
	display: grid;
	place-items: center;
	width: 170px;
	height: 96px;
	overflow: hidden;
	border: 1px solid var(--bcc-border);
	border-radius: 16px;
	color: var(--bcc-primary);
	background: var(--bcc-light);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.bcc-tth__network-icon img {
	width: 100%;
	height: 100%;
	padding: 12px;
	background: #fff;
	object-fit: contain;
}

.bcc-tth__network-card:nth-child(even) .bcc-tth__network-icon { background: var(--bcc-light); }

.bcc-tth__network-copy {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.bcc-tth__network-copy h3 {
	margin: 0 0 10px;
	font-size: var(--bcc-card-size) !important;
	line-height: 1.25 !important;
}

.bcc-tth__network-copy > div:not(.bcc-tth__links) {
	color: var(--bcc-body);
	font-size: 17px;
	line-height: 1.58;
}

.bcc-tth__network-copy .bcc-tth__links { margin-top: auto; padding-top: 12px; }

/* Major sections */
.bcc-tth__section {
	padding: 94px 0 8px;
	scroll-margin-top: 110px;
}

.bcc-tth__section-bar {
	display: block;
	margin-bottom: 25px;
	padding: 22px 28px;
	border-radius: var(--bcc-radius);
	background: var(--bcc-section-bar);
	box-shadow: 0 14px 34px rgba(0, 63, 81, 0.18);
}

.bcc-tth__section-bar h2 {
	color: var(--bcc-section-text) !important;
	font-size: var(--bcc-section-size) !important;
	line-height: 1.18 !important;
}

.bcc-tth__section-intro {
	max-width: 940px;
	margin: 0 0 28px;
	color: var(--bcc-body);
	font-size: var(--bcc-section-intro-size);
	line-height: 1.7;
}

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

.bcc-tth__primary-card {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
	overflow: hidden;
	border: 1px solid var(--bcc-border);
	border-left: 6px solid var(--bcc-accent);
	border-radius: var(--bcc-radius);
	background: var(--bcc-card);
	box-shadow: 0 10px 28px rgba(0, 63, 81, 0.055);
	scroll-margin-top: 110px;
}

.bcc-tth__primary-main { padding: 31px 34px; }

.bcc-tth__primary-main h3 {
	margin: 0 0 14px;
	font-size: var(--bcc-card-size) !important;
	line-height: 1.25 !important;
}

.bcc-tth__body-copy { color: var(--bcc-card-text); }

.bcc-tth__source-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 27px 29px;
	border-left: 1px solid var(--bcc-border);
	background: color-mix(in srgb, var(--bcc-light) 82%, #fff);
}

@supports not (background: color-mix(in srgb, white, black)) {
	.bcc-tth__source-panel { background: var(--bcc-light); }
}

.bcc-tth__source-label {
	margin-bottom: 8px !important;
	color: var(--bcc-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bcc-tth__links p {
	margin: 0;
	padding: 9px 0;
	border-top: 1px solid var(--bcc-border);
	font-size: 15px;
	line-height: 1.45;
}

.bcc-tth__links p:first-child { border-top: 0; }

.bcc-tth__links strong {
	display: block;
	margin-bottom: 3px;
	color: var(--bcc-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bcc-tth__links a {
	display: inline-flex;
	gap: 7px;
	align-items: baseline;
	color: var(--bcc-link);
	font-weight: 700;
	text-decoration: none;
}

.bcc-tth__links a:hover { color: var(--bcc-accent); text-decoration: underline; }
.bcc-tth__links a span { color: var(--bcc-accent); }

/* Grouped tools */
.bcc-tth__resource-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.bcc-tth__resource-group {
	align-self: start;
	overflow: hidden;
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius);
	background: var(--bcc-card);
	box-shadow: var(--bcc-shadow);
	scroll-margin-top: 110px;
}

.bcc-tth__resource-group > header {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
	padding: 22px 25px;
	background: var(--bcc-section-bar);
}

.bcc-tth__resource-group:nth-child(2n) > header { background: color-mix(in srgb, var(--bcc-section-bar) 88%, #fff); }

.bcc-tth__resource-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.46);
	border-radius: 15px;
	color: #fff;
	font-size: 23px;
	font-weight: 700;
}

.bcc-tth__resource-group > header h3 {
	color: var(--bcc-section-text) !important;
	font-size: 24px !important;
	line-height: 1.25 !important;
}

.bcc-tth__resource-entries { padding: 6px 27px 12px; }

.bcc-tth__resource-entry {
	padding: 24px 0 22px;
	border-top: 1px solid var(--bcc-border);
	scroll-margin-top: 110px;
}

.bcc-tth__resource-entry:first-child { border-top: 0; }

.bcc-tth__resource-entry h4 {
	margin: 0 0 9px;
	font-size: 20px !important;
	line-height: 1.34 !important;
}

.bcc-tth__resource-entry > div:not(.bcc-tth__links) {
	color: var(--bcc-body);
	font-size: 16px;
	line-height: 1.64;
}

.bcc-tth__resource-entry .bcc-tth__links { margin-top: 10px; }

.bcc-tth__back-top {
	margin: 24px 3px 0 !important;
	text-align: right;
}

.bcc-tth__back-top a {
	color: var(--bcc-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.bcc-tth__back-top span { color: var(--bcc-accent); }

/* About/disclaimer */
.bcc-tth__about { padding: 84px 0 66px; }

.bcc-tth__about-card {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	gap: 42px;
	align-items: center;
	padding: 38px 42px;
	border-top: 7px solid var(--bcc-accent);
	border-radius: var(--bcc-radius);
	background: var(--bcc-light);
}

.bcc-tth__about-card h2 {
	margin: 0 0 14px;
	font-size: 27px !important;
	line-height: 1.2 !important;
}

.bcc-tth__disclaimer {
	padding: 24px 26px;
	border: 1px solid var(--bcc-border);
	border-radius: calc(var(--bcc-radius) * 0.7);
	background: #fff;
	color: var(--bcc-muted);
	font-size: 14px;
	line-height: 1.62;
}

/* Existing Burlington page contact content, restyled */
.bcc-tth__cta {
	position: relative;
	padding: 72px 0;
	overflow: hidden;
	background: var(--bcc-cta-bg);
}

.bcc-tth__cta::after {
	content: "";
	position: absolute;
	top: -140px;
	right: -110px;
	width: 410px;
	height: 410px;
	border: 70px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.bcc-tth__cta-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(380px, 1.3fr);
	gap: clamp(42px, 7vw, 90px);
	align-items: center;
}

.bcc-tth__cta-media {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 7px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--bcc-radius);
	background: #fff;
}

.bcc-tth__cta-media img { width: 100%; height: 100%; object-fit: cover; }

.bcc-tth__cta .bcc-tth__eyebrow { color: #ff9ca0; }

.bcc-tth__cta h2 {
	max-width: 750px;
	margin: 0 0 17px;
	color: var(--bcc-cta-heading) !important;
	font-size: clamp(30px, 3.6vw, var(--bcc-cta-title-size)) !important;
	line-height: 1.1 !important;
}

.bcc-tth__cta-copy > div:not(.bcc-tth__buttons) {
	max-width: 690px;
	color: rgba(255, 255, 255, 0.86);
	color: color-mix(in srgb, var(--bcc-cta-text) 86%, transparent);
	font-size: 18px;
}

.bcc-tth__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 25px;
}

.bcc-tth .bcc-tth__button {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	min-height: 49px;
	padding: 12px 19px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.bcc-tth .bcc-tth__button:hover { transform: translateY(-2px); }
.bcc-tth__button--primary { color: #fff !important; background: var(--bcc-accent); }
.bcc-tth__button--primary:hover { background: #b81e23; }
.bcc-tth__button--secondary { border-color: rgba(255, 255, 255, 0.65) !important; color: #fff !important; background: transparent; }
.bcc-tth__button--secondary:hover { color: var(--bcc-primary) !important; background: #fff; }

.bcc-tth-empty {
	padding: 24px;
	border-left: 5px solid #d8272d;
	background: #f2f5f5;
	font: 15px/1.5 Verdana, Helvetica, Arial, sans-serif;
}

/* Responsive */
@media (max-width: 1100px) {
	.bcc-tth__hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr); gap: 44px; }
	.bcc-tth__jump { grid-template-columns: 1fr 1fr; }
	.bcc-tth__jump-card:last-child { grid-column: 1 / -1; }
	.bcc-tth__jump-card:last-child ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
	.bcc-tth__primary-card { grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr); }
}

@media (max-width: 900px) {
	.bcc-tth__container { width: min(var(--bcc-content-width), calc(100% - 44px)); }
	.bcc-tth__hero { background: #fff; }
	.bcc-tth__hero-grid { grid-template-columns: 1fr; }
	.bcc-tth__hero-media { justify-self: center; width: min(76vw, 480px); }
	.bcc-tth__hero-badge { right: -12px; }
	.bcc-tth__network-grid,
	.bcc-tth__resource-grid { grid-template-columns: 1fr; }
	.bcc-tth__minor-heading { grid-template-columns: 1fr; gap: 12px; }
	.bcc-tth__primary-card { grid-template-columns: 1fr; }
	.bcc-tth__source-panel { border-top: 1px solid var(--bcc-border); border-left: 0; }
	.bcc-tth__about-card { grid-template-columns: 1fr; }
	.bcc-tth__cta-grid { grid-template-columns: minmax(220px, 0.65fr) minmax(340px, 1.35fr); gap: 42px; }
}

@media (max-width: 680px) {
	.bcc-tth { font-size: 16px; }
	.bcc-tth__container { width: calc(100% - 30px); }
	.bcc-tth__hero { padding: 46px 0 82px; }
	.bcc-tth__brand-logo { max-width: 78%; margin-bottom: 26px; }
	.bcc-tth__hero h1 { font-size: var(--bcc-mobile-title-size) !important; }
	.bcc-tth__hero-intro { font-size: 18px; }
	.bcc-tth__latest { grid-template-columns: 6px 1fr; gap: 14px; padding: 20px; }
	.bcc-tth__hero-media { width: min(86vw, 420px); }
	.bcc-tth__top-content { margin-top: -35px !important; }
	.bcc-tth__jump { grid-template-columns: 1fr; }
	.bcc-tth__jump-card:last-child { grid-column: auto; }
	.bcc-tth__jump-card:last-child ul { display: block; }
	.bcc-tth__jump-card { padding: 24px 22px 19px; }
	.bcc-tth__network { padding-top: 58px; }
	.bcc-tth__jump-card h2 { min-height: 0; }
	.bcc-tth__network-card { grid-template-columns: 1fr; gap: 16px; padding: 22px 19px; }
	.bcc-tth__network-icon { width: min(100%, 220px); height: 88px; border-radius: 14px; font-size: 17px; }
	.bcc-tth__section { padding-top: 66px; }
	.bcc-tth__section-bar { padding: 18px; }
	.bcc-tth__section-bar h2 { font-size: clamp(23px, 7vw, var(--bcc-section-size)) !important; }
	.bcc-tth__section-intro { font-size: 17px; }
	.bcc-tth__primary-main { padding: 25px 21px; }
	.bcc-tth__source-panel { padding: 23px 21px; }
	.bcc-tth__resource-group > header { grid-template-columns: 43px minmax(0, 1fr); padding: 19px; }
	.bcc-tth__resource-icon { width: 43px; height: 43px; border-radius: 13px; }
	.bcc-tth__resource-entries { padding: 4px 20px 9px; }
	.bcc-tth__about { padding: 62px 0 52px; }
	.bcc-tth__about-card { gap: 25px; padding: 28px 23px; }
	.bcc-tth__cta { padding: 58px 0; }
	.bcc-tth__cta-grid { grid-template-columns: 1fr; }
	.bcc-tth__cta-media { width: min(78vw, 370px); justify-self: center; }
	.bcc-tth__buttons { align-items: stretch; flex-direction: column; }
	.bcc-tth .bcc-tth__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.bcc-tth *,
	.bcc-tth *::before,
	.bcc-tth *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}

@media print {
	.bcc-tth--full-bleed { left: auto; width: 100%; margin-left: 0; overflow: visible; }
	.bcc-tth__hero,
	.bcc-tth__cta { color: #000; background: #fff !important; }
	.bcc-tth__hero-media,
	.bcc-tth__jump,
	.bcc-tth__buttons,
	.bcc-tth__back-top { display: none !important; }
	.bcc-tth__hero-grid,
	.bcc-tth__primary-card,
	.bcc-tth__resource-grid,
	.bcc-tth__about-card,
	.bcc-tth__cta-grid { display: block; }
	.bcc-tth__primary-card,
	.bcc-tth__resource-group { break-inside: avoid; box-shadow: none; }
	.bcc-tth__source-panel { border: 0; background: #fff; }
}
