/*
	Job Crusher - Modern Theme Stylesheet
	-------------------------------------
	Loaded INSTEAD of style.css on standard Genesis views
	(home / blog / archives / single posts / default pages).

	Pages using a custom page template (the sales pages) continue to
	load the legacy style.css and are not affected by this file.

	Version: 3.1.1
*/

/* # Table of Contents
	- Design Tokens
	- Reset & Base
	- Typography
	- WordPress Core Classes
	- Buttons
	- Forms
	- Tables
	- Structure & Layout
	- Site Header
	- Navigation
	- Call To Action Bar
	- Archive / Blog Intro
	- Entries (archive cards)
	- Entries (single)
	- Entry Meta
	- Pagination
	- Sidebar & Widgets
	- Before / After Entry Widgets
	- Comments
	- Footer Widgets
	- Site Footer
	- Third Party / Plugins
	- Media Queries
	- Print
---------------------------------------------------------------------------- */


/* # Design Tokens
---------------------------------------------------------------------------- */

:root {
	/* Brand — navy sampled from the JobCrusher wordmark */
	--jc-navy:        #1a0a5a;
	--jc-navy-dark:   #100637;
	--jc-navy-soft:   #2b1780;
	--jc-indigo:      #4a2fd6;
	--jc-indigo-dark: #3a21b5;

	/* Accent */
	--jc-accent:      #ef3b4d;
	--jc-accent-dark: #cf2038;

	/* Neutrals */
	--jc-ink:         #14152b;
	--jc-body:        #4c5069;
	--jc-muted:       #767b93;
	--jc-line:        #e5e7f0;
	--jc-line-soft:   #eef0f7;
	--jc-bg:          #f5f6fb;
	--jc-surface:     #ffffff;
	--jc-surface-alt: #fafbfe;

	/* Type */
	--jc-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--jc-font-head:   'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* Metrics */
	--jc-wrap:        1200px;
	--jc-gutter:      24px;
	--jc-radius:      14px;
	--jc-radius-sm:   8px;
	--jc-radius-pill: 999px;

	--jc-shadow-sm:   0 1px 2px rgba(20, 21, 43, .05), 0 1px 3px rgba(20, 21, 43, .06);
	--jc-shadow-md:   0 4px 12px rgba(20, 21, 43, .06), 0 12px 28px rgba(20, 21, 43, .07);
	--jc-shadow-lg:   0 8px 20px rgba(20, 21, 43, .08), 0 24px 48px rgba(20, 21, 43, .10);
}


/* # Reset & Base
---------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--jc-bg);
	color: var(--jc-body);
	font-family: var(--jc-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

img,
video {
	max-width: 100%;
	height: auto;
	border: 0;
}

figure {
	margin: 0;
}

iframe,
embed,
object {
	max-width: 100%;
}

hr {
	height: 0;
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--jc-line);
}

::selection {
	background: var(--jc-navy);
	color: #fff;
}


/* # Typography
---------------------------------------------------------------------------- */

