 /* Core styles can be used any where you need a generic HTML block */

body {
	font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(247, 247, 255);
}

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	/* TODO - change to site paragraph font */
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    text-rendering: optimizeLegibility;
}

ul, ol, dl {
    margin-bottom: 0;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

button {
	background-color: var(--teal);
	border: none;
	color: var(--gray-dark);
}

a {
	color: var(--gray-dark);
	text-decoration: underline;
	font-weight: var(--font-weight-bold);
	transition: color var(--transition-appendix);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-black);
    font-size: 35px; 
    line-height: calc(7/8);
    margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: italic; 
    font-weight: var(--font-weight-medium);
    font-size: 32px; 
    line-height: calc(37/32); 
    margin-bottom: 6px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: italic; 
    font-weight: var(--font-weight-medium);
    font-size: 27px; 
    line-height: calc(32/27); 
    margin-bottom: 6px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-black);
    font-size: 23px; 
    line-height: calc(28/23); 
    margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: italic; 
    font-weight: var(--font-weight-medium);
    font-size: 22px; 
    line-height: calc(27/22); 
    margin-bottom: 6px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	color: var(--gray-dark);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-black);
    font-size: 19px; 
    line-height: calc(24/19); 
    margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color: var(--gray-dark);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: 16px; 
    line-height: 1.5; 
    margin-bottom: 1.5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	color: var(--gray-dark);
	text-decoration: underline;
	font-weight: var(--font-weight-bold);
	transition: color var(--transition-appendix);
}

: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(--primary-color-500);
}

: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-600);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	margin-bottom: 10px;
    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 var(--gray-dark);
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	color: var(--gray-dark);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: 16px;
    line-height: 1.5;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background-color: #f3f0f1;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	margin-left: 0;
	padding-left: 40px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--gray-dark);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: 16px;
    line-height: 1.5;
}

: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(h1, h2, h3, h4, h5, h6) > a,
:is(.core-styles, .contentRender_name_plugins_core_textbox, [class*="contentRender_name_plugins_collections"]) :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-right: var(--space-6);
	display: inline-block;
	max-width: calc(100% - var(--space-6));
}

@media (hover: hover) {
	button:hover {
		background-color: var(--teal-light);
	}

	a:hover {
		color: var(--blue);
	}

	:is(h1, h2, h3, h4, h5, h6) > a:hover,
	:is(.core-styles, .contentRender_name_plugins_core_textbox, [class*="contentRender_name_plugins_collections"]) :is(h1, h2, h3, h4, h5, h6) > a:hover {
		font: inherit;
		color: inherit; 
		text-decoration: none;  
	}
}

@media (min-width: 40em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 37px; 
        line-height: calc(40/37);
        margin-bottom: 8px;
		letter-spacing: 0.05em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 34px; 
        line-height: calc(39/34);
        margin-bottom: 6px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 29px; 
        line-height: calc(34/29);
        margin-bottom: 6px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 25px; 
        line-height: 1.2; 
        margin-bottom: 6px;
		letter-spacing: 0.05em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 24px; 
        line-height: calc(29/24);
        margin-bottom: 6px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 21px; 
        line-height: calc(26/21);
        margin-bottom: 6px;
		letter-spacing: 0.05em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: 18px; 
        line-height: calc(13/9);
    }
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
		margin-bottom: 6px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: 18px;
        line-height: calc(13/9);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
		margin-bottom: 6px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 18px;
        line-height: calc(13/9);
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 65px; 
        line-height: calc(14/13);
        margin-bottom: 10px;
		letter-spacing: 0.1em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 50px; 
        line-height: calc(11/10);
        margin-bottom: 8px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 45px; 
        line-height: calc(10/9);
        margin-bottom: 6px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 37px; 
        line-height: calc(42/37);
        margin-bottom: 6px;
		letter-spacing: 0.1em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 35px; 
        line-height: calc(8/7);
        margin-bottom: 6px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 30px; 
        line-height: calc(7/6);
        margin-bottom: 6px;
		letter-spacing: 0.1em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: 21px; 
        line-height: calc(10/7);
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
		margin-bottom: 10px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: 21px;
        line-height: calc(10/7);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
		margin-bottom: 10px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 21px;
        line-height: calc(10/7);
	}
}