/* 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, ul, ol, dl {
	font-family: var(--font-body);
	text-rendering: optimizeLegibility;
}

::selection {
    color: var(--black);
    background: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: .5em;
}

h1, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

h2 {
	font-family: var(--font-display-hand);
}

button {
	background-color: var(--primary-color-100);
	color: var(--primary-color-900);
}

a {
	color: var(--black);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
}

:is(h1, h2, h3, h4, h5, h6) a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) a,
.ccl-widget :is(h1, h2, h3, h4, h5, h6) a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color: var(--black);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-extrabold);
    font-size: var(--text-4xl);
    line-height: 0.889; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--teal);
    font-family: var(--font-display-hand);
    font-style: normal; 
    font-weight: var(--font-weight-bold);
    font-size: 1.6875rem;
    line-height: 1.074; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--black);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-extrabold);
    font-size: 1.75rem; 
    line-height: 0.857; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	color: var(--black);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-extrabold); 
    font-size: 1.625rem; 
    line-height: 0.846; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	color: var(--black);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-extrabold); 
    font-size: var(--text-2xl); 
    line-height: 0.833; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	color: var(--black);
    font-family: var(--font-display);
    font-style: normal; 
    font-weight: var(--font-weight-extrabold); 
    font-size: 1.375rem; 
    line-height: 0.818; 
    margin-bottom: .5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color: var(--black);
    font-family: var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: var(--text-base); 
    line-height: var(--leading-normal); 
    margin-bottom: 1.5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p strong {
    font-weight: var(--font-weight-bold);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	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) {
	background: #fff;
	margin-bottom: 1.5em;
	table-layout: auto;
	border-collapse: collapse;
	padding: var(--space-2);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
	border: 1px solid #cccccc;
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	color: var(--black);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

: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);
	margin-left: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	margin-bottom: 1.5em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--black);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: var(--text-base);
    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);
}

.contentRender_name_plugins_core_textbox img {
	display: inline-block;
	max-width: 100%;
	margin-bottom: var(--space-4);
}

@media (hover: hover) {
	a:hover {
		text-decoration: underline;
	}

    :is(h1, h2, h3, h4, h5, h6) a:hover,
    :is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) a:hover,
    .ccl-widget :is(h1, h2, h3, h4, h5, h6) a:hover {
        font: inherit;
        color: inherit;
        text-decoration: none;
    }
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 4.6875rem;
        line-height: 0.933; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 2.5rem; 
        line-height: 1.05; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-weight: var(--font-weight-bold);
        font-size: 2.75rem; 
        line-height: 0.909; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 2.25rem; 
        line-height: 0.889; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 2rem; 
        line-height: 0.875; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
        font-size: 1.75rem; 
        line-height: 0.786; 
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: var(--text-lg); 
        line-height: 1.556; 
        margin-bottom: 1.5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
        margin-bottom: .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.556;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) table {
        margin-bottom: .5em;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
        font-size: var(--text-lg);
        line-height: 1.556;
    }
}