a {
	color: var(--jc-indigo);
	text-decoration: none;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

a:hover,
a:focus {
	color: var(--jc-accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--jc-indigo);
	outline-offset: 2px;
}

p {
	margin: 0 0 1.4em;
}

p:last-child {
	margin-bottom: 0;
}

strong,
b {
	font-weight: 700;
	color: var(--jc-ink);
}

em,
cite,
i {
	font-style: italic;
}

mark,
ins {
	background: #fff4c2;
	color: var(--jc-ink);
	padding: 0 3px;
	text-decoration: none;
}

small {
	font-size: 85%;
}

abbr[title] {
	border-bottom: 1px dotted var(--jc-muted);
	cursor: help;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .55em;
	color: var(--jc-ink);
	font-family: var(--jc-font-head);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.015em;
}

h1 { font-size: 42px; font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: 32px; font-weight: 800; letter-spacing: -.02em; }
h3 { font-size: 25px; }
h4 { font-size: 21px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}

h1 a:hover, h2 a:hover, h3 a:hover,
h4 a:hover, h5 a:hover, h6 a:hover {
	color: var(--jc-indigo);
}

blockquote {
	margin: 32px 0;
	padding: 4px 0 4px 26px;
	border-left: 4px solid var(--jc-accent);
	color: var(--jc-ink);
	font-size: 1.08em;
	font-style: italic;
	line-height: 1.6;
}

blockquote cite {
	display: block;
	margin-top: 12px;
	color: var(--jc-muted);
	font-size: .85em;
	font-style: normal;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .9em;
}

code {
	padding: 2px 6px;
	border-radius: 5px;
	background: var(--jc-line-soft);
	color: var(--jc-navy);
}

pre {
	margin: 0 0 1.4em;
	padding: 20px 22px;
	overflow: auto;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background: var(--jc-surface-alt);
	line-height: 1.6;
	max-width: 100%;
}

pre code {
	padding: 0;
	background: none;
}

ul, ol {
	margin: 0 0 1.4em;
	padding: 0 0 0 1.4em;
}

ul ul,
ol ol,
ul ol,
ol ul {
	margin-bottom: 0;
}

li {
	margin-bottom: .4em;
}

dl {
	margin: 0 0 1.4em;
}

dt {
	font-weight: 700;
	color: var(--jc-ink);
}

dd {
	margin: 0 0 1em;
}


/* # WordPress Core Classes
---------------------------------------------------------------------------- */

.screen-reader-text,
.screen-reader-shortcut,
.genesis-sidebar-title,
.genesis-skip-link li {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.genesis-skip-link {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
	position: static !important;
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 14px 22px;
	clip: auto;
	background: var(--jc-navy);
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	z-index: 9999;
}

.alignleft {
	float: left;
	margin: 6px 28px 20px 0;
	text-align: left;
}

.alignright {
	float: right;
	margin: 6px 0 20px 28px;
	text-align: right;
}

.aligncenter {
	display: block;
	margin: 0 auto 24px;
	clear: both;
	text-align: center;
}

.alignnone {
	margin-bottom: 24px;
}

img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone,
.wp-caption img {
	border-radius: var(--jc-radius-sm);
}

.wp-caption {
	max-width: 100%;
	margin-bottom: 24px;
}

.wp-caption-text,
.entry-content p.wp-caption-text,
figcaption {
	margin: 10px 0 0;
	color: var(--jc-muted);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.sticky .entry-title::before {
	content: "\2605\00a0";
	color: var(--jc-accent);
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -6px 24px;
	overflow: hidden;
}

.gallery-item {
	margin: 0;
	padding: 6px;
	float: none;
	text-align: center;
}

.gallery-columns-1 .gallery-item { width: 100%; }
.gallery-columns-2 .gallery-item { width: 50%; }
.gallery-columns-3 .gallery-item { width: 33.33%; }
.gallery-columns-4 .gallery-item { width: 25%; }
.gallery-columns-5 .gallery-item { width: 20%; }
.gallery-columns-6 .gallery-item { width: 16.66%; }
.gallery-columns-7 .gallery-item { width: 14.28%; }
.gallery-columns-8 .gallery-item { width: 12.5%; }
.gallery-columns-9 .gallery-item { width: 11.11%; }

.gallery img {
	width: 100%;
	border-radius: var(--jc-radius-sm);
	transition: opacity .18s ease;
}

.gallery img:hover,
.gallery img:focus {
	opacity: .82;
}

.avatar {
	border-radius: 50%;
	float: left;
	margin-right: 18px;
}

.alignright .avatar,
.comment .avatar {
	margin: 0 18px 18px 0;
}

.clearfix::after,
.wrap::after,
.entry-content::after,
.site-inner::after,
.footer-widgets::after,
.content-sidebar-wrap::after {
	content: "";
	display: table;
	clear: both;
}


/* # Buttons
---------------------------------------------------------------------------- */

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.entry-content .button,
.more-link,
.jc-btn {
	display: inline-block;
	padding: 13px 26px;
	border: 0;
	border-radius: var(--jc-radius-pill);
	background-color: var(--jc-navy);
	color: #fff;
	font-family: var(--jc-font);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}

.button:hover,
.button:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.entry-content .button:hover,
.entry-content .button:focus,
.more-link:hover,
.more-link:focus,
.jc-btn:hover,
.jc-btn:focus {
	background-color: var(--jc-navy-soft);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--jc-shadow-md);
}

.jc-btn-accent,
input[type="submit"].jc-btn-accent {
	background-color: var(--jc-accent);
}

.jc-btn-accent:hover,
.jc-btn-accent:focus {
	background-color: var(--jc-accent-dark);
	color: #fff;
}

.jc-btn-lg {
	padding: 16px 32px;
	font-size: 16.5px;
}

.jc-btn-ghost {
	border: 1px solid rgba(255, 255, 255, .26);
	background-color: rgba(255, 255, 255, .07);
	color: #fff;
}

.jc-btn-ghost:hover,
.jc-btn-ghost:focus {
	border-color: rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .14);
	color: #fff;
}

button[disabled],
input[disabled] {
	cursor: not-allowed;
	opacity: .55;
}

/* Archive "read more" link */
.entry-more {
	margin-top: 18px;
}

.entry-more-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--jc-indigo);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
}

.entry-more-link::after {
	content: "\2192";
	transition: transform .18s ease;
}

.entry-more-link:hover::after,
.entry-more-link:focus::after {
	transform: translateX(4px);
}

/* The legacy inline [SEE MORE] link inside the content */
.entry-content .more-link {
	margin-left: 6px;
	padding: 7px 16px;
	font-size: 13px;
}


/* # Forms
---------------------------------------------------------------------------- */

input,
select,
textarea {
	font-family: var(--jc-font);
	font-size: 16px;
	color: var(--jc-ink);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
select,
textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background-color: #fff;
	line-height: 1.5;
	transition: border-color .18s ease, box-shadow .18s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--jc-indigo);
	box-shadow: 0 0 0 3px rgba(74, 47, 214, .14);
}

textarea {
	min-height: 160px;
	resize: vertical;
}

label {
	display: block;
	margin-bottom: 6px;
	color: var(--jc-ink);
	font-size: 15px;
	font-weight: 600;
}

fieldset {
	margin: 0 0 24px;
	padding: 20px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
}

legend {
	padding: 0 8px;
	font-weight: 700;
}

::placeholder {
	color: var(--jc-muted);
	opacity: 1;
}

/* Search form */
.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
}

.search-form input[type="submit"],
.widget_search input[type="submit"] {
	flex: 0 0 auto;
	padding: 12px 20px;
}

