/* Core styles can be used any where you need a generic HTML block */

p, button, input, select {
	/* TODO - change to site paragraph font */
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

hr {
	height: 2px;
	background-color: var(--gray-300);
}

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(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) > p:not([style="text-align: right;"]) > img,
:is(.core-styles, .contentRender_name_plugins_core_textbox) img[style*="float: left;"] {
	margin-left: 0;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) > p:not([style="text-align: right;"]) > img[style*="float: right"],
:is(.core-styles, .contentRender_name_plugins_core_textbox) img[style*="float: right;"],
:is(.core-styles, .contentRender_name_plugins_core_textbox) > p[style="text-align: right;"] > img {
	margin-right: 0;
}

@media (hover: hover) {
	a:hover {
		/* TODO - change to site color */
		color: var(--dark-blue);
		text-decoration: none; /*reboot.css override*/
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	margin-bottom: var(--mobile-margin);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15em;
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	margin-bottom: var(--mobile-margin);
	font-size: 36px;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	margin-bottom: var(--mobile-margin);
	font-size: 32px;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	margin-bottom: var(--mobile-margin);
	font-size: 28px;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	margin-bottom: var(--mobile-margin);
	font-size: 24px;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	margin-bottom: var(--mobile-margin);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: var(--leading-normal);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--font-body);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	margin-bottom: var(--mobile-margin);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: var(--leading-normal);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	color: var(--dark-blue);
    border-bottom: 4px solid var(--light-teal);
    text-decoration: none;
    font-weight: 700;
    transition: background-color ease 0.4s;
}

@media (hover: hover) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
    	background-color: var(--light-teal);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote {
	margin-bottom: var(--space-4);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--dark-blue);
	font-family: var(--font-display);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p {
	margin: 0;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	background: #fff;
	margin-bottom: var(--space-5);
	table-layout: auto;
	border: unset;
	border-collapse: collapse;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
	border: 1px solid #b9cdcd;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	padding: var(--space-2);
	color: var(--dark-blue);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--shade-gray);
}

: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-base);
	line-height: var(--leading-normal);
	color: var(--dark-blue);
}

: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-sides: var(--space-6);
	margin-bottom: var(--space-4);
	margin-left: var(--margin-sides);
	margin-right: var(--margin-sides);
	display: inline-block;
	max-width: calc(100% - (var(--margin-sides) * 2));
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 65px;
		line-height: 1.125em;
		margin-bottom: var(--desktop-margin);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		margin-bottom: var(--desktop-margin);
		font-size: 54px;
		line-height: 1.125em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		margin-bottom: var(--desktop-margin);
		font-size: 45px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		margin-bottom: var(--desktop-margin);
		font-size: 36px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		margin-bottom: var(--desktop-margin);
		font-size: 32px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		margin-bottom: var(--desktop-margin);
		font-size: 20px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		margin-bottom: 20px;
		font-size: 20px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 20px;
		padding: 5px 8px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: 20px;
	}
}