/* Core styles can be used any where you need a generic HTML block */

body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	font-family: var(--font-body);
	text-rendering: optimizeLegibility;
}

ul, ol, dl {
    margin-bottom: 0;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

i {
    font-style: italic;
	font-weight: var(--font-weight-normal);
}

b {
	font-weight: var(--font-weight-bold);
}

h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
    display: block;
    font-family: var(--font-body);
	font-style: normal;
	font-weight: var(--font-weight-light);
    text-transform: uppercase;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
    font-style: normal;
}

h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
	font-weight: unset;
}

button {
	background-color: var(--blue);
	color: var(--blue-white);
	transition: background-color var(--transition-appendix);
    cursor: pointer;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--indigo);
	}
}

a {
	color: var(--blue);
    text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

@media (hover: hover) {
    h1 a:hover,
    h2 a:hover,
    h3 a:hover,
    h4 a:hover,
    h5 a:hover,
    h6 a:hover {
        text-decoration: none;
        color: inherit;
    }
}

/*===============================*/
/*=====---- CORE STYLES ----=====*/
/*===============================*/

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color: var(--navy);
    font-family: var(--font-display);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    font-size: 2.125rem;
    line-height: 1.294; 
    margin-bottom: .7em;
	position: relative;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1[style*="text-align: center"] {
	width: min-content;
	margin-left: auto;
	margin-right: auto;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1::after {
	content: '';
    position: absolute;
    bottom: -8px;
    left: -34px;
    height: 2px;
    width: 78px;
    background-color: #9FD9DD;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal;
    font-weight: var(--font-weight-heavy);
    font-size: var(--text-3xl);
    line-height: normal;
    margin-bottom: .5em;
    text-transform: uppercase;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--indigo);
    font-family:  var(--font-display-3);
    font-style: normal; 
    font-weight: var(--font-weight-bold);
    font-size: 1.75rem;
    line-height: var(--leading-none); 
    margin-bottom: .7em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal; 
    font-weight: var(--font-weight-heavy);
    font-size: 1.625rem;
    line-height: normal;
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal; 
    font-weight: var(--font-weight-heavy); 
    font-size: var(--text-2xl); 
    line-height: normal; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	color: var(--indigo);
    font-family:  var(--font-display-3);
    font-style: normal; 
    font-weight: var(--font-weight-bold); 
    font-size: 1.375rem; 
    line-height: var(--leading-none); 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color: var(--dark-gray);
    font-family: var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    line-height: 1.647; 
    margin-bottom: 1.5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	text-decoration: none;
	color: var(--blue);
    transition: color var(--transition-appendix);
}

:is(.core-styles) :is(h1, h2, h3, h4, h5, h6) a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

: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: 1.5em;
    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 #eeeeee;
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	color: var(--dark-gray); 
    font-family: var(--font-body); 
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    line-height: 1.5; 
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background-color: #f2f2f2;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	padding-left: var(--space-10);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--dark-gray);
    font-family: var(--font-body) ;
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    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 {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.contentRender_name_plugins_core_textbox img {
	margin: 30px auto;
    max-width: 100%;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: var(--text-6xl); 
        line-height: 1.0625; 
        margin-bottom: .5em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 2.75rem; 
        line-height: normal; 
        margin-bottom: .5em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 2.375rem; 
        line-height: 1.158; 
        margin-bottom: .5em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 2.125rem; 
        line-height: normal; 
        margin-bottom: .5em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: var(--text-3xl); 
        line-height: normal; 
        margin-bottom: .6em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
        font-size: 1.625rem; 
        line-height: var(--leading-none); 
        margin-bottom: .7em;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: var(--text-lg); 
        line-height: 1.555; 
        margin-bottom: 1.5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li { 
        font-size: var(--text-lg);
        line-height: 1.5;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
        font-size: var(--text-lg);
        line-height: 1.5;
    }
}

/*====================================*/
/*=====---- CORE BLOG STYLES ----=====*/
/*====================================*/

:is(.core-blog-styles) h1 {
	color: var(--indigo);
    font-family: var(--font-display-3);
    font-style: normal; 
    font-weight: var(--font-weight-bold); 
    font-size: 2.125rem; 
    line-height: 1.294; 
    margin-bottom: .7em;
}

:is(.core-blog-styles) h2 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal; 
    font-weight: var(--font-weight-heavy); 
    font-size: var(--text-3xl); 
    line-height: var(--leading-none); 
    margin-bottom: .5em;
    text-transform: uppercase;
}

:is(.core-blog-styles) h3 {
	color: var(--indigo);
    font-family:  var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-bold); 
    font-size: 1.75rem; 
    line-height: var(--leading-none); 
    margin-bottom: .7em;
}