/* Contact Form 7 */
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px 18px;
	border-radius: var(--jc-radius-sm);
	border-width: 1px;
}

.wpcf7-not-valid-tip {
	color: var(--jc-accent-dark);
	font-size: 14px;
	font-weight: 600;
}


/* # Tables
---------------------------------------------------------------------------- */

table {
	width: 100%;
	margin-bottom: 32px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 15px;
}

thead th {
	background: var(--jc-surface-alt);
	color: var(--jc-ink);
	font-family: var(--jc-font-head);
	font-weight: 700;
	text-align: left;
}

th,
td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--jc-line);
	text-align: left;
	vertical-align: top;
}

tbody tr:hover {
	background: var(--jc-surface-alt);
}


/* # Structure & Layout
---------------------------------------------------------------------------- */

.site-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: clip;
}

.wrap {
	width: 100%;
	max-width: var(--jc-wrap);
	margin: 0 auto;
	padding-left: var(--jc-gutter);
	padding-right: var(--jc-gutter);
}

.site-inner {
	width: 100%;
	max-width: var(--jc-wrap);
	margin: 0 auto;
	padding: 56px var(--jc-gutter) 80px;
	flex: 1 0 auto;
}

/* Two column grid. Columns are placed explicitly rather than with `order`,
   which grid auto-placement does not reliably honour. */
.content-sidebar-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	align-items: start;
}

.content-sidebar-wrap > .content {
	grid-column: 1;
	grid-row: 1;
}

.content-sidebar-wrap > .sidebar-primary {
	grid-column: 2;
	grid-row: 1;
}

/* Sidebar on the left (the site default) */
.sidebar-content .content-sidebar-wrap {
	grid-template-columns: 320px minmax(0, 1fr);
}

.sidebar-content .content-sidebar-wrap > .content {
	grid-column: 2;
}

.sidebar-content .content-sidebar-wrap > .sidebar-primary {
	grid-column: 1;
}

.full-width-content .content-sidebar-wrap {
	display: block;
}

.full-width-content .content {
	max-width: none;
}

.full-width-content .sidebar-primary {
	display: none;
}

/* Long-form views keep a comfortable reading measure. The measure is applied
   to the article and its trailing blocks, not to .content, so full-width
   sections (the "Keep reading" grid) can still span the wrap. */
.single.full-width-content .content > .entry,
.single.full-width-content .content > .author-box,
.single.full-width-content .content > .entry-comments,
.single.full-width-content .content > .entry-pings,
.single.full-width-content .content > .comment-respond,
.single.full-width-content .content > .adjacent-entry-pagination,
.page.full-width-content .content > .entry,
.page.full-width-content .content > .entry-comments,
.page.full-width-content .content > .comment-respond,
.error404.full-width-content .content > .entry {
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
}

.content {
	min-width: 0;
}


/* # Site Header
---------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background-color: rgba(255, 255, 255, .92);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--jc-line);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header > .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.title-area {
	flex: 0 0 auto;
	margin: 0;
	max-width: 260px;
}

.site-title {
	margin: 0;
	font-size: 26px;
	font-family: var(--jc-font-head);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1;
}

.site-title a,
.site-title a:hover {
	color: var(--jc-navy);
	display: block;
}

.site-title img,
.site-title a.logo img {
	display: block;
	width: auto;
	max-height: 40px;
}

.site-description {
	margin: 4px 0 0;
	color: var(--jc-muted);
	font-size: 13px;
	font-weight: 500;
}

.header-image .site-description {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.site-header .widget-area {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.site-header .widget {
	margin: 0;
}

.site-header .widget-wrap {
	display: flex;
	align-items: center;
}

.site-header .widget-title {
	display: none;
}

.site-header .search-form {
	max-width: 240px;
}


/* # Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
}

.genesis-nav-menu li,
.genesis-nav-menu .menu-item {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	line-height: 1;
}

.genesis-nav-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: var(--jc-radius-pill);
	color: var(--jc-ink);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.005em;
	text-decoration: none;
	white-space: nowrap;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .current_page_item > a {
	background-color: var(--jc-line-soft);
	color: var(--jc-navy);
}

/* Highlighted / final CTA item */
.genesis-nav-menu .highlight-menu-item > a,
.genesis-nav-menu .jc-nav-cta > a {
	background-color: var(--jc-accent);
	color: #fff;
	padding-left: 20px;
	padding-right: 20px;
}

.genesis-nav-menu .highlight-menu-item > a:hover,
.genesis-nav-menu .jc-nav-cta > a:hover,
.genesis-nav-menu .highlight-menu-item > a:focus,
.genesis-nav-menu .jc-nav-cta > a:focus {
	background-color: var(--jc-accent-dark);
	color: #fff;
}

/* Dropdowns */
/* Kept on the classic Genesis/Superfish "off-canvas then snap back" pattern so
   the superfish script (which animates opacity inline) cannot leave a dropdown
   stuck invisible. */
.genesis-nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -9999px;
	z-index: 600;
	width: 230px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius);
	background: #fff;
	box-shadow: var(--jc-shadow-lg);
	opacity: 0;
	transition: opacity .16s ease;
}

.genesis-nav-menu .sub-menu .sub-menu {
	top: -8px;
	margin-left: 230px;
}

