/* Core styles can be used any where you need a generic HTML block */

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	/* TODO - change to site paragraph font */
	font-family: var(--font-body);
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	margin: 0;
	/* LEAVE AS IS Foundation overwrite of top/bottom margins, so only bottom needs to be added where wanted */
	text-rendering: optimizeLegibility;
}

button {
	/* TODO - change to site color */
	background-color: var(--primary-color-100);
	color: var(--primary-color-900);
}

@media (hover: hover) {
	button:hover {
		/* TODO - change to site color */
		background-color: var(--primary-color-200);
	}
}

a {
	color: var(--blue-af);
}

@media (hover: hover) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
		/* TODO - change to site color */
		color: var(--blue-e4); /*reboot.css override*/
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	margin-bottom: ;
	font-family: var(--font-display);
	font-size: 39px;
	font-weight: 400;
	line-height: normal;
	font-style: normal;
	color: var(--black)
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	margin-bottom: ;
	font-family: var(--font-body);
	font-size: 26px;
	font-weight: 600;
	line-height: var(--leading-none);
	font-style: normal;
	letter-spacing: 0.04em;
	color: var(--black)
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	margin-bottom: ;
	font-family: var(--font-display);
	font-size: 23px;
	font-weight: 400;
	line-height: normal;
	color: var(--black);
	font-style: normal;
	letter-spacing: 0.02em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	margin-bottom: ;
	font-family: var(--font-body);
	font-size: 23px;
	font-weight: 600;
	line-height: normal;
	font-style: normal;
	letter-spacing: 0.02em;
	color: var(--blue-af)
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	margin-bottom: ;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 400;
	font-style: italic;
	letter-spacing: .02em;
	line-height: normal;
	color: var(--black)
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	margin-bottom: ;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--tan);
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	margin-bottom: var(--space-5);
	font-family: var(--font-body);
	font-size: var(--text-xl);
	line-height: 29px;
	color: var(--gray-33);
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.01em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	color: var(--blue-af);
	text-decoration: underline;
	transition: color ease 0.4s;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote {
	margin: var(--space-12) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--blue-af);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p {
	margin: 0;
	font-size: var(--text-2xl);
	font-style: italic;
	line-height: var(--leading-snug);
	color: var(--gray-33);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	margin-bottom: ;
	border-collapse: collapse;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 29px;
	padding: 5px 8px ;
	border: 1px solid var(--black);
	color: var(--gray-33);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--gray-f2);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	margin-left: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	font-family: var(--font-body);
	font-size: var(--text-xl);
	line-height: var(--leading-normal);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul) {
	list-style-type: disc;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol) {
	list-style-type: decimal;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul) {
	list-style-type: circle;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul ul ul) {
	list-style-type: square;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul, ul li ol, ol li ol) {
	margin-left: var(--space-5);
}

:is(h1, h2, h3, h4, h5, h6) > a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a {
	font: inherit;
	color: inherit; 
	text-decoration: none;  
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	margin-left: var(--space-6);
	margin-right: var(--space-6);
	display: inline-block;
}


@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 68px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: 33px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: 29px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: 26px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: 23px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 19px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: 21px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li, ol li) {
		font-size: 21px;
		line-height: normal;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table td, table tr) {
		font-size: 21px;
		line-height: normal;
	}
}
