:root {
	--tfbr-forest: #274c3b;
	--tfbr-forest-dark: #19382b;
	--tfbr-cream: #f7f1e7;
	--tfbr-cream-deep: #eee3d3;
	--tfbr-terracotta: #b86545;
	--tfbr-terracotta-dark: #984d33;
	--tfbr-charcoal: #2b2b2b;
	--tfbr-muted: #6f6a62;
	--tfbr-white: #ffffff;
	--tfbr-width: 1200px;
	--tfbr-reading: 760px;
	--tfbr-radius: 18px;
	--tfbr-radius-large: 30px;
	--tfbr-shadow: 0 18px 50px rgba(43, 43, 43, 0.07);
}

/* ==========================================================
   BASE
   ========================================================== */

.tfbr-single {
	background: var(--tfbr-cream);
	overflow: hidden;
}

.tfbr-shell {
	width: min(100% - 2rem, var(--tfbr-width));
	margin-inline: auto;
}

.tfbr-reading {
	width: min(100% - 2rem, var(--tfbr-reading));
	margin-inline: auto;
}

.tfbr-eyebrow {
	margin: 0 0 0.55rem;
	color: var(--tfbr-terracotta);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.tfbr-eyebrow--light {
	color: #e8b59f;
}

/* ==========================================================
   HERO
   ========================================================== */

.tfbr-hero {
	padding: 1rem 0 2rem;
}

.tfbr-hero__grid {
	overflow: hidden;
	background: var(--tfbr-white);
	border-radius: var(--tfbr-radius-large);
	box-shadow: var(--tfbr-shadow);
}

.tfbr-hero__content {
	padding: 2rem 1.35rem;
}

.tfbr-hero h1 {
	max-width: 11ch;
	margin: 0;
	color: var(--tfbr-forest);
	font-size: clamp(2.3rem, 10vw, 5.6rem);
	letter-spacing: -0.05em;
	line-height: 0.94;
}

.tfbr-hero__intro {
	max-width: 40rem;
	margin: 1.1rem 0 0;
	color: var(--tfbr-charcoal);
	font-size: 1rem;
	line-height: 1.62;
}

.tfbr-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 1.4rem;
}

.tfbr-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.1rem;
	border-radius: 999px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 180ms ease,
		background 180ms ease,
		color 180ms ease,
		border-color 180ms ease;
}

.tfbr-button:hover,
.tfbr-button:focus {
	transform: translateY(-2px);
}

.tfbr-button--primary {
	background: var(--tfbr-forest);
	color: var(--tfbr-white);
	border: 1px solid var(--tfbr-forest);
}

.tfbr-button--primary:hover,
.tfbr-button--primary:focus {
	background: var(--tfbr-terracotta);
	color: var(--tfbr-white);
	border-color: var(--tfbr-terracotta);
}

.tfbr-button--print {
	background: var(--tfbr-terracotta);
	color: var(--tfbr-white);
	border: 1px solid var(--tfbr-terracotta);
}

.tfbr-button--print:hover,
.tfbr-button--print:focus {
	background: var(--tfbr-terracotta-dark);
	color: var(--tfbr-white);
	border-color: var(--tfbr-terracotta-dark);
}

.tfbr-button--secondary {
	background: transparent;
	color: var(--tfbr-forest);
	border: 1px solid rgba(39, 76, 59, 0.25);
}

.tfbr-button--secondary:hover,
.tfbr-button--secondary:focus {
	color: var(--tfbr-terracotta-dark);
	border-color: var(--tfbr-terracotta);
}

.tfbr-hero__visual {
	min-height: 340px;
	overflow: hidden;
	background: var(--tfbr-cream-deep);
}

.tfbr-hero__image {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

.tfbr-hero__placeholder {
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-height: 340px;
	padding: 1.5rem;
	background:
		linear-gradient(
			145deg,
			var(--tfbr-terracotta),
			var(--tfbr-terracotta-dark) 50%,
			var(--tfbr-forest)
		);
	color: var(--tfbr-white);
}

.tfbr-hero__placeholder span {
	max-width: 8ch;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 0.95;
}

/* ==========================================================
   SUMMARY
   ========================================================== */

.tfbr-summary {
	padding: 0 0 3rem;
}

.tfbr-summary__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	background: var(--tfbr-forest);
	border-radius: var(--tfbr-radius-large);
}