.genesis-nav-menu .menu-item:hover > .sub-menu,
.genesis-nav-menu .menu-item:focus-within > .sub-menu,
.genesis-nav-menu .menu-item.sfHover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu .sub-menu li {
	margin: 0;
	width: 100%;
}

.genesis-nav-menu .sub-menu a {
	padding: 9px 14px;
	border-radius: var(--jc-radius-sm);
	font-size: 14.5px;
	font-weight: 500;
	white-space: normal;
}

.nav-primary,
.nav-secondary {
	background: #fff;
	border-bottom: 1px solid var(--jc-line);
}

.nav-primary .wrap,
.nav-secondary .wrap {
	display: flex;
	justify-content: center;
}

/* Responsive menu toggle (created by js/responsive-menu.js) */
.responsive-menu-icon {
	display: none;
	width: 46px;
	height: 44px;
	margin-left: auto;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background: #fff;
	cursor: pointer;
	text-align: center;
}

.responsive-menu-icon::before {
	content: "\f333";
	display: block;
	color: var(--jc-navy);
	font: normal 22px/44px 'dashicons';
	-webkit-font-smoothing: antialiased;
}


/* # Call To Action Bar
---------------------------------------------------------------------------- */

.call-to-action {
	background: linear-gradient(100deg, var(--jc-navy) 0%, var(--jc-navy-soft) 55%, var(--jc-indigo) 100%);
	color: #fff;
}

.call-to-action > .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

.call-to-action .widget {
	margin: 0;
}

.call-to-action .widget-wrap,
.call-to-action .textwidget {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 16px;
}

.call-to-action p {
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.call-to-action strong,
.call-to-action b {
	color: #ffd166;
	font-weight: 800;
}

.call-to-action .widget-title,
.call-to-action .widgettitle {
	margin: 0;
	color: #fff;
	font-size: 18px;
}

.call-to-action a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.call-to-action a:hover {
	color: #ffd166;
}

/* Shortcodes Ultimate buttons dropped in the CTA bar */
.call-to-action .su-button,
.call-to-action a.su-button {
	background-color: var(--jc-accent) !important;
	border-color: var(--jc-accent-dark) !important;
	border-radius: var(--jc-radius-pill) !important;
	box-shadow: none !important;
	text-decoration: none;
	text-shadow: none !important;
	transition: background-color .18s ease, transform .18s ease;
}

.call-to-action .su-button:hover {
	background-color: var(--jc-accent-dark) !important;
	transform: translateY(-1px);
}

.call-to-action .su-button span {
	border: 0 !important;
	color: #fff !important;
	font-family: var(--jc-font) !important;
	font-weight: 700 !important;
	text-shadow: none !important;
}


/* # Hero, Section Headings, Topic Chips
---------------------------------------------------------------------------- */

.jc-hero {
	position: relative;
	overflow: hidden;
	background-color: #0d0430;
	background-image:
		radial-gradient(1100px 480px at 10% -20%, rgba(74, 47, 214, .55), transparent 62%),
		radial-gradient(900px 440px at 96% 4%, rgba(239, 59, 77, .32), transparent 62%),
		linear-gradient(162deg, #170b4e 0%, #0d0430 58%, #09031f 100%);
	color: #fff;
}

.jc-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 120px;
	background: linear-gradient(to bottom, transparent, rgba(245, 246, 251, .22));
	pointer-events: none;
}

.jc-hero > .wrap {
	position: relative;
	z-index: 1;
	max-width: 940px;
	padding-top: 84px;
	padding-bottom: 92px;
	text-align: center;
}

.jc-hero-eyebrow {
	display: inline-block;
	margin: 0 0 22px;
	padding: 7px 17px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: var(--jc-radius-pill);
	background: rgba(255, 255, 255, .07);
	color: #ffd166;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.jc-hero-title {
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(34px, 5.4vw, 62px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.03;
}

.jc-hero-sub {
	max-width: 60ch;
	margin: 0 auto 36px;
	color: rgba(255, 255, 255, .7);
	font-size: clamp(16.5px, 1.5vw, 20px);
	line-height: 1.6;
}

.jc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin: 0;
}

/* Section heading with a trailing rule */
.jc-section-title {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 24px;
	color: var(--jc-muted);
	font-family: var(--jc-font-head);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
	scroll-margin-top: 110px;
}

.jc-section-title::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--jc-line);
}

/* Page heading (listing page 2+, 404) */
.jc-page-head {
	margin-bottom: 40px;
}

.jc-page-head h1 {
	margin-bottom: 6px;
	font-size: clamp(30px, 4vw, 44px);
}

.jc-page-head p {
	margin: 0;
	color: var(--jc-muted);
}

/* Topic chips */
.jc-topics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin: 0 0 44px;
}

.jc-topics-label {
	margin-right: 6px;
	color: var(--jc-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.jc-topics ul {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jc-topics li {
	margin: 0;
}

.jc-topics a {
	display: block;
	padding: 8px 16px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-pill);
	background: var(--jc-surface);
	color: var(--jc-body);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.jc-topics a:hover,
.jc-topics a:focus {
	border-color: var(--jc-navy);
	background: var(--jc-navy);
	color: #fff;
}

/* Genesis archive title/description, and the author box */
.archive-description,
.author-box {
	margin-bottom: 40px;
	padding: 28px 30px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius);
	background: var(--jc-surface);
	box-shadow: var(--jc-shadow-sm);
}

.archive-title {
	margin-bottom: 8px;
	font-size: clamp(28px, 3.6vw, 40px);
}

.author-box-title {
	margin-bottom: 6px;
	font-size: 18px;
}

.author-box p:last-child {
	margin-bottom: 0;
}


/* # Entries — the card grid
---------------------------------------------------------------------------- */

/* auto-fit keeps the column count sensible at every width without a
   breakpoint for each step */
.jc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 410px), 1fr));
	gap: 30px;
	align-items: stretch;
}