:is(.core-blog-styles) h4 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal; 
    font-weight: var(--font-weight-heavy); 
    font-size: 1.625rem; 
    line-height: normal; 
    margin-bottom: .5em;
}

:is(.core-blog-styles) h5 {
	color: var(--indigo);
    font-family: var(--font-display-2);
    font-style: normal; 
    font-weight: var(--font-weight-heavy); 
    font-size: var(--text-2xl); 
    line-height: normal; 
    margin-bottom: .5em;
}

:is(.core-blog-styles) h6 {
	color: var(--indigo);
    font-family: var(--font-display-3);
    font-style: normal; 
    font-weight: var(--font-weight-bold); 
    font-size: 1.375rem; 
    line-height: var(--leading-none); 
    margin-bottom: .5em;
}

:is(.core-blog-styles) p {
	color: var(--dark-gray);
    font-family: var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    line-height: 1.647; 
    margin-bottom: 1.5em;
}

:is(.core-blog-styles) a {
	text-decoration: none;
	color: var(--blue);
    transition: color var(--transition-appendix);
}

:is(.core-blog-styles) :is(h1, h2, h3, h4, h5, h6) a {
	font: inherit;
	text-decoration: none;
	color: inherit;
}

:is(.core-blog-styles) blockquote {
	margin: var(--space-12) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--primary-color-500);
}

:is(.core-blog-styles) blockquote > p {
	margin: 0;
	font-size: var(--text-2xl);
	font-style: italic;
	line-height: var(--leading-snug);
	color: var(--gray-600);
}

:is(.core-blog-styles) :is(table) {
	margin-bottom: 1.5em;
    border-collapse: collapse;
}

:is(.core-blog-styles) :is(table tbody tr td, table tr td) {
	display: table-cell;
	border: 1px solid #eeeeee;
    padding: 5px 8px;
}

:is(.core-blog-styles) :is(td, tr) {
	color: var(--dark-gray); 
    font-family: var(--font-body); 
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    line-height: 1.5; 
}

:is(.core-blog-styles) :is(table tr):nth-of-type(even){
	background-color: #f2f2f2;
}

:is(.core-blog-styles) :is(ul, ol) {
	margin-bottom: var(--space-4);
	padding-left: var(--space-10);
}

:is(.core-blog-styles) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--dark-gray);
    font-family: var(--font-body) ;
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 1.0625rem; 
    line-height: 1.5;
}

:is(.core-blog-styles) :is(ul) {
	list-style-type: disc;
}

:is(.core-blog-styles) :is(ol) {
	list-style-type: decimal;
}

:is(.core-blog-styles) :is(ul li ul) {
	list-style-type: circle;
}

:is(.core-blog-styles) :is(ul ul ul) {
	list-style-type: square;
}

@media (min-width: 64em) {
	:is(.core-blog-styles) h1 {
        font-size: var(--text-6xl); 
        line-height: var(--leading-none); 
        margin-bottom: .5em;
    }
    
    :is(.core-blog-styles) h2 {
        font-size: 2.75rem; 
        line-height: 1.09; 
        margin-bottom: .5em;
    }
    
    :is(.core-blog-styles) h3 {
        font-size: 2.375rem; 
        line-height: 1.158; 
        margin-bottom: .5em;
    }
    
    :is(.core-blog-styles) h4 {
        font-size: 2.125rem; 
        line-height: normal; 
        margin-bottom: .5em;
    }
    
    :is(.core-blog-styles) h5 {
        font-size: var(--text-3xl); 
        line-height: normal; 
        margin-bottom: .5em;
    }
    
    :is(.core-blog-styles) h6 {
        font-size: 1.625rem; 
        line-height: var(--leading-none); 
        margin-bottom: .6em;
    }
    
    :is(.core-blog-styles) p {
        font-size: var(--text-lg); 
        line-height: 1.555;
    }

	:is(.core-blog-styles) :is(ul, ol):not([class*="block-grid-"]) li { 
        font-size: var(--text-lg);
        line-height: 1.555;
    }

	:is(.core-blog-styles) :is(td, tr) {
        font-size: var(--text-lg);
        line-height: 1.555;
    }
}
