/**
 * Common CSS used for EBPs site layouts
 *
 * @author     Jeremy Conley
 */

body {
	font-family: var(--body_font_family);
	font-size: 1.125rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0.75rem 0;
}

a {
	color: var(--link_color_static);
}

a:hover {
	color: var(--link_color_hover);
}

/*
 * Header/Navigation
 */
header.page_header {
	background-color: var(--header_background_color);
}

header.page_header nav {
	height: 100%;
}

.mobile_menu_label {
	border: 1px solid var(--header_link_color_static);
	border-radius: 0.5rem;
	color: var(--header_link_color_static);
	cursor: pointer;
	display: block;
	font-size: 1.25rem;
	font-weight: bold;
	margin: 1rem 0;
	padding: 0.5rem 1rem;
	position: relative;
}

.mobile_menu_label::after {
	content: "\2261";
	font-size: 1.5rem;
	position: absolute;
	right: 1rem;
	top: 0;
}

input.mobile_menu_checkbox_trigger {
	position: absolute;
	top: -9999px;
	left: -9999px;
}

input.mobile_menu_checkbox_trigger:checked ~ ul {
	display: block;
}

header.page_header nav > ul {
	display: none;
}

header.page_header nav a {
	border-bottom: 2px solid transparent;
	color: var(--header_link_color_static);
	display: inline-block;
	padding: 0.5rem 0;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
}

header.page_header nav a:hover {
	color: var(--header_link_color_hover);
	border-bottom: 2px solid var(--header_link_color_hover);
}

header li.active a {
	border-bottom: 2px solid var(--header_link_color_static);
}

header nav li.active a:hover {
	border-bottom: 2px solid var(--header_link_color_hover);
}

/*
 * @@ Breadcrumbs
 */
.breadcrumb_container {
	background-color: var(--footer_background_color);
}

.breadcrumb {
	display: flex;
	color: var(--footer_link_color_static);
	font-size: 0.9rem;
}

.breadcrumb li {
	flex: 0 1 auto;
	padding: 0.25rem 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	content: '/';
	padding-right: 0.5rem;
}

.breadcrumb a {
	color: var(--footer_link_color_static);
}

/*
 * Footer
 */
footer.page_footer {
	background-color: var(--footer_background_color);
	color: var(--footer_link_color_static);
	font-weight: 300;
	text-align: center;
}

footer.page_footer a {
	color: var(--footer_link_color_static);
}

/*
 * Common Elements
 */
.btn.btn-primary {
	background-color: var(--primary_button_background_color_static);
	color: var(--primary_button_text_color_static);
}

.btn.btn-primary:hover {
	background-color: var(--primary_button_background_color_hover);
	color: var(--primary_button_text_color_hover);
}

.btn.btn-secondary {
	background-color: var(--secondary_button_background_color_static);
	color: var(--secondary_button_text_color_static);
}

.btn.btn-secondary:hover {
	background-color: var(--secondary_button_background_color_hover);
	color: var(--secondary_button_text_color_hover);
}

.fullwidth_callout {
	background-color: var(--fullwidth_callout_background_color);
	color: var(--fullwidth_callout_text_color);
}

.fullwidth_callout_content {
	font-size: 1.625rem;
	font-style: italic;
	padding: 1.5rem 0;
	margin: 2rem 0;
}

.card_container {
	padding: 0.25rem 0;
}

.card_icon {
	border-radius: 50%;
	margin: 1.5rem auto;
	padding: 1rem;
	width: 200px;
	height: 200px;
}

.card_outline {
	border: 1px solid #707070;
	border-radius: 1.25rem;
	margin-bottom: 1rem;
	padding: 1rem;
	text-align: center;
}

details summary {
	border: 1px solid #707070;
	border-radius: 0.5rem;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: bold;
	margin: 0.75rem 0 0 0;
	padding: 0.75rem 1rem;
}

details[open] summary {
	border-bottom: none;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.accordion_content {
	background-color: #F7F7F8;
	padding: 1rem 1rem 1rem 1rem;
	
	border-right: 1px solid #707070;
	border-bottom: 1px solid #707070;
	border-bottom-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
	border-left: 1px solid #707070;
}

.icon {
	vertical-align: middle;
}

/*
 * Page Specific Items
 */
.homepage_hero_banner_container {
	background: #000;
	color: #fff;
}

.homepage_hero_banner_mobile {
	background: #000;
	height: 300px;
}

.homepage_hero_banner_container h1 {
	font-size: 2rem;
}

.homepage_hero_content_container p {
	font-size: 1.25rem;
}

.homepage_hero_content_overlay {
	padding: 2rem 0;
}