.jc-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
	gap: 26px;
}

.content > .entry,
.jc-grid > .entry {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius);
	background: var(--jc-surface);
	box-shadow: var(--jc-shadow-sm);
	transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.jc-grid > .entry:hover {
	border-color: #d7dbec;
	box-shadow: var(--jc-shadow-md);
	transform: translateY(-3px);
}

.entry-image-wrap {
	position: relative;
	display: block;
	flex: 0 0 auto;
	overflow: hidden;
	background: var(--jc-line-soft);
	line-height: 0;
	font-size: 0;
}

.entry-image-wrap img {
	display: block;
	width: 100%;
	height: 212px;
	margin: 0;
	float: none;
	border-radius: 0;
	object-fit: cover;
	transition: transform .45s ease;
}

.jc-grid > .entry:hover .entry-image-wrap img {
	transform: scale(1.045);
}

.entry-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 24px 26px 26px;
}

.entry-body > .entry-header,
.entry-body > .entry-footer {
	margin: 0;
}

.entry-body > .entry-footer {
	margin-top: auto;
	padding-top: 16px;
}

.jc-grid .entry-title {
	margin-bottom: 12px;
	font-size: 21px;
	line-height: 1.26;
	letter-spacing: -.015em;
}

.jc-grid .entry-content {
	overflow: hidden;
}

.jc-grid .entry-content p {
	margin-bottom: 0;
	color: var(--jc-body);
	font-size: 15.5px;
	line-height: 1.62;
}

/* Cards show a teaser, never a whole post */
.jc-grid .entry-content > *:not(:first-child) {
	display: none;
}

.jc-grid .entry-content img,
.jc-grid .entry-content iframe,
.jc-grid .entry-content .wp-caption {
	display: none;
}

/* Lead story: spans the grid, image and copy side by side */
.jc-grid > .entry.entry-featured {
	grid-column: 1 / -1;
	flex-direction: row;
	align-items: stretch;
}

.jc-grid > .entry.entry-featured .entry-image-wrap {
	flex: 0 0 52%;
	max-width: 52%;
	min-height: 330px;
}

/* Taken out of flow so a tall image can never stretch the card (and a long
   card can never stretch the image). */
.jc-grid > .entry.entry-featured .entry-image-wrap img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.jc-grid > .entry.entry-featured .entry-body {
	justify-content: center;
	padding: 38px 40px;
}

.jc-grid > .entry.entry-featured .entry-title {
	font-size: clamp(25px, 2.5vw, 33px);
	line-height: 1.16;
	letter-spacing: -.028em;
}

.jc-grid > .entry.entry-featured .entry-content p {
	font-size: 17px;
	line-height: 1.68;
}

/* "Keep reading" block under a single post */
.jc-related {
	margin-top: 64px;
	padding-top: 8px;
}

.jc-related .entry-body {
	justify-content: flex-start;
}

.jc-grid-3 .entry-image-wrap img {
	height: 168px;
}

.jc-grid-3 .entry-title {
	font-size: 18px;
}

.jc-grid-3 .entry-body {
	padding: 20px 22px 22px;
}


/* # Entries — single post & pages
---------------------------------------------------------------------------- */

.single .content > .entry,
.page .content > .entry,
.error404 .content > .entry {
	display: block;
	padding: 40px 46px 46px;
	box-shadow: var(--jc-shadow-sm);
}

.single .content > .entry:hover,
.page .content > .entry:hover {
	transform: none;
}

.single .content > .entry > .entry-header .entry-title,
.page .content > .entry > .entry-header .entry-title,
.error404 .content > .entry .entry-title {
	margin-bottom: 14px;
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -.028em;
	line-height: 1.14;
}

.single .content > .entry > .entry-header,
.page .content > .entry > .entry-header {
	margin-bottom: 26px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--jc-line);
}

.single .content > .entry > .entry-image-wrap {
	max-width: none;
	margin: -40px -46px 34px;
	border-radius: 0;
}

.single .content > .entry > .entry-image-wrap img {
	height: 360px;
	min-height: 0;
}

.entry-content {
	font-size: 17.5px;
	line-height: 1.78;
}

.entry-content h2 { margin-top: 1.5em; font-size: 29px; }
.entry-content h3 { margin-top: 1.4em; font-size: 24px; }
.entry-content h4 { margin-top: 1.3em; font-size: 20px; }

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.3em;
}

.entry-content li {
	margin-bottom: .55em;
}

.entry-content a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.entry-content a:hover {
	text-decoration-color: var(--jc-accent);
}

.entry-content img {
	border-radius: var(--jc-radius-sm);
}

.entry-content .wp-video,
.entry-content .wp-block-embed,
.entry-content iframe {
	margin-bottom: 28px;
	max-width: 100%;
}


/* # Entry Meta
---------------------------------------------------------------------------- */