.tfbr-summary__item {
	padding: 1.15rem;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.tfbr-summary__item:nth-child(even) {
	border-right: 0;
}

.tfbr-summary__item span {
	display: block;
	margin-bottom: 0.25rem;
	color: #e8b59f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.tfbr-summary__item strong {
	display: block;
	color: var(--tfbr-white);
	font-size: 1.25rem;
	line-height: 1.2;
}

/* ==========================================================
   STORY
   ========================================================== */

.tfbr-story {
	padding: 0.5rem 0 3.5rem;
}

.tfbr-story__content {
	color: var(--tfbr-charcoal);
	font-size: 1.05rem;
	line-height: 1.8;
}

.tfbr-story__content p {
	margin: 0 0 1.25rem;
}

.tfbr-story__content h2,
.tfbr-story__content h3 {
	color: var(--tfbr-forest);
	line-height: 1.05;
}

/* ==========================================================
   RECIPE CARD
   ========================================================== */

.tfbr-card-section {
	padding: 1rem 0 3.5rem;
	scroll-margin-top: 120px;
}

.tfbr-card {
	overflow: hidden;
	background: var(--tfbr-white);
	border-radius: var(--tfbr-radius-large);
	box-shadow: var(--tfbr-shadow);
}

.tfbr-card__header {
	padding: 1.8rem 1.35rem;
	background: var(--tfbr-forest);
	color: var(--tfbr-white);
}

.tfbr-card__header h2 {
	max-width: 16ch;
	margin: 0;
	color: var(--tfbr-white);
	font-size: clamp(2rem, 8.5vw, 4.4rem);
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.tfbr-card__header > p:last-child {
	max-width: 44rem;
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.75);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.92rem;
	line-height: 1.6;
}

.tfbr-card__body {
	padding: 1.5rem 1.3rem 2rem;
}

.tfbr-ingredients,
.tfbr-instructions {
	padding: 0.5rem 0 2rem;
}

.tfbr-instructions {
	padding-top: 2rem;
	border-top: 1px solid rgba(39, 76, 59, 0.12);
}

.tfbr-section-heading {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	margin-bottom: 1.5rem;
}

.tfbr-section-heading > span {
	color: var(--tfbr-terracotta);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.tfbr-section-heading h2 {
	margin: 0;
	color: var(--tfbr-forest);
	font-size: clamp(2rem, 8vw, 3.8rem);
	letter-spacing: -0.04em;
	line-height: 0.97;
}

.tfbr-ingredients ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tfbr-ingredients li {
	position: relative;
	padding: 0.9rem 0 0.9rem 1.5rem;
	border-bottom: 1px solid rgba(39, 76, 59, 0.1);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.94rem;
	line-height: 1.55;
}

.tfbr-ingredients li::before {
	content: "";
	position: absolute;
	top: 1.45rem;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--tfbr-terracotta);
	border-radius: 50%;
}

.tfbr-instructions ol {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: tfbr-step;
}

.tfbr-instructions li {
	counter-increment: tfbr-step;
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(39, 76, 59, 0.1);
}

.tfbr-instructions li::before {
	content: counter(tfbr-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--tfbr-cream);
	color: var(--tfbr-forest);
	border-radius: 50%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
}

.tfbr-instructions li > div {
	padding-top: 0.4rem;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.94rem;
	line-height: 1.65;
}

/* ==========================================================
   CHEF NOTE
   ========================================================== */

.tfbr-note-section {
	padding: 0 0 4rem;
}

.tfbr-note {
	padding: 1.6rem 1.4rem;
	background: var(--tfbr-terracotta);
	color: var(--tfbr-white);
	border-radius: var(--tfbr-radius-large);
	box-shadow: var(--tfbr-shadow);
}

.tfbr-note__label {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.tfbr-note__label span {
	color: #f1c7b6;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.tfbr-note__label strong {
	font-size: 1.5rem;
	line-height: 1.1;
}

.tfbr-note p {
	max-width: 48rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ==========================================================
   NUTRITION
   ========================================================== */

.tfbr-nutrition {
	padding: 4rem 0;
	background: var(--tfbr-forest);
	color: var(--tfbr-white);
}

.tfbr-nutrition__heading h2 {
	margin: 0;
	color: var(--tfbr-white);
	font-size: clamp(2.2rem, 9vw, 4.6rem);
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.tfbr-nutrition__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.tfbr-nutrition__grid > div {
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tfbr-nutrition__grid span {
	display: block;
	color: rgba(255, 255, 255, 0.68);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tfbr-nutrition__grid strong {
	display: block;
	margin-top: 0.3rem;
	color: var(--tfbr-white);
	font-size: 1.5rem;
	line-height: 1.1;
}

.tfbr-nutrition__note {
	max-width: 42rem;
	margin: 1.4rem 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.78rem;
	line-height: 1.55;
}

/* ==========================================================
   EXTRAS
   ========================================================== */

.tfbr-extras {
	padding: 4rem 0;
}

.tfbr-extras__grid {
	display: grid;
	gap: 1rem;
}

.tfbr-extra-card {
	padding: 1.5rem;
	background: var(--tfbr-white);
	border-radius: var(--tfbr-radius-large);
	box-shadow: var(--tfbr-shadow);
}

.tfbr-extra-card h2 {
	margin: 0;
	color: var(--tfbr-forest);
	font-size: clamp(1.8rem, 7vw, 3rem);
	letter-spacing: -0.035em;
	line-height: 1;
}

.tfbr-extra-card > p:last-child {
	margin: 1rem 0 0;
	color: var(--tfbr-muted);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.92rem;
	line-height: 1.65;
}

/* ==========================================================
   FOOTER CTA
   ========================================================== */

.tfbr-recipe-footer {
	padding: 4rem 0;
	background: var(--tfbr-forest-dark);
	color: var(--tfbr-white);
}

.tfbr-recipe-footer__inner h2 {
	max-width: 15ch;
	margin: 0;
	color: var(--tfbr-white);
	font-size: clamp(2.1rem, 8.5vw, 4.3rem);
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.tfbr-footer-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 1.5rem;
	color: var(--tfbr-white);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.tfbr-footer-link::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #e8b59f;
	border-right: 2px solid #e8b59f;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.tfbr-footer-link:hover,
.tfbr-footer-link:focus {
	color: #e8b59f;
}

.tfbr-footer-link:hover::after,
.tfbr-footer-link:focus::after {
	transform: translateX(3px) rotate(45deg);
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (min-width: 560px) {

	.tfbr-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.tfbr-summary__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tfbr-summary__item {
		border-bottom: 0;
	}

	.tfbr-summary__item:nth-child(even) {
		border-right: 1px solid rgba(255, 255, 255, 0.13);
	}

	.tfbr-summary__item:last-child {
		border-right: 0;
	}

	.tfbr-card__body {
		padding: 2.25rem;
	}

	.tfbr-nutrition__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.tfbr-nutrition__grid > div {
		padding: 1.25rem;
		border-right: 1px solid rgba(255, 255, 255, 0.18);
	}

	.tfbr-nutrition__grid > div:first-child {
		padding-left: 0;
	}

	.tfbr-nutrition__grid > div:last-child {
		border-right: 0;
	}

	.tfbr-extras__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 900px) {

	.tfbr-hero {
		padding: 2rem 0 3rem;
	}

	.tfbr-hero__grid {
		display: grid;
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		min-height: 650px;
	}

	.tfbr-hero__content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: clamp(3rem, 5vw, 5rem);
	}

	.tfbr-hero__actions {
		align-self: flex-start;
	}

	.tfbr-hero__visual,
	.tfbr-hero__image,
	.tfbr-hero__placeholder {
		min-height: 650px;
	}

	.tfbr-summary {
		padding-bottom: 5rem;
	}

	.tfbr-summary__item {
		padding: 1.5rem;
	}

	.tfbr-card-section {
		padding-bottom: 5rem;
	}

	.tfbr-card__header {
		padding: clamp(2.5rem, 5vw, 4.5rem);
	}

	.tfbr-card__body {
		display: grid;
		grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
		gap: clamp(3rem, 7vw, 7rem);
		padding: clamp(2.5rem, 5vw, 5rem);
	}

	.tfbr-ingredients,
	.tfbr-instructions {
		padding: 0;
	}

	.tfbr-instructions {
		padding-top: 0;
		border-top: 0;
	}

	.tfbr-note {
		display: grid;
		grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
		align-items: start;
		gap: 3rem;
		padding: clamp(2.5rem, 5vw, 4rem);
	}

	.tfbr-note__label {
		margin: 0;
	}

	.tfbr-nutrition {
		padding: 6rem 0;
	}

	.tfbr-extras {
		padding: 6rem 0;
	}

	.tfbr-extra-card {
		padding: 2.2rem;
	}

	.tfbr-recipe-footer {
		padding: 6rem 0;
	}

	.tfbr-recipe-footer__inner {
		display: grid;
		grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
		align-items: end;
		gap: 4rem;
	}

	.tfbr-footer-link {
		justify-self: end;
		margin-top: 0;
	}
}

/* ==========================================================
   PRINT RECIPE
   ========================================================== */

@media print {

	@page {
		margin: 0.6in;
	}

	html,
	body {
		background: #ffffff !important;
		color: #000000 !important;
	}

	body {
		font-family: Arial, Helvetica, sans-serif !important;
		font-size: 10pt !important;
		line-height: 1.45 !important;
	}

	#wpadminbar,
	.tfb-site-header,
	.tfb-site-footer,
	.tfbr-hero,
	.tfbr-story,
	.tfbr-recipe-footer,
	.tfbr-button {
		display: none !important;
	}

	.tfbr-single {
		background: #ffffff !important;
		overflow: visible !important;
	}

	.tfbr-shell,
	.tfbr-reading {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.tfbr-summary {
		padding: 0 0 14pt !important;
	}

	.tfbr-summary__grid {
		display: grid !important;
		grid-template-columns: repeat(4, 1fr) !important;
		background: #ffffff !important;
		border: 1px solid #bdbdbd !important;
		border-radius: 0 !important;
		overflow: visible !important;
	}

	.tfbr-summary__item {
		padding: 8pt !important;
		border-right: 1px solid #bdbdbd !important;
		border-bottom: 0 !important;
	}

	.tfbr-summary__item:last-child {
		border-right: 0 !important;
	}

	.tfbr-summary__item span,
	.tfbr-summary__item strong {
		color: #000000 !important;
	}

	.tfbr-summary__item span {
		font-size: 7pt !important;
	}

	.tfbr-summary__item strong {
		font-size: 11pt !important;
	}

	.tfbr-card-section {
		padding: 0 !important;
	}

	.tfbr-card {
		overflow: visible !important;
		background: #ffffff !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	.tfbr-card__header {
		padding: 0 0 12pt !important;
		background: #ffffff !important;
		color: #000000 !important;
		border-bottom: 2px solid #000000 !important;
	}

	.tfbr-card__header .tfbr-eyebrow {
		display: none !important;
	}

	.tfbr-card__header h2 {
		max-width: none !important;
		color: #000000 !important;
		font-size: 22pt !important;
		line-height: 1.05 !important;
	}

	.tfbr-card__header > p:last-child {
		max-width: none !important;
		margin-top: 7pt !important;
		color: #000000 !important;
		font-size: 9.5pt !important;
		line-height: 1.45 !important;
	}

	.tfbr-card__body {
		display: grid !important;
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
		gap: 28pt !important;
		padding: 14pt 0 0 !important;
	}

	.tfbr-ingredients,
	.tfbr-instructions {
		padding: 0 !important;
		border: 0 !important;
	}

	.tfbr-section-heading {
		margin-bottom: 8pt !important;
	}

	.tfbr-section-heading > span,
	.tfbr-section-heading .tfbr-eyebrow {
		display: none !important;
	}

	.tfbr-section-heading h2 {
		color: #000000 !important;
		font-size: 16pt !important;
	}

	.tfbr-ingredients li {
		padding: 5pt 0 5pt 12pt !important;
		border-bottom: 1px solid #d7d7d7 !important;
		color: #000000 !important;
		font-size: 9pt !important;
	}

	.tfbr-ingredients li::before {
		top: 10pt !important;
		width: 4px !important;
		height: 4px !important;
		background: #000000 !important;
	}

	.tfbr-instructions li {
		grid-template-columns: 24px 1fr !important;
		gap: 8pt !important;
		padding: 6pt 0 !important;
		border-bottom: 1px solid #d7d7d7 !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.tfbr-instructions li::before {
		width: 24px !important;
		height: 24px !important;
		background: #ffffff !important;
		color: #000000 !important;
		border: 1px solid #000000 !important;
		font-size: 8pt !important;
	}

	.tfbr-instructions li > div {
		padding-top: 2pt !important;
		color: #000000 !important;
		font-size: 9pt !important;
		line-height: 1.45 !important;
	}

	.tfbr-note-section {
		padding: 14pt 0 0 !important;
	}

	.tfbr-note {
		display: block !important;
		padding: 10pt !important;
		background: #ffffff !important;
		color: #000000 !important;
		border: 1px solid #bdbdbd !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.tfbr-note__label {
		margin-bottom: 5pt !important;
	}

	.tfbr-note__label span {
		display: none !important;
	}

	.tfbr-note__label strong {
		color: #000000 !important;
		font-size: 12pt !important;
	}

	.tfbr-note p {
		max-width: none !important;
		color: #000000 !important;
		font-size: 9pt !important;
		line-height: 1.45 !important;
	}

	.tfbr-nutrition {
		padding: 14pt 0 0 !important;
		background: #ffffff !important;
		color: #000000 !important;
	}

	.tfbr-nutrition__heading .tfbr-eyebrow {
		display: none !important;
	}

	.tfbr-nutrition__heading h2 {
		color: #000000 !important;
		font-size: 16pt !important;
	}

	.tfbr-nutrition__grid {
		display: grid !important;
		grid-template-columns: repeat(5, 1fr) !important;
		margin-top: 8pt !important;
		border-top: 1px solid #bdbdbd !important;
		border-bottom: 1px solid #bdbdbd !important;
	}

	.tfbr-nutrition__grid > div {
		padding: 7pt !important;
		border-right: 1px solid #bdbdbd !important;
		border-bottom: 0 !important;
	}

	.tfbr-nutrition__grid > div:last-child {
		border-right: 0 !important;
	}

	.tfbr-nutrition__grid span,
	.tfbr-nutrition__grid strong {
		color: #000000 !important;
	}

	.tfbr-nutrition__grid span {
		font-size: 7pt !important;
	}

	.tfbr-nutrition__grid strong {
		font-size: 11pt !important;
	}

	.tfbr-nutrition__note {
		margin-top: 6pt !important;
		color: #444444 !important;
		font-size: 7.5pt !important;
	}

	.tfbr-extras {
		padding: 14pt 0 0 !important;
	}

	.tfbr-extras__grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10pt !important;
	}

	.tfbr-extra-card {
		padding: 10pt !important;
		background: #ffffff !important;
		border: 1px solid #bdbdbd !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.tfbr-extra-card .tfbr-eyebrow {
		display: none !important;
	}

	.tfbr-extra-card h2 {
		color: #000000 !important;
		font-size: 13pt !important;
	}

	.tfbr-extra-card > p:last-child {
		color: #000000 !important;
		font-size: 9pt !important;
		line-height: 1.45 !important;
	}

	a,
	a:visited {
		color: #000000 !important;
		text-decoration: none !important;
	}
}