.entry-meta,
p.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin: 0;
	color: var(--jc-muted);
	font-size: 14px;
	font-weight: 500;
}

.entry-header .entry-meta {
	margin-bottom: 14px;
}

.single .content > .entry > .entry-header .entry-meta,
.page .content > .entry > .entry-header .entry-meta {
	margin: 0;
}

.entry-meta a {
	color: var(--jc-muted);
	font-weight: 600;
}

.entry-meta a:hover {
	color: var(--jc-indigo);
}

.jc-cat-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--jc-radius-pill);
	background: rgba(74, 47, 214, .09);
	color: var(--jc-indigo) !important;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	line-height: 1.6;
}

.jc-cat-badge:hover {
	background: var(--jc-indigo);
	color: #fff !important;
}

.jc-meta-sep {
	color: #c3c7da;
}

.entry-footer .entry-meta {
	margin-top: 0;
}

.single .content > .entry > .entry-footer {
	margin-top: 32px;
	padding-top: 22px;
	border-top: 1px solid var(--jc-line);
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}


/* # Pagination
---------------------------------------------------------------------------- */

.archive-pagination,
.pagination {
	margin: 36px 0 0;
	clear: both;
}

.archive-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.archive-pagination li {
	margin: 0;
	float: none;
}

.archive-pagination li a,
.archive-pagination li.pagination-omission {
	display: block;
	min-width: 42px;
	padding: 10px 14px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background: #fff;
	color: var(--jc-body);
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

.archive-pagination li a:hover,
.archive-pagination li a:focus {
	border-color: var(--jc-navy);
	background: var(--jc-navy);
	color: #fff;
}

.archive-pagination li.active a {
	border-color: var(--jc-navy);
	background: var(--jc-navy);
	color: #fff;
}

.archive-pagination li.pagination-omission {
	color: var(--jc-muted);
	border-color: transparent;
	background: transparent;
}

.adjacent-entry-pagination {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 32px 0 0;
	font-weight: 600;
}


/* # Sidebar & Widgets
---------------------------------------------------------------------------- */

.sidebar {
	min-width: 0;
	font-size: 15.5px;
}

.sidebar-primary {
	position: sticky;
	top: 100px;
}

.sidebar .widget {
	margin-bottom: 22px;
	padding: 24px 24px 26px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius);
	background: var(--jc-surface);
	box-shadow: var(--jc-shadow-sm);
	word-wrap: break-word;
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.widget-title,
.widgettitle {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--jc-line-soft);
	color: var(--jc-ink);
	font-family: var(--jc-font-head);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.widget-title a {
	color: inherit;
}

.sidebar ul,
.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Scoped to the sidebar on purpose: the header nav also lives inside a
   widget, and these paddings would stagger the menu items. */
.sidebar .widget li {
	margin: 0;
	padding: 9px 0;
	border-bottom: 1px solid var(--jc-line-soft);
	line-height: 1.45;
}

.sidebar .widget li:first-child {
	padding-top: 0;
}

.sidebar .widget li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sidebar .widget li a {
	color: var(--jc-body);
	font-weight: 500;
}

.sidebar .widget li a:hover {
	color: var(--jc-indigo);
}

.sidebar li li {
	padding-left: 14px;
	border-bottom: 0;
}

.sidebar .widget_recent_entries li a {
	color: var(--jc-ink);
	font-weight: 600;
}

.widget select {
	width: 100%;
}

.widget_calendar table {
	font-size: 14px;
}

.widget_calendar th,
.widget_calendar td {
	padding: 6px;
	text-align: center;
}

/* Long category lists stay usable */
.sidebar .widget_categories ul,
.sidebar .widget_archive ul {
	max-height: 420px;
	overflow-y: auto;
	padding-right: 4px;
	scrollbar-width: thin;
}

.sidebar .widget_categories ul::-webkit-scrollbar,
.sidebar .widget_archive ul::-webkit-scrollbar {
	width: 6px;
}

.sidebar .widget_categories ul::-webkit-scrollbar-thumb,
.sidebar .widget_archive ul::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: #d6d9e8;
}

.sidebar .textwidget img {
	border-radius: var(--jc-radius-sm);
}

/* Genesis eNews Extended */
.enews-widget input {
	margin-bottom: 10px;
}

.enews-widget input[type="submit"] {
	width: 100%;
	background-color: var(--jc-accent);
}


/* # Before / After Entry & Before Footer widgets
---------------------------------------------------------------------------- */

.before-entry,
.after-entry {
	margin: 0 0 26px;
	padding: 22px 24px;
	border: 1px solid var(--jc-line);
	border-left: 4px solid var(--jc-accent);
	border-radius: var(--jc-radius-sm);
	background: var(--jc-surface-alt);
}

.after-entry {
	margin: 32px 0 0;
}

.before-entry .widget,
.after-entry .widget {
	margin: 0;
}

.before-entry .wrap,
.after-entry .wrap {
	max-width: none;
	padding: 0;
}

/* Holds the white JobCrusher mark, so it reads as the top of the footer */
.before-footer {
	background: var(--jc-navy-dark);
	color: rgba(255, 255, 255, .72);
	text-align: center;
}

.before-footer > .wrap {
	padding-top: 40px;
	padding-bottom: 4px;
}

.before-footer .widget {
	margin: 0;
}

.before-footer img {
	display: inline-block;
	width: auto;
	max-height: 34px;
}

.before-footer a {
	color: rgba(255, 255, 255, .8);
}

.before-footer a:hover {
	color: #fff;
}

.before-footer + .footer-widgets {
	padding-top: 38px;
}


/* # Comments
---------------------------------------------------------------------------- */

.entry-comments,
.comment-respond,
.entry-pings {
	margin-top: 26px;
	padding: 32px 34px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius);
	background: var(--jc-surface);
	box-shadow: var(--jc-shadow-sm);
}

.comment-respond h3,
.entry-comments h3,
.entry-pings h3 {
	margin-bottom: 20px;
	font-size: 22px;
}

.comment-list,
.comment-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list li {
	margin: 0 0 18px;
	padding: 20px 22px;
	border: 1px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background: var(--jc-surface-alt);
}

.comment-list li li {
	margin: 18px 0 0 22px;
	background: #fff;
}

.comment-header {
	margin-bottom: 10px;
	color: var(--jc-muted);
	font-size: 14px;
}

.comment-header .comment-author {
	color: var(--jc-ink);
	font-weight: 700;
}

.comment-content {
	clear: both;
}

.comment-reply-link,
.comment-meta a {
	font-size: 14px;
	font-weight: 600;
}

.comment-respond label {
	margin-bottom: 8px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
	margin-bottom: 18px;
}

.form-allowed-tags {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	font-weight: 400;
}


/* # Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	flex: 0 0 auto;
	padding: 58px 0 44px;
	background: var(--jc-navy-dark);
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
}

.footer-widgets > .wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
}

.footer-widgets .widget-area {
	min-width: 0;
	width: auto;
	float: none;
}

.footer-widgets .widget {
	margin-bottom: 30px;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets .widget-title,
.footer-widgets .widgettitle {
	margin-bottom: 16px;
	padding-bottom: 0;
	border: 0;
	color: #fff;
	font-size: 13px;
	letter-spacing: .12em;
}

.footer-widgets p {
	color: rgba(255, 255, 255, .72);
}

.footer-widgets a,
.footer-widgets .widget li a,
.footer-widgets .widget_recent_entries li a {
	color: rgba(255, 255, 255, .78);
	font-weight: 500;
}

.footer-widgets a:hover,
.footer-widgets a:focus,
.footer-widgets .widget li a:hover,
.footer-widgets .widget li a:focus {
	color: #fff;
}

.footer-widgets ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widgets li {
	margin: 0;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	line-height: 1.45;
}

.footer-widgets li:last-child {
	border-bottom: 0;
}

.footer-widgets .widget_nav_menu li {
	border-bottom: 0;
	padding: 5px 0;
}

.footer-widgets img {
	border-radius: var(--jc-radius-sm);
	max-width: 100%;
	height: auto;
}

.footer-widgets input[type="text"],
.footer-widgets input[type="email"] {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .16);
	color: #fff;
}

.footer-widgets .button,
.footer-widgets input[type="submit"] {
	background-color: var(--jc-accent);
}


/* # Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	flex: 0 0 auto;
	padding: 22px 0;
	background: #0a0425;
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
	text-align: center;
}

.site-footer .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 18px;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	color: rgba(255, 255, 255, .78);
}

.site-footer a:hover {
	color: #fff;
}


/* # Third Party / Plugins
---------------------------------------------------------------------------- */

/* Slide-in plugin box — keep it from covering the content edge */
.wdsi-slide {
	z-index: 400;
}

/* Shortcodes Ultimate buttons in content */
.entry-content .su-button {
	border-radius: var(--jc-radius-pill) !important;
	box-shadow: none !important;
	text-decoration: none;
}

.entry-content .su-button span {
	border: 0 !important;
	text-shadow: none !important;
}

/* Shareaholic */
.entry-content .shareaholic-share-buttons-container {
	margin-bottom: 20px;
}


/* # Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 1100px) {

	:root {
		--jc-gutter: 20px;
	}

	.content-sidebar-wrap,
	.sidebar-content .content-sidebar-wrap {
		gap: 32px;
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.content-sidebar .content-sidebar-wrap {
		grid-template-columns: minmax(0, 1fr) 280px;
	}

	.jc-grid > .entry.entry-featured .entry-body {
		padding: 30px 30px;
	}

	.single .content > .entry,
	.page .content > .entry {
		padding: 32px 32px 36px;
	}

	.single .content > .entry > .entry-image-wrap {
		margin: -32px -32px 28px;
	}

	.single .content > .entry > .entry-header .entry-title,
	.page .content > .entry > .entry-header .entry-title {
		font-size: 34px;
	}
}

@media only screen and (max-width: 800px) {

	.jc-grid > .entry.entry-featured {
		flex-direction: column;
	}

	.jc-grid > .entry.entry-featured .entry-image-wrap {
		flex: 0 0 auto;
		max-width: none;
	}

	.jc-grid > .entry.entry-featured .entry-image-wrap {
		min-height: 0;
	}

	.jc-grid > .entry.entry-featured .entry-image-wrap img {
		position: static;
		inset: auto;
		height: 260px;
	}
}

@media only screen and (max-width: 960px) {

	body {
		font-size: 16.5px;
	}

	.site-inner {
		padding-top: 32px;
		padding-bottom: 48px;
	}

	/* Sidebar drops below the content */
	.content-sidebar-wrap,
	.sidebar-content .content-sidebar-wrap,
	.content-sidebar .content-sidebar-wrap {
		display: block;
	}

	.sidebar-primary {
		position: static;
		margin-top: 44px;
	}

	.sidebar .widget_categories ul,
	.sidebar .widget_archive ul {
		max-height: none;
	}

	.footer-widgets > .wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px;
	}
}

@media only screen and (max-width: 860px) {

	/* Collapsed nav — js/responsive-menu.js toggles the list */
	.responsive-menu-icon {
		display: block;
	}

	.site-header > .wrap {
		min-height: 66px;
	}

	.site-header .widget-area {
		position: static;
	}

	.site-header .widget-wrap {
		display: block;
	}

	.genesis-nav-menu.responsive-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 550;
		padding: 10px var(--jc-gutter) 18px;
		border-top: 1px solid var(--jc-line);
		background: #fff;
		box-shadow: var(--jc-shadow-lg);
	}

	.genesis-nav-menu.responsive-menu .menu-item {
		display: block;
		width: 100%;
		border-bottom: 1px solid var(--jc-line-soft);
	}

	.genesis-nav-menu.responsive-menu .menu-item:last-child {
		border-bottom: 0;
	}

	.genesis-nav-menu.responsive-menu a {
		padding: 14px 4px;
		border-radius: 0;
		font-size: 16px;
	}

	.genesis-nav-menu.responsive-menu .highlight-menu-item > a,
	.genesis-nav-menu.responsive-menu .jc-nav-cta > a {
		margin: 10px 0;
		border-radius: var(--jc-radius-pill);
		text-align: center;
	}

	.genesis-nav-menu.responsive-menu .sub-menu {
		display: none;
		position: static;
		left: auto;
		width: 100%;
		margin-left: 0;
		padding: 0 0 8px 14px;
		border: 0;
		box-shadow: none;
		opacity: 1;
	}

	.genesis-nav-menu.responsive-menu .menu-item:hover > .sub-menu,
	.genesis-nav-menu.responsive-menu .menu-item:focus-within > .sub-menu {
		display: none;
	}

	.genesis-nav-menu.responsive-menu .menu-open > .sub-menu {
		display: block;
	}

	.genesis-nav-menu.responsive-menu .menu-item-has-children > a::after {
		content: " \25be";
		color: var(--jc-muted);
	}
}

@media only screen and (max-width: 680px) {

	:root {
		--jc-gutter: 16px;
		--jc-radius: 12px;
	}

	body {
		font-size: 16px;
	}

	h1 { font-size: 30px; }
	h2 { font-size: 25px; }
	h3 { font-size: 21px; }

	.site-title img,
	.site-title a.logo img {
		max-height: 30px;
	}

	.call-to-action > .wrap {
		padding-top: 13px;
		padding-bottom: 13px;
	}

	.call-to-action p {
		font-size: 15px;
	}

	.entry-image-wrap img,
	.jc-grid > .entry.entry-featured .entry-image-wrap img {
		position: static;
		inset: auto;
		height: 190px;
		min-height: 0;
	}

	.entry-body,
	.jc-grid > .entry.entry-featured .entry-body {
		padding: 20px 20px 22px;
	}

	.jc-grid .entry-title,
	.jc-grid > .entry.entry-featured .entry-title {
		font-size: 20px;
	}

	.jc-hero > .wrap {
		padding-top: 56px;
		padding-bottom: 62px;
	}

	.jc-btn-lg {
		width: 100%;
		padding: 15px 24px;
	}

	.single .content > .entry,
	.page .content > .entry,
	.error404 .content > .entry {
		padding: 24px 20px 28px;
	}

	.single .content > .entry > .entry-image-wrap {
		margin: -24px -20px 22px;
	}

	.single .content > .entry > .entry-image-wrap img {
		height: 210px;
	}

	.single .content > .entry > .entry-header .entry-title,
	.page .content > .entry > .entry-header .entry-title {
		font-size: 27px;
	}

	.entry-content {
		font-size: 17px;
	}

	.jc-archive-intro h1 {
		font-size: 28px;
	}

	.entry-comments,
	.comment-respond,
	.entry-pings {
		padding: 22px 20px;
	}

	.alignleft,
	.alignright {
		float: none;
		display: block;
		margin: 0 auto 22px;
	}

	.footer-widgets > .wrap {
		grid-template-columns: minmax(0, 1fr);
	}

	.sidebar .widget {
		padding: 20px;
	}
}


/* # Print
---------------------------------------------------------------------------- */

@media print {

	body {
		background: #fff !important;
		color: #000;
		font-size: 12pt;
	}

	.site-header,
	.call-to-action,
	.sidebar,
	.footer-widgets,
	.site-footer,
	.archive-pagination,
	.before-entry,
	.after-entry,
	.comment-respond,
	.wdsi-slide,
	.responsive-menu-icon {
		display: none !important;
	}

	.content-sidebar-wrap,
	.sidebar-content .content-sidebar-wrap {
		display: block !important;
	}

	.content > .entry {
		border: 0 !important;
		box-shadow: none !important;
		padding: 0 !important;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 90%;
	}

	a[href^="#"]::after,
	a[href^="javascript"]::after {
		content: "";
	}
}
