/* Author Dependencies */
/**
 * /assets/scss/partials/base/mixins.scss
 *
 * Let's define our universal mixins for use throughout the theme
 */
/**
 * Base text styles
 */
body,
p,
select,
textarea,
input,
button {
  height: auto;
  min-height: auto;
  color: var(--wp--preset--color--main);
  font-size: var(--wp--custom--font-size--body-default);
  line-height: var(--wp--custom--line-height--normal);
  font-weight: 400;
}

/**
 * Base button styles
 */
.wp-block-search__button, .wp-block-button__link, .archive-pager .facetwp-facet button, input[type=button],
input[type=button][disabled]:hover,
input[type=button][disabled]:focus,
input[type=reset],
input[type=reset][disabled]:hover,
input[type=reset][disabled]:focus,
input[type=submit],
input[type=submit][disabled]:hover,
input[type=submit][disabled]:focus,
.claim-search button,
button.gform_button,
button.gform-button {
  display: inline-block;
  padding: 11px 16px;
  height: auto;
  border: 1px solid var(--wp--preset--color--primary);
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  border-radius: 8px;
}
.wp-block-search__button:hover, .wp-block-button__link:hover, .archive-pager .facetwp-facet button:hover, input[type=button]:hover,
input[type=button][disabled]:hover,
input[type=reset]:hover,
input[type=reset][disabled]:hover,
input[type=submit]:hover,
input[type=submit][disabled]:hover,
.claim-search button:hover,
button.gform_button:hover,
button.gform-button:hover, .wp-block-search__button:focus, .wp-block-button__link:focus, .archive-pager .facetwp-facet button:focus, input[type=button]:focus,
input[type=button][disabled]:focus,
input[type=reset]:focus,
input[type=reset][disabled]:focus,
input[type=submit]:focus,
input[type=submit][disabled]:focus,
.claim-search button:focus,
button.gform_button:focus,
button.gform-button:focus {
  border-color: var(--wp--preset--color--main);
  background: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  text-decoration: none;
}

/**
 * Label styles
 */
.wp-block-search__label, .gform_wrapper .gfield_label {
  width: 100%;
  text-align: left;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
  font-size: var(--wp--custom--forms--font-size);
}

/**
 * Transitions
 */
.block-editor-block-list__layout .wp-block-image.is-style-hide-desktop, .social-media__link svg, .nav-primary > ul.menu > .menu-item > .sub-menu, .archive-header.archive-header--category a.category-home-link svg,
.archive-header.archive-header--category a.category-home-link svg path, a, button,
input:focus,
input[type=button],
input[type=reset],
input[type=submit],
textarea:focus,
.button,
.gallery img {
  transition: all 0.2s ease-in-out;
}

/**
 * Placeholder Color
 */
/**
 * Media queries
 */
/**
 * /assets/scss/partials/base/buttons.scss
 *
 * Let's define our button styles
 */
/**
 * /assets/scss/partials/base/headings.scss
 *
 * Let's define our heading styles
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--wp--preset--color--main);
  font-family: var(--wp--preset--font-family--secondary-font);
  line-height: var(--wp--custom--line-height--tiny);
  font-weight: 800;
}
h1:not(.has-text-color) a,
h2:not(.has-text-color) a,
h3:not(.has-text-color) a,
h4:not(.has-text-color) a,
h5:not(.has-text-color) a,
h6:not(.has-text-color) a {
  color: var(--wp--preset--color--main);
}
h1:not(.has-text-color) a:hover,
h2:not(.has-text-color) a:hover,
h3:not(.has-text-color) a:hover,
h4:not(.has-text-color) a:hover,
h5:not(.has-text-color) a:hover,
h6:not(.has-text-color) a:hover {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
h1.alignwide, h1.alignfull,
h2.alignwide,
h2.alignfull,
h3.alignwide,
h3.alignfull,
h4.alignwide,
h4.alignfull,
h5.alignwide,
h5.alignfull,
h6.alignwide,
h6.alignfull {
  margin-bottom: var(--wp--custom--spacing--block-gap);
}
.single .entry-content > h1:not(:first-child),
.single .entry-content > h2:not(:first-child),
.single .entry-content > h3:not(:first-child),
.single .entry-content > h4:not(:first-child),
.single .entry-content > h5:not(:first-child),
.single .entry-content > h6:not(:first-child) {
  margin-top: var(--wp--preset--spacing--large);
}

h1 {
  font-size: var(--wp--preset--font-size--font-size-10);
}

h2 {
  font-size: var(--wp--preset--font-size--font-size-9);
}

h3 {
  font-size: var(--wp--preset--font-size--font-size-8);
}

h4 {
  font-size: var(--wp--preset--font-size--font-size-7);
}

h5 {
  font-size: var(--wp--preset--font-size--font-size-6);
}

h6 {
  font-size: var(--wp--preset--font-size--font-size-5);
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Add default smooth scroll
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth; /* 3 */
  }
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Remove default padding and background from 'mark' elements
 */
mark {
  padding: 0;
  background-color: transparent;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -moz-appearance: textfield;
       appearance: textfield;
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * /assets/scss/partials/base/typography.scss
 *
 * Let's define our global typography styles
 */
a {
  background-color: transparent;
}
a:hover {
  text-decoration: underline;
  color: var(--wp--preset--color--primary);
}
a[href^=tel], a[href^=tel]:hover {
  color: var(--wp--preset--color--main);
}
.entry-content a {
  color: inherit;
}

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

b,
strong {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

code {
  padding: 0.125em 0.25em;
  background-color: var(--wp--custom--color--neutral-3);
}

pre {
  margin: 0 0 1.75em;
  padding: 1.75em;
  max-width: 100%;
  border: 1px solid var(--wp--custom--color--neutral-3);
  line-height: 1.3125;
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * /assets/scss/partials/base/universal.scss
 *
 * Let's define our universal styles
 *
 * - Universal
 * - Box Sizing
 * - Common Classes
 * - Accessibility
 * - Breadcrumbs
 */
/* ----- Universal ---------------------- */
:root {
  --wp--style--block-gap: var(--wp--custom--spacing--block-gap);
  --gallery-block--gutter-size: var(--wp--custom--spacing--column-gap);
}
@media (max-width: 768px) {
  :root {
    --gallery-block--gutter-size: calc(var(--wp--custom--spacing--column-gap) * 0.75);
  }
}
@media (max-width: 600px) {
  :root {
    --gallery-block--gutter-size: calc(var(--wp--custom--spacing--column-gap) * 0.5);
  }
}

svg:not(:root) {
  overflow: hidden;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

/* ----- Box Sizing -------------------- */
html,
input[type=search] {
  box-sizing: border-box;
}

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

/* ----- Common Classes -------------------- */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

@media (max-width: 1000px) {
  .hide-under-1000 {
    display: none;
  }
}
@media (min-width: 1001px) {
  .hide-over-1000 {
    display: none;
  }
}
@media (max-width: 950px) {
  .hide-under-950 {
    display: none !important;
  }
}
.responsive-embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----- Accessibility -------------------- */
.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type=submit]:focus {
  display: block;
  clip: auto !important;
  height: auto;
  width: auto;
  padding: 15px 23px 14px;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  background: #fff;
  z-index: 100000; /* Above WP toolbar. */
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

.more-link {
  position: relative;
}

/* ----- Breadcrumbs -------------------- */
p#breadcrumbs {
  margin-top: 0;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  p#breadcrumbs {
    font-size: var(--wp--preset--font-size--font-size-3);
  }
}
p#breadcrumbs > span {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: var(--wp--preset--color--background-2);
  flex-wrap: wrap;
}
p#breadcrumbs > span > span {
  display: flex;
  align-items: center;
}
p#breadcrumbs > span > span a {
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
p#breadcrumbs > span > span a:hover, p#breadcrumbs > span > span a:focus {
  text-decoration: underline;
}
p#breadcrumbs .breadcrumb_last {
  color: var(--wp--preset--color--background-3);
  font-weight: 800;
}

.home-breadcrumb {
  width: 24px;
  height: 24px;
  color: rgba(0, 0, 0, 0);
  overflow: hidden;
  background-image: url("../images/icons/icon-home.svg");
  background-size: 24px 24px;
  background-position: center;
  display: inline-block;
}
@media (max-width: 600px) {
  .home-breadcrumb {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
}

/**
 * /assets/scss/partials/layouts/dark-mode.scss
 *
 * Let's define our dark mode styles
 *
 */
.wd-dark-mode {
  display: none !important;
}

@media (prefers-color-scheme: dark) {
  :root :where(body) {
    background-color: var(--wp--preset--color--main);
    color: white;
  }
  :root :where(body) h1,
  :root :where(body) h2,
  :root :where(body) h3,
  :root :where(body) h4,
  :root :where(body) h5,
  :root :where(body) h6,
  :root :where(body) p,
  :root :where(body) .entry-content li {
    color: white;
  }
  :root :where(body) h1 a:not(.has-text-color),
  :root :where(body) h2 a:not(.has-text-color),
  :root :where(body) h3 a:not(.has-text-color),
  :root :where(body) h4 a:not(.has-text-color),
  :root :where(body) h5 a:not(.has-text-color),
  :root :where(body) h6 a:not(.has-text-color),
  :root :where(body) p a:not(.has-text-color),
  :root :where(body) .entry-content li a:not(.has-text-color) {
    color: white;
  }
  :root :where(body) h1.has-background-color.has-text-color,
  :root :where(body) h2.has-background-color.has-text-color,
  :root :where(body) h3.has-background-color.has-text-color,
  :root :where(body) h4.has-background-color.has-text-color,
  :root :where(body) h5.has-background-color.has-text-color,
  :root :where(body) h6.has-background-color.has-text-color,
  :root :where(body) p.has-background-color.has-text-color,
  :root :where(body) .entry-content li.has-background-color.has-text-color {
    color: var(--wp--preset--color--main) !important;
  }
  :root :where(body) h1.has-color.has-primary-color,
  :root :where(body) h1 > *.has-color.has-primary-color,
  :root :where(body) h2.has-color.has-primary-color,
  :root :where(body) h2 > *.has-color.has-primary-color,
  :root :where(body) h3.has-color.has-primary-color,
  :root :where(body) h3 > *.has-color.has-primary-color,
  :root :where(body) h4.has-color.has-primary-color,
  :root :where(body) h4 > *.has-color.has-primary-color,
  :root :where(body) h5.has-color.has-primary-color,
  :root :where(body) h5 > *.has-color.has-primary-color,
  :root :where(body) h6.has-color.has-primary-color,
  :root :where(body) h6 > *.has-color.has-primary-color,
  :root :where(body) p.has-color.has-primary-color,
  :root :where(body) p > *.has-color.has-primary-color,
  :root :where(body) .entry-content li.has-color.has-primary-color,
  :root :where(body) .entry-content li > *.has-color.has-primary-color {
    color: var(--wp--preset--color--tertiary) !important;
  }
  :root :where(body) a:where(:not(.wp-element-button)),
  :root :where(body) .menu-overlay__menu-section-header,
  :root :where(body) .nav-primary > ul.menu > .menu-item a:hover,
  :root :where(body) .nav-primary > ul.menu > .menu-item a:focus,
  :root :where(body) .nav-primary > ul.menu > .menu-item:hover,
  :root :where(body) .loop-item__author a:hover,
  :root :where(body) .loop-item__author a:focus,
  :root :where(body) .block-related-posts > h2 {
    color: var(--wp--preset--color--tertiary);
  }
  :root :where(body) .loop-item.loop-item--stub .loop-item__excerpt p a {
    color: #fff;
  }
  :root :where(body) .menu-overlay__menu-section-header,
  :root :where(body) .wp-block-quote {
    border-color: var(--wp--preset--color--tertiary);
  }
  :root :where(body) .site-prefooter span.has-color.has-primary-color {
    color: var(--wp--preset--color--tertiary) !important;
  }
  :root :where(body) .menu--footer li:not(:last-child) {
    border-color: var(--wp--preset--color--tertiary);
  }
  :root :where(body) .entry-content ul li::marker,
  :root :where(body) .site-prefooter,
  :root :where(body) .site-footer__form-header,
  :root :where(body) .menu-overlay__menu-link,
  :root :where(body) .nav-primary > ul.menu > .menu-item a,
  :root :where(body) .wp-block-search__label,
  :root :where(body) .gform_wrapper .gfield_label {
    color: white;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 600px) {
  :root :where(body) .menu-overlay__menu-links {
    border-color: var(--wp--preset--color--main);
  }
  :root :where(body) .menu-overlay__menu-link {
    background-color: rgba(255, 255, 255, 0.1);
  }
  :root :where(body) .menu-overlay__menu-link:not(:last-child) {
    border-color: var(--wp--preset--color--main);
  }
}
@media (prefers-color-scheme: dark) {
  :root :where(body) .menu--footer li a,
  :root :where(body) .menu--terms li a {
    color: white !important;
  }
  :root :where(body) .wp-block-search__button,
  :root :where(body) .wp-block-button__link,
  :root :where(body) .archive-pager .facetwp-facet button,
  :root :where(body) input[type=button],
  :root :where(body) input[type=button][disabled]:hover,
  :root :where(body) input[type=button][disabled]:focus,
  :root :where(body) input[type=reset],
  :root :where(body) input[type=reset][disabled]:hover,
  :root :where(body) input[type=reset][disabled]:focus,
  :root :where(body) input[type=submit],
  :root :where(body) input[type=submit][disabled]:hover,
  :root :where(body) input[type=submit][disabled]:focus,
  :root :where(body) .claim-search button,
  :root :where(body) button.gform_button,
  :root :where(body) button.gform-button {
    color: var(--wp--preset--color--main) !important;
    background-color: var(--wp--preset--color--tertiary) !important;
    border-color: var(--wp--preset--color--tertiary) !important;
  }
  :root :where(body) .wp-block-search__button:hover, :root :where(body) .wp-block-search__button:focus,
  :root :where(body) .wp-block-button__link:hover,
  :root :where(body) .wp-block-button__link:focus,
  :root :where(body) .archive-pager .facetwp-facet button:hover,
  :root :where(body) .archive-pager .facetwp-facet button:focus,
  :root :where(body) input[type=button]:hover,
  :root :where(body) input[type=button]:focus,
  :root :where(body) input[type=button][disabled]:hover:hover,
  :root :where(body) input[type=button][disabled]:hover:focus,
  :root :where(body) input[type=button][disabled]:focus:hover,
  :root :where(body) input[type=button][disabled]:focus:focus,
  :root :where(body) input[type=reset]:hover,
  :root :where(body) input[type=reset]:focus,
  :root :where(body) input[type=reset][disabled]:hover:hover,
  :root :where(body) input[type=reset][disabled]:hover:focus,
  :root :where(body) input[type=reset][disabled]:focus:hover,
  :root :where(body) input[type=reset][disabled]:focus:focus,
  :root :where(body) input[type=submit]:hover,
  :root :where(body) input[type=submit]:focus,
  :root :where(body) input[type=submit][disabled]:hover:hover,
  :root :where(body) input[type=submit][disabled]:hover:focus,
  :root :where(body) input[type=submit][disabled]:focus:hover,
  :root :where(body) input[type=submit][disabled]:focus:focus,
  :root :where(body) .claim-search button:hover,
  :root :where(body) .claim-search button:focus,
  :root :where(body) button.gform_button:hover,
  :root :where(body) button.gform_button:focus,
  :root :where(body) button.gform-button:hover,
  :root :where(body) button.gform-button:focus {
    background-color: var(--wp--preset--color--primary) !important;
    border-color: var(--wp--preset--color--primary) !important;
  }
  :root :where(body) .loop-item__comment-count,
  :root :where(body) .loop-item__date,
  :root :where(body) .block-email-subscribe__under-form p,
  :root :where(body) .block-email-subscribe__under-form p a,
  :root :where(body) .site-footer__form-disclaimer,
  :root :where(body) .site-footer__form-disclaimer a {
    color: #54606b !important;
  }
  :root :where(body) .loop-item__comment-count,
  :root :where(body) .block-area.block-area-home-middle,
  :root :where(body) .home-top,
  :root :where(body) .loop-item,
  :root :where(body) .social-media.social-media--footer,
  :root :where(body) .menu--footer {
    border-color: #54606b;
  }
  :root :where(body) .site-header__menu-toggle svg path,
  :root :where(body) .site-header__mode-toggle svg path {
    fill: #fff;
  }
  :root :where(body) .site-header__left .wp-block-buttons .wp-block-button .wp-block-button__link {
    color: #fff !important;
    background-color: transparent !important;
  }
  :root :where(body) .site-header__search-toggle svg path {
    fill: var(--wp--preset--color--tertiary);
  }
  :root :where(body) .loop-wrapper-sidebar .loop-item__large-comments span {
    background-color: var(--wp--preset--color--tertiary);
    color: var(--wp--preset--color--main);
  }
  :root :where(body) .loop-wrapper-sidebar .loop-item__large-comments span::after {
    background-image: url("../images/icons/comment-corner-dark.svg");
  }
  :root :where(body) .loop-wrapper-sidebar .loop-item__large-comments::before,
  :root :where(body) .loop-wrapper-sidebar .loop-item__large-comments::after {
    background-color: #0d2264;
  }
  :root :where(body) .home-featured__thumbnail::before,
  :root :where(body) .home-featured__content::before,
  :root :where(body) .home-featured__content,
  :root :where(body) .site-footer,
  :root :where(body) .single-terms__wrapper a,
  :root :where(body) .entry-comments {
    background-color: #1a2938;
  }
  :root :where(body) .wp-block-group.has-background-4-background-color,
  :root :where(body) .block-related-posts.has-background-4-background-color,
  :root :where(body) .block-recent-posts.has-background-4-background-color {
    background-color: #1a2938 !important;
  }
  :root :where(body) .loop-item__author,
  :root :where(body) .loop-item__author a {
    color: #A8AEB4;
  }
  :root :where(body) .loop-item.loop-item--secondary {
    border-color: #1A2938;
  }
  :root :where(body) .sidebar-group {
    background-color: #1A2938;
  }
  :root :where(body) .archive-header.archive-header--category a.category-home-link::after {
    color: #1A2938;
  }
  :root :where(body) .block-email-subscribe.has-background.has-main-background-color {
    background-color: white !important;
  }
  :root :where(body) .nav-primary > ul.menu > .menu-item > .sub-menu {
    background-color: white;
  }
  :root :where(body) .nav-primary > ul.menu > .menu-item > .sub-menu > .menu-item a,
  :root :where(body) .block-email-subscribe.has-main-background-color .gform_confirmation_message {
    color: var(--wp--preset--color--main);
  }
  :root :where(body) .block-sidebar-posts.category-podcast .loop-item__content,
  :root :where(body) .block-recent-posts.layout-podcast .loop-item {
    background-color: var(--wp--preset--color--main);
  }
  :root :where(body) input[type=date],
  :root :where(body) input[type=time],
  :root :where(body) input[type=datetime-local],
  :root :where(body) input[type=week],
  :root :where(body) input[type=month],
  :root :where(body) input[type=text],
  :root :where(body) input[type=email],
  :root :where(body) input[type=url],
  :root :where(body) input[type=password],
  :root :where(body) input[type=search],
  :root :where(body) input[type=tel],
  :root :where(body) input[type=number],
  :root :where(body) textarea,
  :root :where(body) select {
    background-color: var(--wp--preset--color--main);
    border-color: #54606B;
    color: white;
  }
  :root :where(body) .social-media__link,
  :root :where(body) .search-overlay,
  :root :where(body) .menu-overlay,
  :root :where(body) .menu-overlay__inner {
    background-color: var(--wp--preset--color--main);
  }
  :root :where(body) .social-media__link svg path,
  :root :where(body) .single-terms__wrapper a svg path,
  :root :where(body) .site-header__menu-toggle-mobile-close svg path {
    fill: white;
  }
  :root :where(body) .gform_wrapper button.gform_button span::after,
  :root :where(body) .is-style-arrow-right .wp-block-button__link::after,
  :root :where(body) .comment-form input[type=submit] {
    background-image: url("../images/icons/icon-button-arrow-right-dark.svg");
  }
  :root :where(body) .search-overlay__logo {
    opacity: 1;
    bottom: 0;
  }
  :root :where(body) input[type=search] {
    background-image: url("../images/icons/search-dark-mode.svg");
  }
  :root :where(body) .loop-wrapper-sidebar .loop-item:not(:first-child) {
    border-color: #213b69;
  }
  :root :where(body) .comment-list {
    border-color: white;
  }
  :root :where(body) .site-footer__form-wrap button.gform_button::after {
    background-image: url("../images/icons/icon-mail-dark.svg");
  }
  :root :where(body) .search-filters__header .facetwp-facet.facetwp-type-reset button {
    background-image: url("../images/icons/icon-reset-filter-dark.svg");
  }
  :root :where(body) .facetwp-checkbox {
    background-image: url("../images/icons/checkbox-unchecked-dark.svg");
  }
  :root :where(body) .facetwp-checkbox.checked {
    background-image: url("../images/icons/checkbox-checked-dark.svg");
  }
  :root :where(body) .search .archive-header::before {
    background-image: url("../images/icons/icon-search-large-blue-dark.svg");
  }
  :root :where(body) .is-style-screen-right .wp-block-button__link::after {
    background-image: url("../images/icons/icon-screen-dark.svg");
  }
  :root :where(body) .is-style-date-right .wp-block-button__link::after {
    background-image: url("../images/icons/icon-calendar-dark.svg");
  }
  :root :where(body) .wp-block-buttons--leave-comment svg path {
    fill: var(--wp--preset--color--main);
  }
  :root :where(body) .comment-list li.staff > .comment-body > .comment-author,
  :root :where(body) .comment-list .comment-author {
    color: var(--wp--preset--color--background-3);
  }
  :root :where(body) .lineup-nav {
    background-color: #1A2938;
    color: white;
  }
  :root :where(body) .lineup-nav > a {
    background-color: #3872FE;
  }
  :root :where(body) .lineup-nav > a[rel=prev] {
    background-image: url("../images/icons/icon-button-arrow-left-dark.svg");
  }
  :root :where(body) .lineup-nav > a[rel=next] {
    background-image: url("../images/icons/icon-button-arrow-right-dark.svg");
  }
  :root :where(body).single-lineups-by-date .entry-content .show > p.show-guests,
  :root :where(body) .block-latenighter-lineup .show-lineups .show-guests,
  :root :where(body) .block-sidebar-lineups__content .show p.show-guests,
  :root :where(body) .compiled-by,
  :root :where(body) .block-sidebar-lineups__header-date {
    color: #a8aeb4;
  }
  :root :where(body) .block-latenighter-lineup .show-info {
    border-color: #1A2938;
  }
  :root :where(body) .block-latenighter-lineup .show {
    border-color: #54606B;
  }
  :root :where(body) .wd-dark-mode {
    display: block !important;
  }
  :root :where(body) .wd-light-mode {
    display: none !important;
  }
}
/* Layouts */
/**
 * /assets/scss/partials/layouts/archives.scss
 *
 * Let's define our archive styles
 *
 * - Archive
 * - The Loop
 * - Categories
 * - Author
 */
/* ----- Archive -------------------- */
.archive-header {
  padding: 0 0 var(--wp--preset--spacing--medium) 0;
}
.archive-header > * {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--custom--layout--thin);
}
.archive-header > *:last-child {
  margin-bottom: 0;
}
.archive-header .entry-title {
  font-size: var(--wp--preset--font-size--font-size-9);
}
.archive-header__description > *:last-child {
  margin-bottom: 0;
}
.archive-header.archive-header--tag .entry-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-left: 0;
  margin-right: 0;
}
.archive-header.archive-header--tag .entry-title svg {
  width: 28px;
}
.archive-header.archive-header--tag .entry-title span {
  flex: 1;
}

/* ----- The Loop -------------------- */
.loop-header {
  border-bottom: 1px solid var(--wp--preset--color--background-3);
  margin-bottom: 28px;
  padding-bottom: 16px;
}
@media (max-width: 600px) {
  .loop-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
}

.loop-header__title {
  border: 1px solid;
  display: inline-block;
  margin: 0;
  padding: 0.25em 0.45em;
}

.loop-header__text {
  color: var(--wp--preset--color--background-2);
  font-size: 16px;
  margin: 10px 0 0;
}
@media (max-width: 600px) {
  .loop-header__text {
    font-size: 14px;
    margin: 6px 0 0;
  }
}

.loop-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.loop-wrapper-fourcol,
.loop-wrapper-threecol {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

@media (max-width: 950px) {
  .loop-wrapper-fourcol .loop-item {
    width: calc((100% - 40px) / 2) !important;
  }
}
@media (max-width: 600px) {
  .loop-wrapper-fourcol .loop-item {
    width: 100% !important;
  }
  .loop-wrapper-threecol {
    gap: 0;
  }
  .loop-wrapper-threecol .loop-item {
    width: 100% !important;
  }
}
.loop-item {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
.loop-item__thumbnail {
  width: 50%;
}
@media (max-width: 950px) {
  .loop-item__thumbnail {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .loop-item__thumbnail {
    width: 100%;
  }
}
.loop-item__thumbnail img {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.loop-item__content {
  width: 50%;
  padding: 24px 24px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  align-items: flex-start;
}
@media (max-width: 950px) {
  .loop-item__content {
    width: 70%;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .loop-item__content {
    row-gap: 16px;
    width: 100%;
    padding: 16px 0 0 0;
  }
}
.loop-item__categories {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
}
.loop-item__categories a {
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}
.loop-item__title {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.2;
  text-align: left;
}
.loop-item__content-bottom {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  width: 100%;
}
.loop-item__author {
  font-size: 14px;
  line-height: 24px;
  color: var(--wp--preset--color--background-2);
  font-weight: 800;
}
.loop-item__author a {
  color: var(--wp--preset--color--background-2);
  text-decoration: none;
}
.loop-item__author a:hover, .loop-item__author a:focus {
  color: var(--wp--preset--color--main);
}
.loop-item__date-wrap {
  display: flex;
  align-items: center;
}
.loop-item__date, .loop-item__comment-count {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--wp--preset--color--background-3);
  text-transform: uppercase;
}
.loop-item__comment-count {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--wp--preset--color--background-3);
  text-decoration: none;
}
.loop-item__comment-count:hover {
  text-decoration: none;
  color: var(--wp--preset--color--background-3);
}
.loop-item.loop-item--secondary {
  width: calc((100% - 120px) / 4);
  align-content: flex-start;
  row-gap: 0;
  border: 1px solid var(--wp--preset--color--background-4);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}
.loop-item.loop-item--secondary .loop-item__thumbnail {
  width: 100%;
}
.loop-item.loop-item--secondary .loop-item__thumbnail img {
  border-radius: 0;
}
.loop-item.loop-item--secondary .loop-item__content {
  width: 100%;
  padding: 24px;
}
.loop-wrapper-threecol .loop-item.loop-item--secondary {
  width: calc((100% - 80px) / 3);
  border: none;
  border-radius: 0;
}
.loop-wrapper-threecol .loop-item.loop-item--secondary .loop-item__thumbnail img {
  border-radius: 8px;
}
.loop-wrapper-threecol .loop-item.loop-item--secondary .loop-item__content {
  padding: 20px 0 0 0;
}
.loop-wrapper-threecol .loop-item.loop-item--secondary .loop-item__title {
  font-size: var(--wp--preset--font-size--font-size-4) !important;
}
.loop-item.loop-item--tertiary {
  width: calc((100% - 80px) / 3);
  align-content: flex-start;
  row-gap: 0;
}
@media (min-width: 601px) {
  .loop-item.loop-item--tertiary {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.loop-item.loop-item--tertiary .loop-item__thumbnail {
  width: 100%;
}
@media (min-width: 601px) {
  .loop-item.loop-item--tertiary .loop-item__thumbnail img {
    width: 128px;
    border-radius: 6px;
  }
}
.loop-item.loop-item--tertiary .loop-item__content {
  width: 100%;
  padding: 16px 0 0 0;
  row-gap: 16px;
}
.loop-item.loop-item--tertiary-category .loop-item__categories {
  font-size: 16px;
}
.loop-item.loop-item--tertiary-category .loop-item__categories a {
  font-size: 12px;
  line-height: 16px;
}
.loop-item.loop-item--stub {
  width: 100%;
}
.loop-item.loop-item--stub .loop-item__icon {
  height: 24px;
  width: 24px;
}
.loop-item.loop-item--stub .loop-item__content {
  padding: 0;
  row-gap: 8px;
  width: 100%;
}
.loop-item.loop-item--stub .loop-item__content-bottom {
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
}
.loop-item.loop-item--stub .loop-item__author {
  font-size: 12px;
  text-transform: uppercase;
}
.loop-item.loop-item--stub .loop-item__title {
  line-height: 1.2;
}
.loop-item.loop-item--stub .loop-item__excerpt p {
  font-size: 15px;
}
.loop-item.loop-item--stub .loop-item__excerpt p a {
  color: var(--wp--preset--color--main);
}
.loop-item.loop-item--stub .loop-item__excerpt > * {
  margin-bottom: 0;
  margin-top: 0;
}
.loop-item.loop-item--stub .loop-item__excerpt > * + * {
  margin-top: 8px;
}

/* ----- Categories -------------------- */
.archive-header.archive-header--category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.archive-header.archive-header--category > * {
  margin-left: 0;
  margin-right: 0;
}
.archive-header.archive-header--category a.category-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.archive-header.archive-header--category a.category-home-link::after {
  content: "/";
  font-size: 40px;
  line-height: 48px;
  color: var(--wp--preset--color--background-4);
  margin: 0 8px;
}
.archive-header.archive-header--category a.category-home-link:hover svg path, .archive-header.archive-header--category a.category-home-link:focus svg path {
  fill: var(--wp--preset--color--main);
}
.archive-header.archive-header--category a.archive-header--category-parent {
  text-decoration: none;
  font-weight: 800;
}
.archive-header.archive-header--category a.archive-header--category-parent::after {
  content: "/";
  font-size: 40px;
  line-height: 48px;
  color: var(--wp--preset--color--background-4);
  margin: 0 8px;
}

@media (min-width: 601px) {
  .archive.category .loop-wrapper-threecol,
  .archive.author .loop-wrapper-threecol {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--wp--preset--color--background-3);
  }
}
.block-area.block-area-category-cta,
.block-area.block-area-author-cta {
  display: block;
  width: 100%;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}

/* ----- Author -------------------- */
.archive-header.archive-header--author {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 600px) {
  .archive-header.archive-header--author {
    flex-direction: column;
    row-gap: 16px;
  }
}
.archive-header.archive-header--author .archive-header__description {
  margin-top: 24px;
}
.archive-header__author-headshot {
  width: 256px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 950px) {
  .archive-header__author-headshot {
    width: 192px;
  }
}
.archive-header__author-headshot img {
  display: block;
  border-radius: 256px;
}
.archive-header__author-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .archive-header__author-content .entry-title,
  .archive-header__author-content .archive-header__author-position {
    text-align: center;
  }
}
.archive-header__author-position {
  font-weight: 800;
  margin-top: 8px;
}
@media (max-width: 1050px) {
  .archive-header.archive-header--category.archive-header--child-category {
    row-gap: 8px;
  }
  .archive-header.archive-header--category.archive-header--child-category a.category-home-link svg {
    height: 24px;
    width: 27px;
  }
  .archive-header.archive-header--category.archive-header--child-category a.category-home-link::after {
    font-size: 20px;
    line-height: 24px;
  }
  .archive-header.archive-header--category.archive-header--child-category a.archive-header--category-parent {
    font-size: 20px !important;
    line-height: 24px;
  }
  .archive-header.archive-header--category.archive-header--child-category a.archive-header--category-parent::after {
    font-size: 20px;
    line-height: 24px;
  }
  .archive-header.archive-header--category.archive-header--child-category h1.entry-title {
    width: 100%;
  }
}

/**
 * /assets/scss/partials/layouts/error404.scss
 *
 * Let's define our error404 styles
 */
.error404 .site-inner .content-area,
.search-no-results .site-inner .content-area {
  padding: 0 0 var(--wp--preset--spacing--xx-large) 0;
  text-align: center;
}
.error404 .site-inner .content-area .entry-content,
.search-no-results .site-inner .content-area .entry-content {
  max-width: 750px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
}

/**
 * /assets/scss/partials/layouts/flickity.scss
 *
 * Let's define our flickity slideshow styles
 */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.flickity-prev-next-button:hover {
  background-color: transparent;
}
.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: none;
}
.flickity-prev-next-button:active {
  opacity: 0.6;
}
.flickity-prev-next-button.previous {
  left: -40px;
}
.alignfull .flickity-prev-next-button.previous {
  left: 20px;
}
@media (max-width: 1375px) {
  .flickity-prev-next-button.previous {
    left: 20px;
  }
}
@media (max-width: 850px) {
  .flickity-prev-next-button.previous {
    left: 10px;
  }
}
.flickity-prev-next-button.next {
  right: -40px;
}
.alignfull .flickity-prev-next-button.next {
  right: 20px;
}
@media (max-width: 1375px) {
  .flickity-prev-next-button.next {
    right: 20px;
  }
}
@media (max-width: 850px) {
  .flickity-prev-next-button.next {
    right: 10px;
  }
}
.flickity-prev-next-button:disabled {
  cursor: auto;
}
.flickity-prev-next-button:disabled .arrow {
  fill: #ddd;
}
.flickity-prev-next-button svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.flickity-prev-next-button.next svg {
  left: auto;
  right: 0;
  top: 0;
}
.flickity-prev-next-button .arrow {
  fill: var(--wp--preset--color--primary);
}

.block-slideshow ol.flickity-page-dots {
  list-style-type: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 850px) {
  .block-slideshow ol.flickity-page-dots {
    top: calc(100% + 30px);
  }
}
.block-slideshow ol.flickity-page-dots li {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--wp--custom--color--neutral-3);
  margin: 0 4px;
  cursor: pointer;
  padding-bottom: 0;
  padding-left: 0;
}
.block-slideshow ol.flickity-page-dots li:hover {
  background-color: #ddd;
}
.block-slideshow ol.flickity-page-dots li.is-selected {
  background-color: var(--wp--preset--color--primary);
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/**
 * /assets/scss/partials/layouts/footer.scss
 *
 * Let's define our footer styles
 */
/* ----- Main Footer -------------------- */
.site-prefooter {
  display: flex;
  justify-content: center;
  margin-top: var(--wp--preset--spacing--xxx-large);
  margin-bottom: -14px;
}
@media (max-width: 768px) {
  .site-prefooter {
    margin-bottom: -8px;
  }
}
@media (max-width: 768px) {
  .site-prefooter {
    margin-bottom: -6px;
  }
}
.site-prefooter span {
  font-size: 144px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -8.64px;
}
@media (max-width: 768px) {
  .site-prefooter span {
    font-size: 80px;
    letter-spacing: -5px;
  }
}
@media (max-width: 600px) {
  .site-prefooter span {
    font-size: 52px;
    letter-spacing: -3px;
  }
}

.site-footer {
  width: 100%;
  padding: var(--wp--preset--spacing--xxx-large) var(--wp--custom--spacing--viewport-padding) var(--wp--preset--spacing--xx-large);
  background-color: var(--wp--preset--color--background-4);
}
.no-footer-margin .site-footer {
  margin-top: 0;
}
.site-footer > .wrap {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__form-wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.site-footer__form-wrap .gform_wrapper {
  position: relative;
  margin-bottom: 0;
}
.site-footer__form-wrap .gform_validation_errors {
  display: none !important;
}
.site-footer__form-wrap .gfield_error .validation_message {
  text-align: center;
}
.site-footer__form-wrap .gfield {
  margin-bottom: 0 !important;
}
.site-footer__form-wrap .ginput_container_email input[type=email] {
  border: none;
  height: 72px;
  padding: 12px 72px 12px 60px;
  border-radius: 48px;
  font-size: 18px;
}
.site-footer__form-wrap .gform_footer {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.site-footer__form-wrap .gform_wrapper .gform_footer {
  width: 48px;
}
.site-footer__form-wrap .ginput_container_email::before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  left: 28px;
}
.site-footer__form-wrap button.gform_button {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  padding: 0;
  position: relative;
}
.site-footer__form-wrap button.gform_button:hover, .site-footer__form-wrap button.gform_button:focus {
  background-color: var(--wp--preset--color--main);
}
.site-footer__form-wrap button.gform_button::after {
  content: "";
  background-image: url("../images/icons/icon-mail.svg");
  background-size: 22px 21px;
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  left: 11px;
  width: 22px;
  height: 21px;
}
.site-footer__form-wrap button.gform_button span {
  display: none !important;
}
.site-footer__form-header {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
}
.site-footer__form-disclaimer {
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
}
.site-footer__form-disclaimer a {
  color: var(--wp--preset--color--background-3);
}
.site-footer__form-disclaimer a:hover, .site-footer__form-disclaimer a:focus {
  color: var(--wp--preset--color--main);
}
.site-footer__above-copyright {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
  margin-top: -24px;
}
.site-footer__above-copyright p {
  font-size: 14px;
  margin: 0 0 12px 0;
}
.site-footer__above-copyright p:last-child {
  margin-bottom: 0;
}
.site-footer__copyright {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}
.site-footer__copyright p {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  opacity: 0.5;
  margin: 0;
  text-align: center;
}

.footer-menu-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu--footer {
  width: 100%;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
.menu--footer li {
  display: flex;
}
.menu--footer li a {
  color: var(--wp--preset--color--main);
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
}
.menu--footer li a:hover, .menu--footer li a:focus {
  color: var(--wp--preset--color--primary);
}
.menu--footer li:not(:last-child) {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid var(--wp--preset--color--primary);
}
@media (max-width: 768px) {
  .menu--footer li:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 600px) {
  .menu--footer li:not(:last-child) {
    border-right: none;
    padding-right: 16px;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .menu--footer li {
    padding: 12px 16px;
  }
}

.menu--terms {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.menu--terms li a {
  font-size: 12px;
  opacity: 0.5;
  color: var(--wp--preset--color--main);
  text-decoration: none;
}
.menu--terms li a:hover, .menu--terms li a:focus {
  opacity: 1;
}

/**
 * /assets/scss/partials/layouts/header.scss
 *
 * Let's define our header styles
 */
.site-header {
  width: 100%;
  position: relative;
  padding: 20px var(--wp--custom--spacing--viewport-padding) 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .site-header {
    border-bottom: 1px solid var(--wp--preset--color--background-4);
    padding-bottom: 20px;
    height: 100px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 64px;
    padding-top: 16px;
  }
}
.site-header .wp-block-buttons .wp-block-button .wp-block-button__link {
  font-size: 14px;
  padding: 8px 12px;
}
.site-header > .wrap {
  width: 100%;
  max-width: calc(var(--wp--custom--layout--default));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.site-header__logo {
  display: flex;
  flex: 1;
  justify-content: center;
}
.site-header__logo img {
  display: block;
}
@media (max-width: 600px) {
  .site-header__logo img {
    width: 180px;
  }
}
.site-header__left, .site-header__right {
  display: flex;
  align-items: center;
  width: 300px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 1000px) {
  .site-header__left, .site-header__right {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .site-header__left, .site-header__right {
    width: 48px;
  }
  .site-header__left .wp-block-buttons, .site-header__right .wp-block-buttons {
    display: none;
  }
}
.site-header__left .wp-block-buttons .wp-block-button .wp-block-button__link {
  background-color: transparent;
  color: var(--wp--preset--color--main);
}
.site-header__left .wp-block-buttons .wp-block-button .wp-block-button__link:hover, .site-header__left .wp-block-buttons .wp-block-button .wp-block-button__link:focus {
  background-color: var(--wp--preset--color--primary);
  color: white;
}
.site-header__right {
  justify-content: flex-end;
}
.site-header__menu-toggle, .site-header__search-toggle, .site-header__mode-toggle, .site-header__menu-toggle-mobile-close {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__menu-toggle-mobile-close {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav-open .site-header__menu-toggle {
    display: none;
  }
  .mobile-nav-open .site-header__menu-toggle-mobile-close {
    display: flex;
  }
}

/**
 * /assets/scss/partials/layouts/home.scss
 *
 * Let's define our home styles
 *
 * - Featured
 */
/* ----- Featured -------------------- */
.home-top {
  max-width: var(--wp--custom--layout--default);
  margin: 0 auto 30px;
  padding-bottom: 8px;
}
@media (max-width: 600px) {
  .home-top {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.home-top__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media (max-width: 600px) {
  .home-top__inner {
    gap: 24px;
  }
}
.home-top .loop-wrapper-fourcol {
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .home-top__secondary-header {
    display: none;
  }
}
.home-top .block-recent-posts__button--top {
  display: flex;
  justify-content: center;
}
.home-top .block-recent-posts__button--top .is-style-arrow-right .wp-block-button__link::after {
  transform: rotate(90deg);
}

.home-above-content,
.home-above-content-sidebar {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
@media (max-width: 600px) {
  .home-above-content,
  .home-above-content-sidebar {
    border-bottom: none;
    padding-bottom: 0;
  }
  .home-above-content .loop-item.loop-item--secondary:not(:last-child),
  .home-above-content-sidebar .loop-item.loop-item--secondary:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--wp--preset--color--background-3);
  }
}

.home-above-content-sidebar {
  display: none;
}
@media (max-width: 950px) {
  .home-above-content-sidebar {
    display: block;
  }
  .home-above-content-sidebar ~ .home-above-content-sidebar {
    display: none;
  }
}

@media (max-width: 950px) {
  .home aside {
    display: none;
  }
}

.home-featured {
  display: flex;
  align-items: center;
}
@media (max-width: 950px) {
  .home-featured {
    flex-wrap: wrap;
  }
}
.home-featured__thumbnail {
  width: calc(50% + 20px);
  padding-left: 40px;
}
@media (max-width: 950px) {
  .home-featured__thumbnail {
    width: 100%;
    padding-top: 40px;
    padding-left: 0;
    position: relative;
  }
  .home-featured__thumbnail::before {
    content: "";
    width: calc(100% - 48px);
    position: absolute;
    top: 0;
    left: 24px;
    height: 40px;
    background-color: var(--wp--preset--color--background-4);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 768px) {
  .home-featured__thumbnail {
    padding-top: 0;
  }
  .home-featured__thumbnail::before {
    display: none;
  }
}
.home-featured__thumbnail img {
  display: block;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .home-featured__thumbnail img {
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 600px) {
  .home-featured__thumbnail img {
    border-radius: 8px 8px 0 0;
  }
}
.home-featured__content {
  padding: 40px;
  flex: 1;
  position: relative;
  row-gap: 16px;
}
@media (max-width: 1024px) {
  .home-featured__content {
    padding: 20px 40px;
  }
}
@media (max-width: 950px) {
  .home-featured__content {
    flex: none;
    width: calc(100% - 48px);
    background-color: var(--wp--preset--color--background-4);
    border-top: none;
    margin: 0 24px;
    border-radius: 0 0 16px 16px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .home-featured__content {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .home-featured__content {
    padding: 20px 14px;
    border-radius: 0 0 12px 12px;
  }
}
.home-featured__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: var(--wp--custom--layout--default);
  height: 100%;
  border-radius: 16px;
  background-color: var(--wp--preset--color--background-4);
  z-index: -1;
}
@media (max-width: 1264px) {
  .home-featured__content::before {
    width: calc(100vw - var(--wp--custom--spacing--viewport-padding) * 2);
  }
}
@media (max-width: 950px) {
  .home-featured__content::before {
    display: none;
  }
}
.home-featured .loop-item__title {
  line-height: 1.2;
  font-size: clamp(32px, 2rem + (1vw - 11px) * 4.878, 40px);
}
@media (max-width: 600px) {
  .home-featured .loop-item__title {
    font-size: var(--wp--preset--font-size--font-size-6);
  }
}

.block-area.block-area-home-middle {
  padding-top: clamp(36px, 2.25rem + (1vw - 6px) * 3.3333, 56px);
  border-top: 1px solid var(--wp--preset--color--background-3);
}
.block-area.block-area-home-middle > * {
  max-width: var(--wp--custom--layout--default);
}

/**
 * /assets/scss/partials/layouts/interiors.scss
 *
 * Let's define our interior wrapper styles
 */
/* ----- Universal -------------------- */
@media (max-width: 768px) {
  body.mobile-nav-open {
    overflow: hidden;
  }
}

.site-inner {
  width: 100%;
  overflow: hidden;
  padding: 0 var(--wp--custom--spacing--viewport-padding);
}

@media (max-width: 600px) {
  html #wpadminbar {
    position: fixed;
  }
}
.entry-content > *:last-child {
  margin-bottom: 0;
}

/**
 * /assets/scss/partials/layouts/lineups.scss
 *
 * Let's define our lineups styles
 *
 * - Lineups Nav
 * - Single Lineups
 * - By Show
 */
/* ----- Lineups Nav -------------------- */
.lineup-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--background-4);
  padding: 8px 72px;
  border-radius: 100px;
  position: relative;
  height: 72px;
}
@media (max-width: 600px) {
  .lineup-nav {
    height: 64px;
    padding: 8px 62px;
  }
}
.lineup-nav > a {
  height: 56px;
  width: 56px;
  background-color: var(--wp--preset--color--primary);
  border-radius: 56px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0);
  background-image: url("../images/icons/icon-button-arrow-right.svg");
  background-size: 18px 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .lineup-nav > a {
    height: 48px;
    width: 48px;
  }
}
.lineup-nav > a[rel=prev] {
  position: absolute;
  top: 8px;
  left: 8px;
  background-image: url("../images/icons/icon-button-arrow-left.svg");
}
.lineup-nav > a[rel=next] {
  position: absolute;
  top: 8px;
  right: 8px;
}
.lineup-nav__title {
  font-size: clamp(1.5rem, 0.75rem + (1vw - 6px) * 3.3333, 30px);
  font-weight: 800;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lineup-nav__title span:nth-child(2), .lineup-nav__title span:nth-child(3) {
  opacity: 0.66;
}
.lineup-nav__title span:last-child {
  opacity: 0.33;
}
.lineup-nav__title--short {
  display: none;
}
@media (max-width: 600px) {
  .lineup-nav__title {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
  .lineup-nav__title--long {
    display: none;
  }
  .lineup-nav__title--short {
    display: flex;
    font-size: 1.15rem;
  }
}

/* ----- Single Lineups -------------------- */
.single-lineups-by-date .entry-content .lineup-nav + .show {
  border-top: 1px solid var(--wp--preset--color--background-3);
  margin-top: 40px;
}
.single-lineups-by-date .entry-content .show + .lineup-nav {
  margin-top: 40px;
}
.single-lineups-by-date .entry-content .show {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
  margin: 0;
}
.single-lineups-by-date .entry-content .show.has-image {
  padding-left: 112px;
  min-height: 180px;
}
.single-lineups-by-date .entry-content .show .show-image {
  position: absolute;
  top: 24px;
  left: 0;
  width: auto;
  height: auto;
  max-width: 88px;
  max-height: 132px;
}
.single-lineups-by-date .entry-content .show > p {
  margin: 0;
}
.single-lineups-by-date .entry-content .show > p.show-network {
  order: -1;
  color: var(--wp--preset--color--primary);
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
}
.single-lineups-by-date .entry-content .show > p.show-title {
  font-size: clamp(24px, 1.5rem + (1vw - 6px) * 1.3333, 32px);
  font-weight: 800;
  letter-spacing: -0.64px;
  line-height: 1.25;
}
.single-lineups-by-date .entry-content .show > p.show-guests {
  font-size: 14px;
  color: var(--wp--preset--color--background-2);
  line-height: 20px;
  font-weight: 500;
}

.archive-header.archive-header--lineups-by-date {
  position: relative;
}
@media (min-width: 601px) {
  .archive-header.archive-header--lineups-by-date {
    padding-right: 194px;
  }
}
@media (min-width: 601px) {
  .archive-header.archive-header--lineups-by-date .lineups-header-button {
    position: absolute;
    top: calc(50% - 16px);
    right: 0;
    transform: translateY(-70%);
  }
}
@media (max-width: 600px) {
  .archive-header.archive-header--lineups-by-date .lineups-header-button {
    width: 100%;
    margin-top: 24px;
  }
  .archive-header.archive-header--lineups-by-date .lineups-header-button .wp-block-button {
    width: 100%;
  }
  .archive-header.archive-header--lineups-by-date .lineups-header-button .wp-block-button .wp-block-button__link {
    justify-content: center;
  }
}

.compiled-by {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  color: var(--wp--preset--color--background-2);
  margin-top: 8px;
}
.compiled-by a {
  font-weight: 800;
}
.compiled-by a:hover {
  color: var(--wp--preset--color--main);
}

/* ----- By Show -------------------- */
.block-latenighter-lineup .show {
  display: block;
  width: 100%;
  margin-bottom: var(--wp--preset--spacing--medium);
  padding-bottom: var(--wp--preset--spacing--medium);
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
.block-latenighter-lineup .show-info {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-bottom: 1px solid #d4daff;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.block-latenighter-lineup .show-info__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.block-latenighter-lineup .show-info__content p.show-network {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--wp--preset--color--primary);
  font-weight: 800;
}
.block-latenighter-lineup .show-info__content p.show-title {
  margin: 0;
  font-size: clamp(24px, 1.5rem + (1vw - 6px) * 1.3333, 32px);
  font-weight: 800;
  letter-spacing: -0.64px;
  line-height: 1.25;
}
.block-latenighter-lineup .show-image {
  width: 88px;
}
.block-latenighter-lineup .show-image img {
  display: block;
  width: 100%;
}
.block-latenighter-lineup .show-lineups {
  display: flex;
  flex-direction: column;
}
.block-latenighter-lineup .show-lineups .show-date {
  width: 100%;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}
.block-latenighter-lineup .show-lineups .show-date span {
  font-weight: 800;
}
.block-latenighter-lineup .show-lineups .show-guests {
  width: 100%;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--wp--preset--color--background-2);
}
.block-latenighter-lineup .show-lineups p:last-child {
  margin-bottom: 0;
}

/**
 * /assets/scss/partials/layouts/navigation.scss
 *
 * Let's define our navigation styles
 *
 * - Primary Navigation
 * - Menu Overlay
 */
/* ----- Primary Navigation -------------------- */
.nav-primary {
  width: 100%;
  border-top: 1px solid var(--wp--preset--color--background-2);
  border-bottom: 1px solid var(--wp--preset--color--background-2);
  margin-top: 8px;
}
@media (min-width: 769px) {
  .nav-primary {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .nav-primary {
    display: none;
  }
}
.nav-primary > ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 0 16px;
}
.nav-primary > ul.menu > .menu-item {
  list-style: none;
  position: relative;
}
@media (min-width: 769px) {
  .nav-primary > ul.menu > .menu-item:hover > .sub-menu, .nav-primary > ul.menu > .menu-item:focus-within > .sub-menu {
    left: auto;
    opacity: 1;
  }
}
.nav-primary > ul.menu > .menu-item a {
  border: none;
  color: var(--wp--preset--color--main);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  padding: 16px 0;
  position: relative;
  text-decoration: none;
}
.nav-primary > ul.menu > .menu-item a:hover {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.nav-primary > ul.menu > .menu-item > .sub-menu {
  background: var(--wp--preset--color--main);
  left: -9999px;
  opacity: 0;
  border-radius: 0 0 16px 16px;
  padding: 14px 24px;
  position: absolute;
  width: auto;
  min-width: 200px;
  z-index: 99;
}
.nav-primary > ul.menu > .menu-item > .sub-menu::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 72px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background-color: var(--wp--preset--color--primary);
}
.nav-primary > ul.menu > .menu-item > .sub-menu > .menu-item {
  width: 100%;
  display: block;
  clear: both;
  border-top: none !important;
}
.nav-primary > ul.menu > .menu-item > .sub-menu > .menu-item a {
  width: 100%;
  background: transparent;
  color: white;
  padding: 10px 0;
  position: relative;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 24px;
}
.nav-primary > ul.menu > .menu-item > .sub-menu > .menu-item:hover > a, .nav-primary > ul.menu > .menu-item > .sub-menu > .menu-item.current-menu-item > a {
  color: var(--wp--preset--color--background-3);
}

/* ----- Menu Overlay -------------------- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1001;
  display: none;
}
@media (max-width: 768px) {
  .menu-overlay {
    top: 100px;
    height: calc(100% - 100px);
  }
  .admin-bar .menu-overlay {
    top: 146px;
    height: calc(100% - 146px);
  }
}
@media (max-width: 600px) {
  .menu-overlay {
    top: 64px;
    height: calc(100% - 64px);
  }
  .admin-bar .menu-overlay {
    top: 110px;
    height: calc(100% - 110px);
  }
}
.menu-overlay__inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
  padding-left: 40px;
  background-color: white;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  transition: right 0.5s ease-in-out;
}
.mobile-nav-open .menu-overlay__inner {
  overflow: hidden;
  overflow-y: scroll;
  max-height: 100vh;
}
@media (max-width: 768px) {
  .menu-overlay__inner {
    position: absolute;
    padding: 32px;
    row-gap: 24px;
  }
}
@media (max-width: 600px) {
  .menu-overlay__inner {
    padding: 0;
    row-gap: 0;
  }
}
.menu-overlay__top {
  display: flex;
  width: 100%;
  padding-right: 54px;
  -moz-column-gap: 56px;
       column-gap: 56px;
  max-width: var(--wp--custom--layout--default);
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .menu-overlay__top {
    align-items: center;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (max-width: 768px) {
  .menu-overlay__top {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .menu-overlay__top {
    padding: 20px 20px 0 20px;
  }
}
.menu-overlay__logo {
  width: 100%;
  max-width: 335px;
}
@media (max-width: 1000px) {
  .menu-overlay__logo {
    max-width: 33.5%;
  }
}
@media (max-width: 768px) {
  .menu-overlay__logo {
    display: none;
  }
}
.menu-overlay__logo img {
  display: block;
}
.menu-overlay__search {
  flex: 1;
}
.menu-overlay__menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 64px;
  width: 100%;
  max-width: var(--wp--custom--layout--default);
  margin: 0 auto;
}
@media (max-width: 600px) {
  .menu-overlay__menu {
    flex-direction: column;
    row-gap: 0;
  }
}
.menu-overlay__menu-section {
  display: flex;
  flex-direction: column;
  width: calc((100% - 160px) / 3);
}
@media (max-width: 600px) {
  .menu-overlay__menu-section {
    width: 100%;
  }
}
.menu-overlay__menu-section-header {
  width: 100%;
  color: var(--wp--preset--color--primary);
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .menu-overlay__menu-section-header {
    padding: 4px 20px;
    border-color: var(--wp--preset--color--background-4);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.menu-overlay__menu-section-toggle {
  display: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .menu-overlay__menu-section-toggle {
    display: flex;
  }
}
.menu-overlay__menu-links {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 600px) {
  .menu-overlay__menu-links {
    row-gap: 0;
    display: none;
    border-top: 1px solid var(--wp--preset--color--background-3);
    border-bottom: 1px solid var(--wp--preset--color--background-3);
  }
  .menu-overlay__menu-links.open {
    display: flex;
  }
}
.menu-overlay__menu-link {
  text-decoration: none;
  color: var(--wp--preset--color--main);
  font-size: 16px;
  letter-spacing: -0.32px;
}
@media (max-width: 600px) {
  .menu-overlay__menu-link {
    row-gap: 0;
    background-color: var(--wp--preset--color--background-4);
    padding: 16px 20px;
  }
  .menu-overlay__menu-link:not(:last-child) {
    border-bottom: 1px solid white;
  }
}
.menu-overlay__close-navigation {
  position: absolute;
  top: 32px;
  left: calc(50% + 600px - 40px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 1248px) {
  .menu-overlay__close-navigation {
    left: auto;
    right: 24px;
  }
}
@media (max-width: 768px) {
  .menu-overlay__close-navigation {
    display: none;
  }
}

/**
 * /assets/scss/partials/layouts/pagination.scss
 *
 * Let's define our pagination styles
 *
 * - Default
 * - FacetWP Pager
 */
/* ----- Default -------------------- */
.pagination {
  width: 100%;
  padding-top: 25px;
  border-top: 3px solid var(--wp--custom--color--neutral-1);
  margin-top: var(--wp--preset--spacing--large);
}
.pagination .alignleft {
  float: left;
}
.pagination .alignright {
  float: right;
}
.pagination a {
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.pagination a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--main);
}
.pagination ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .pagination ul {
    flex-wrap: wrap;
  }
}
.pagination ul li {
  display: inline-block;
  margin: 0 2px;
}
.pagination ul li a {
  padding: 2px 11px;
  border-radius: 3px;
  color: var(--wp--preset--color--main);
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
}
.pagination ul li.active a, .pagination ul li:hover a {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
@media (max-width: 600px) {
  .pagination ul li.pagination-previous, .pagination ul li.pagination-next {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  .pagination ul li.pagination-next {
    margin-bottom: 0;
    margin-top: 15px;
  }
}

/* ----- FacetWP Pager -------------------- */
.archive-pager {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 950px) {
  .archive-pager {
    margin-bottom: 30px;
  }
}
.archive-pager .facetwp-facet {
  margin: 0;
  width: 100%;
}
.archive-pager .facetwp-facet button {
  background-color: transparent;
  color: var(--wp--preset--color--main);
  width: 100%;
  padding: 14px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.archive-pager .facetwp-facet button::after {
  content: "";
  background-image: url("../images/icons/icon-arrow-down.svg");
  width: 11px;
  height: 14px;
  background-size: 11px 14px;
}
.archive-pager .facetwp-facet button:hover, .archive-pager .facetwp-facet button:focus {
  background-color: var(--wp--preset--color--primary);
}
.archive-pager .facetwp-facet button:hover::after, .archive-pager .facetwp-facet button:focus::after {
  background-image: url("../images/icons/icon-arrow-down-hover.svg");
}
.archive-pager .facetwp-facet button.facetwp-hidden {
  display: none;
}

/**
 * /assets/scss/partials/layouts/search.scss
 *
 * Let's define our search styles
 */
.search .archive-header {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
.search .archive-header .entry-title {
  font-size: var(--wp--preset--font-size--font-size-6);
  font-weight: 400;
}
.search .archive-header * {
  margin-left: 0;
  margin-right: 0;
}

.search-results-top {
  max-width: 768px;
  margin: 0 auto var(--wp--preset--spacing--medium);
}
.search-results-top input[type=search] {
  border: 1px solid var(--wp--preset--color--background-3);
  border-radius: 8px;
  font-weight: 400;
  background-image: none;
  font-size: 20px;
  padding: var(--wp--custom--forms--input-padding-vertical) var(--wp--custom--forms--input-padding-horizontal);
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  z-index: 10002;
}
.search-overlay__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-overlay__form {
  width: 100%;
  max-width: 876px;
  padding: var(--wp--preset--spacing--medium) var(--wp--custom--spacing--viewport-padding);
}
.search-overlay__close {
  position: absolute;
  top: 72px;
  left: calc(50% + 600px - 40px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 1248px) {
  .search-overlay__close {
    left: auto;
    right: 24px;
  }
}
@media (max-width: 768px) {
  .search-overlay__close {
    top: 16px;
    right: var(--wp--custom--spacing--viewport-padding);
  }
}
.search-overlay__logo {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
}
@media (max-width: 768px) {
  .search-overlay__logo {
    bottom: -20px;
    left: 32px;
    width: calc(100% - 64px);
    transform: translateX(0);
  }
}

.search-filters {
  display: block;
  width: 100%;
  margin-bottom: var(--wp--preset--spacing--medium);
}
@media (min-width: 951px) {
  .site-main > .search-filters {
    display: none;
  }
}
@media (max-width: 950px) {
  .sidebar .search-filters {
    display: none;
  }
}
.search-filters__group:not(:first-child) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #c1caf9;
}
.search-filters__group > .facetwp-facet {
  margin: 0;
}
.search-filters__header {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 32px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  color: var(--wp--preset--color--background-2);
  margin-bottom: 12px;
}
.search-filters__header .facetwp-facet.facetwp-type-reset {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
}
.search-filters__header .facetwp-facet.facetwp-type-reset button {
  color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  background-image: url("../images/icons/icon-reset-filter.svg");
  background-size: 16px 16px;
  background-position: center;
}
.search-filters__mobile-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.search-filters__mobile-toggle:focus {
  outline: none;
}
.search-filters__mobile-toggle:focus .search-filters__header {
  color: var(--wp--preset--color--primary);
}
.search-filters__mobile-toggle .search-filters__header {
  text-align: left;
  margin: 0;
}
.search-filters__mobile-toggle.open .search-filters__mobile-toggle-icon.close {
  display: block;
}
.search-filters__mobile-toggle.open .search-filters__mobile-toggle-icon.open {
  display: none;
}
.search-filters__mobile-toggle-icon.close {
  display: none;
}
.search-filters__mobile-group-wrap {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #c1caf9;
}

body .facetwp-checkbox {
  background-image: url("../images/icons/checkbox-unchecked.svg");
  background-size: 20px 20px;
  padding-left: 32px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
body .facetwp-checkbox.checked {
  background-image: url("../images/icons/checkbox-checked.svg");
}
body .facetwp-checkbox .facetwp-display-value {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  padding-right: 0;
  line-height: 28px;
  font-weight: 500;
}
body .facetwp-checkbox .facetwp-counter {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--wp--preset--color--background-3);
}
body .facetwp-toggle {
  font-size: 14px;
  font-weight: 500;
}

/**
 * /assets/scss/partials/layouts/sidebars.scss
 *
 * Let's define our sidebars styles
 */
@media (min-width: 951px) {
  .content-sidebar-layout .content-area {
    display: grid;
    grid-template-columns: calc(100% - var(--wp--custom--layout--sidebar) - var(--wp--preset--spacing--x-large)) var(--wp--custom--layout--sidebar);
    grid-column-gap: var(--wp--preset--spacing--x-large);
    width: 100%;
    max-width: var(--wp--custom--layout--default);
    margin-left: auto;
    margin-right: auto;
  }
  .content-sidebar-layout .site-main {
    float: none;
    width: 100%;
    max-width: var(--wp--custom--layout--content);
  }
  .content-sidebar-layout .sidebar--primary {
    float: none;
    width: 100%;
  }
  .content-sidebar-layout .sidebar--primary .block-area > * {
    margin-block-start: 0;
  }
  .content-sidebar-layout.search .content-area {
    grid-template-columns: var(--wp--custom--layout--sidebar) calc(100% - var(--wp--custom--layout--sidebar) - var(--wp--preset--spacing--x-large));
  }
  .content-sidebar-layout.search .sidebar--primary {
    order: -1;
  }
}
.sidebar-group {
  background-color: var(--wp--preset--color--background-4);
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 950px) {
  .page .sidebar {
    margin-top: 24px;
  }
}

.block-area-sidebar-home {
  position: relative;
  height: 100%;
}

/**
 * /assets/scss/partials/layouts/singular.scss
 *
 * Let's define our singular page/post styles
 *
 * - Entry Header/Footer
 * - Author Box
 * - Comments
 * - Pre Footer Block Area
 */
/* ----- Entry Header/Footer -------------------- */
.entry-header {
  padding: 0 0 var(--wp--preset--spacing--medium) 0;
}
.entry-header > * {
  max-width: var(--wp--custom--layout--thin);
  margin-left: auto;
  margin-right: auto;
}
.entry-header > *:last-child {
  margin-bottom: 0;
}
.entry-header .entry-author {
  display: block;
  width: 100%;
  margin-top: 16px;
}
.entry-header .entry-date-wrap {
  justify-content: flex-start;
  margin-top: 8px;
}

.entry-title {
  margin-top: 0;
  margin-bottom: 0;
}

.entry-footer {
  padding: 24px 0;
}
.entry-footer > * {
  max-width: var(--wp--custom--layout--thin);
  margin-left: auto;
  margin-right: auto;
}
.entry-footer > *:last-child {
  margin-bottom: 0;
}

.after-entry {
  max-width: var(--wp--custom--layout--default);
  margin: 48px auto;
}

.wp-block-buttons.wp-block-buttons--leave-comment {
  width: 100%;
  margin: 48px 0;
}
.wp-block-buttons.wp-block-buttons--leave-comment .wp-block-button {
  width: 100%;
}
.wp-block-buttons.wp-block-buttons--leave-comment .wp-block-button .wp-block-button__link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.single-terms {
  display: block;
  width: 100%;
  border: 1px solid var(--wp--preset--color--background-3);
  border-radius: 16px;
  padding: 24px;
}
.single-terms > h3 {
  margin: 0;
  color: var(--wp--preset--color--primary);
  font-size: 22px;
  line-height: 30px;
}
.single-terms__wrapper {
  display: flex;
  width: 100%;
  margin-top: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.single-terms__wrapper a {
  display: flex;
  padding: 6px;
  gap: 4px;
  background-color: var(--wp--preset--color--background-4);
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  font-weight: 800;
  border-radius: 8px;
}
.single-terms__wrapper a:hover, .single-terms__wrapper a:focus {
  background-color: #e0e5eb;
}

/* ----- Comments -------------------- */
.entry-comments {
  width: 100%;
  background-color: var(--wp--preset--color--background-4);
  padding: var(--wp--preset--spacing--medium);
  max-width: var(--wp--custom--layout--default);
  margin: 48px auto;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  border-radius: 16px;
}
.entry-comments h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.comment-list {
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid var(--wp--preset--color--main);
  list-style-type: none;
}
.comment-list li:not(.parent) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
}
.comment-list li.staff > .comment-body > .comment-author {
  color: var(--wp--preset--color--main);
}
.comment-list > li:last-child {
  margin-bottom: 0;
}
.comment-list > li:last-child ol.children > li:last-child {
  margin-bottom: 0;
}
.comment-list .comment-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.comment-list .comment-author {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  color: var(--wp--preset--color--background-2);
}
.comment-list .comment-author .says {
  display: none;
}
.comment-list .comment-author cite {
  font-style: normal;
}
.comment-list .comment-meta {
  display: flex;
  align-items: center;
}
.comment-list .comment-meta a {
  color: var(--wp--preset--color--background-3);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.comment-list p {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.comment-list p:first-child {
  margin-top: 4px;
}
.comment-list .reply {
  margin-top: 4px;
}
.comment-list .reply > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  text-decoration: none;
}
.comment-list .reply > a::before {
  content: "";
  width: 20px;
  height: 16px;
  background-image: url("../images/icons/icon-comments-blue.svg");
  background-size: 20px 16px;
}
.comment-list ol.children {
  list-style-type: none;
  width: 100%;
  padding-left: 40px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wp--preset--color--background-3);
}
.comment-list .comment-reply-title {
  font-size: var(--wp--preset--font-size--font-size-4);
  margin-top: 24px;
}
.comment-list .comment-reply-title small {
  margin-left: 8px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.comment-form p {
  margin: 0;
}
.comment-form .comment-notes,
.comment-form .logged-in-as {
  font-size: var(--wp--preset--font-size--font-size-2);
  font-style: italic;
}
.comment-form .comment-form-comment {
  width: 100%;
}
.comment-form .comment-form-author {
  width: calc(50% - var(--wp--custom--spacing--block-gap) * 0.5);
  margin-right: var(--wp--custom--spacing--block-gap);
}
.comment-form .comment-form-email {
  width: calc(50% - var(--wp--custom--spacing--block-gap) * 0.5);
}
@media (max-width: 600px) {
  .comment-form .comment-form-author,
  .comment-form .comment-form-email {
    width: 100%;
    margin-right: 0;
  }
}
.comment-form p.form-submit {
  margin: 24px 0 0;
}
@media (max-width: 600px) {
  .comment-form p.form-submit {
    width: 100%;
  }
}
.comment-form label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}
.comment-form input[type=submit] {
  background-image: url(../images/icons/icon-button-arrow-right.svg);
  background-size: 13px 12px;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  padding-right: 36px;
}
@media (max-width: 600px) {
  .comment-form input[type=submit] {
    width: 100%;
    background-image: none;
  }
}

/* ----- Block Area Pre Footer -------------------- */
.block-area.block-area-single-pre-footer {
  margin-top: var(--wp--preset--spacing--medium);
}
.block-area.block-area-single-pre-footer > * {
  max-width: var(--wp--custom--layout--default);
}

/**
 * /assets/scss/partials/layouts/social-media.scss
 *
 * Let's define our social media styles
 */
.social-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.social-media__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.social-media__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: white;
}
.social-media__link svg {
  fill: var(--wp--preset--color--main);
}
.social-media__link:hover, .social-media__link:focus, .social-media__link:active {
  text-decoration: none;
}
.social-media__link:hover svg, .social-media__link:focus svg, .social-media__link:active svg {
  fill: var(--wp--preset--color--primary);
}
.social-media.social-media--footer {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--wp--preset--color--background-3);
  width: 100%;
  justify-content: center;
}

/* Forms */
/**
 * /assets/scss/partials/forms/forms-base.scss
 *
 * Let's define our base form styles
 */
input {
  line-height: normal;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: thin dotted;
  outline-offset: -4px;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=week],
input[type=month],
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
textarea,
select {
  background: var(--wp--preset--color--white);
  border: var(--wp--custom--forms--border-width) solid var(--wp--custom--forms--border-color);
  color: var(--wp--custom--forms--text-color);
  padding: var(--wp--custom--forms--input-padding-vertical) var(--wp--custom--forms--input-padding-horizontal);
  width: 100%;
  border-radius: var(--wp--custom--forms--border-radius);
  line-height: 16px;
  font-size: 14px;
}
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=month]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  background-color: var(--wp--preset--color--white);
  border-color: var(--wp--custom--forms--border-color-focus);
  color: var(--wp--custom--forms--text-color);
  outline: 0;
}

.ginput_container_email {
  position: relative;
}
.ginput_container_email::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 12px;
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon-at.svg");
  background-size: 16px 16px;
  background-position: center;
  z-index: 2;
}
.ginput_container_email input[type=email] {
  padding-left: 36px;
}

input[type=search] {
  background-image: url("../images/icons/search.svg");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 32px;
  padding-left: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  border-radius: 0;
  font-weight: 700;
  font-size: 18px;
}
input[type=search]:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/**
 * /assets/scss/partials/forms/forms-gravity.scss
 *
 * Let's define base styles for Gravity Forms
 *
 * - Core Styles
 * - Columns
 */
/* ----- Form Core Styles -------------------- */
.gform_wrapper {
  width: 100%;
  margin-bottom: var(--wp--custom--forms--spacing);
}
.gform_wrapper fieldset {
  padding: 0;
  border: none;
}
.gform_wrapper .gfield_label .gfield_required {
  padding-left: 1px;
}
.gform_wrapper .gfield_description {
  font-size: calc(var(--wp--custom--forms--font-size) - 2px);
  margin-top: 3px;
}
.gform_wrapper .field_description_above .gfield_description {
  margin-top: 0;
  margin-bottom: 3px;
}
.gform_wrapper .gform_required_legend {
  display: none;
}
.gform_wrapper .hidden_label .gfield_label,
.gform_wrapper .hidden_sub_label,
.gform_wrapper .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}
.gform_wrapper .gform_body .gfield.gform_hidden {
  margin: 0;
}
.gform_wrapper .gfield_visibility_hidden {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.gform_wrapper textarea.medium {
  height: 138px;
}
.gform_wrapper textarea.small {
  height: 64px;
}
.gform_wrapper .gform_footer {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .gform_wrapper button.gform_button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.gform_wrapper button.gform_button span {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.gform_wrapper button.gform_button span::after {
  content: "";
  width: 13px;
  height: 12px;
  background-image: url("../images/icons/icon-button-arrow-right.svg");
  background-size: 13px 12px;
  background-position: center;
}

/* ----- Form Columns ------------------- */
.gform_body .gform_fields {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gform_body .gform_fields .gfield {
  width: 100%;
  margin-bottom: var(--wp--custom--forms--spacing);
  text-align: left;
}
.gform_body .gform_fields .gfield.spacer {
  margin-bottom: 0;
}
@media (min-width: 601px) {
  .gform_body .gform_fields .gfield--width-half {
    width: calc(50% - var(--wp--custom--forms--spacing) / 2);
  }
  .gform_body .gform_fields .gfield--width-third {
    width: calc(33.3333333333% - var(--wp--custom--forms--spacing) * 2 / 3);
  }
  .gform_body .gform_fields .gfield--width-two-thirds {
    width: calc((33.3333333333% - var(--wp--custom--forms--spacing) * 2 / 3) * 2 + var(--wp--custom--forms--spacing));
  }
  .gform_body .gform_fields .gfield--width-three-quarter {
    width: calc((100% - var(--wp--custom--forms--spacing) * 3) / 4 * 3 + var(--wp--custom--forms--spacing) * 2);
  }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .gform_body .gform_fields .gfield--width-three-quarter {
    width: calc(50% - var(--wp--custom--forms--spacing) / 2);
  }
}
@media (min-width: 601px) {
  .gform_body .gform_fields .gfield--width-quarter {
    width: calc((100% - var(--wp--custom--forms--spacing) * 3) / 4);
  }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .gform_body .gform_fields .gfield--width-quarter {
    width: calc(50% - var(--wp--custom--forms--spacing) / 2);
  }
}
.gform_body .gfield_submit_wrap[data-field-position=inline] {
  text-align: right;
}
@media (max-width: 600px) {
  .gform_body .gfield_submit_wrap[data-field-position=inline] {
    text-align: center;
  }
}

/**
 * /assets/scss/partials/forms/forms-gravity-address.scss
 *
 * Let's define styles for Gravity Forms Address Fields
 */
.ginput_container_address {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ginput_container_address span {
  width: 100%;
}
@media (max-width: 600px) {
  .ginput_container_address span {
    margin-top: var(--wp--custom--forms--spacing);
  }
  .ginput_container_address span:first-child {
    margin-top: 0;
  }
}
.ginput_container_address span.address_city, .ginput_container_address span.address_state, .ginput_container_address span.address_zip {
  width: calc((100% - var(--wp--custom--forms--spacing) * 2) / 3);
}
@media (max-width: 600px) {
  .ginput_container_address span.address_city, .ginput_container_address span.address_state, .ginput_container_address span.address_zip {
    width: 100%;
  }
}
.ginput_container_address span label {
  font-size: calc(var(--wp--custom--forms--font-size) - 2px);
  margin-top: 3px;
}
.ginput_container_address .gf_clear_complex {
  display: none;
}

/**
 * /assets/scss/partials/forms/forms-gravity-checkboxradio.scss
 *
 * Let's define styles for Gravity Forms checkboxes and radios
 */
.ginput_container .gfield_checkbox .gchoice,
.ginput_container .gfield_radio .gchoice {
  padding: 5px 0;
  position: relative;
}
.ginput_container .gfield_checkbox .gchoice > label,
.ginput_container .gfield_radio .gchoice > label {
  display: block;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 1.2;
}
.ginput_container .gfield_checkbox .gchoice > input[type=radio],
.ginput_container .gfield_radio .gchoice > input[type=radio] {
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0;
  height: 0;
  width: 0;
  cursor: pointer;
}
.ginput_container .gfield_checkbox .gchoice > input[type=radio] + *::before,
.ginput_container .gfield_radio .gchoice > input[type=radio] + *::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ebe7e7;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.15);
}
.ginput_container .gfield_checkbox .gchoice > input[type=radio] + *::after,
.ginput_container .gfield_radio .gchoice > input[type=radio] + *::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--wp--preset--color--white);
  position: absolute;
  top: 5px;
  left: 4px;
  border-radius: 10px;
  opacity: 0;
}
.ginput_container .gfield_checkbox .gchoice > input[type=radio]:checked + *::before,
.ginput_container .gfield_radio .gchoice > input[type=radio]:checked + *::before {
  background-color: var(--wp--preset--color--primary);
  box-shadow: none;
}
.ginput_container .gfield_checkbox .gchoice > input[type=radio]:checked + *::after,
.ginput_container .gfield_radio .gchoice > input[type=radio]:checked + *::after {
  opacity: 1;
}
.ginput_container .gfield_checkbox .gchoice > input[type=checkbox],
.ginput_container .gfield_radio .gchoice > input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0;
  height: 0;
  width: 0;
  cursor: pointer;
}
.ginput_container .gfield_checkbox .gchoice > input[type=checkbox] + *::before,
.ginput_container .gfield_radio .gchoice > input[type=checkbox] + *::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #ebe7e7;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.15);
}
.ginput_container .gfield_checkbox .gchoice > input[type=checkbox] + *::after,
.ginput_container .gfield_radio .gchoice > input[type=checkbox] + *::after {
  content: "";
  background-image: url("../images/forms/check-solid-white.svg");
  background-size: cover;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 3px;
  opacity: 0;
}
.ginput_container .gfield_checkbox .gchoice > input[type=checkbox]:checked + *::before,
.ginput_container .gfield_radio .gchoice > input[type=checkbox]:checked + *::before {
  background-color: var(--wp--preset--color--primary);
  box-shadow: none;
}
.ginput_container .gfield_checkbox .gchoice > input[type=checkbox]:checked + *::after,
.ginput_container .gfield_radio .gchoice > input[type=checkbox]:checked + *::after {
  opacity: 1;
}

.gf_list_2col .gfield_radio,
.gf_list_2col .gfield_checkbox,
.two-column .gfield_radio,
.two-column .gfield_checkbox,
.gf_list_3col .gfield_radio,
.gf_list_3col .gfield_checkbox,
.three-column .gfield_radio,
.three-column .gfield_checkbox,
.gf_list_4col .gfield_radio,
.gf_list_4col .gfield_checkbox,
.four-column .gfield_radio,
.four-column .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gf_list_2col .gfield_radio .gchoice,
.gf_list_2col .gfield_checkbox .gchoice,
.two-column .gfield_radio .gchoice,
.two-column .gfield_checkbox .gchoice,
.gf_list_3col .gfield_radio .gchoice,
.gf_list_3col .gfield_checkbox .gchoice,
.three-column .gfield_radio .gchoice,
.three-column .gfield_checkbox .gchoice,
.gf_list_4col .gfield_radio .gchoice,
.gf_list_4col .gfield_checkbox .gchoice,
.four-column .gfield_radio .gchoice,
.four-column .gfield_checkbox .gchoice {
  width: 49%;
  padding: 0 10px 0 0;
  margin: 10px 0 0 0;
}
.gf_list_2col .gfield_radio .gchoice:first-child,
.gf_list_2col .gfield_checkbox .gchoice:first-child,
.two-column .gfield_radio .gchoice:first-child,
.two-column .gfield_checkbox .gchoice:first-child,
.gf_list_3col .gfield_radio .gchoice:first-child,
.gf_list_3col .gfield_checkbox .gchoice:first-child,
.three-column .gfield_radio .gchoice:first-child,
.three-column .gfield_checkbox .gchoice:first-child,
.gf_list_4col .gfield_radio .gchoice:first-child,
.gf_list_4col .gfield_checkbox .gchoice:first-child,
.four-column .gfield_radio .gchoice:first-child,
.four-column .gfield_checkbox .gchoice:first-child {
  margin-top: 0;
}
@media (max-width: 500px) {
  .gf_list_2col .gfield_radio .gchoice,
  .gf_list_2col .gfield_checkbox .gchoice,
  .two-column .gfield_radio .gchoice,
  .two-column .gfield_checkbox .gchoice,
  .gf_list_3col .gfield_radio .gchoice,
  .gf_list_3col .gfield_checkbox .gchoice,
  .three-column .gfield_radio .gchoice,
  .three-column .gfield_checkbox .gchoice,
  .gf_list_4col .gfield_radio .gchoice,
  .gf_list_4col .gfield_checkbox .gchoice,
  .four-column .gfield_radio .gchoice,
  .four-column .gfield_checkbox .gchoice {
    width: 100%;
    padding-right: 0;
  }
}

@media (min-width: 501px) {
  .gf_list_2col .gfield_radio .choice:nth-child(2),
  .gf_list_2col .gfield_checkbox .choice:nth-child(2),
  .two-column .gfield_radio .choice:nth-child(2),
  .two-column .gfield_checkbox .choice:nth-child(2) {
    margin-top: 0;
  }
}

.gf_list_3col .gfield_radio .gchoice,
.gf_list_3col .gfield_checkbox .gchoice,
.three-column .gfield_radio .gchoice,
.three-column .gfield_checkbox .gchoice {
  width: 32%;
}
@media (min-width: 701px) {
  .gf_list_3col .gfield_radio .gchoice:nth-child(2), .gf_list_3col .gfield_radio .gchoice:nth-child(3),
  .gf_list_3col .gfield_checkbox .gchoice:nth-child(2),
  .gf_list_3col .gfield_checkbox .gchoice:nth-child(3),
  .three-column .gfield_radio .gchoice:nth-child(2),
  .three-column .gfield_radio .gchoice:nth-child(3),
  .three-column .gfield_checkbox .gchoice:nth-child(2),
  .three-column .gfield_checkbox .gchoice:nth-child(3) {
    margin-top: 0;
  }
}
@media (max-width: 700px) and (min-width: 501px) {
  .gf_list_3col .gfield_radio .gchoice,
  .gf_list_3col .gfield_checkbox .gchoice,
  .three-column .gfield_radio .gchoice,
  .three-column .gfield_checkbox .gchoice {
    width: 49%;
  }
  .gf_list_3col .gfield_radio .gchoice:nth-child(2),
  .gf_list_3col .gfield_checkbox .gchoice:nth-child(2),
  .three-column .gfield_radio .gchoice:nth-child(2),
  .three-column .gfield_checkbox .gchoice:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .gf_list_3col .gfield_radio .gchoice,
  .gf_list_3col .gfield_checkbox .gchoice,
  .three-column .gfield_radio .gchoice,
  .three-column .gfield_checkbox .gchoice {
    width: 100%;
  }
}

.gf_list_4col .gfield_radio .gchoice,
.gf_list_4col .gfield_checkbox .gchoice,
.four-column .gfield_radio .gchoice,
.four-column .gfield_checkbox .gchoice {
  width: 23.5%;
}
@media (min-width: 951px) {
  .gf_list_4col .gfield_radio .gchoice:nth-child(2), .gf_list_4col .gfield_radio .gchoice:nth-child(3), .gf_list_4col .gfield_radio .gchoice:nth-child(4),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(2),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(3),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(4),
  .four-column .gfield_radio .gchoice:nth-child(2),
  .four-column .gfield_radio .gchoice:nth-child(3),
  .four-column .gfield_radio .gchoice:nth-child(4),
  .four-column .gfield_checkbox .gchoice:nth-child(2),
  .four-column .gfield_checkbox .gchoice:nth-child(3),
  .four-column .gfield_checkbox .gchoice:nth-child(4) {
    margin-top: 0;
  }
}
@media (max-width: 900px) and (min-width: 701px) {
  .gf_list_4col .gfield_radio .gchoice,
  .gf_list_4col .gfield_checkbox .gchoice,
  .four-column .gfield_radio .gchoice,
  .four-column .gfield_checkbox .gchoice {
    width: 32%;
  }
  .gf_list_4col .gfield_radio .gchoice:nth-child(2), .gf_list_4col .gfield_radio .gchoice:nth-child(3),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(2),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(3),
  .four-column .gfield_radio .gchoice:nth-child(2),
  .four-column .gfield_radio .gchoice:nth-child(3),
  .four-column .gfield_checkbox .gchoice:nth-child(2),
  .four-column .gfield_checkbox .gchoice:nth-child(3) {
    margin-top: 0;
  }
}
@media (max-width: 700px) and (min-width: 501px) {
  .gf_list_4col .gfield_radio .gchoice,
  .gf_list_4col .gfield_checkbox .gchoice,
  .four-column .gfield_radio .gchoice,
  .four-column .gfield_checkbox .gchoice {
    width: 49%;
  }
  .gf_list_4col .gfield_radio .gchoice:nth-child(2),
  .gf_list_4col .gfield_checkbox .gchoice:nth-child(2),
  .four-column .gfield_radio .gchoice:nth-child(2),
  .four-column .gfield_checkbox .gchoice:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .gf_list_4col .gfield_radio .gchoice,
  .gf_list_4col .gfield_checkbox .gchoice,
  .four-column .gfield_radio .gchoice,
  .four-column .gfield_checkbox .gchoice {
    width: 100%;
  }
}

/**
 * /assets/scss/partials/forms/forms-gravity-names.scss
 *
 * Let's define styles for Gravity Forms name field
 */
.ginput_complex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ginput_complex .name_first,
.ginput_complex .name_last {
  width: calc(50% - var(--wp--custom--forms--spacing) / 2);
}
@media (max-width: 600px) {
  .ginput_complex .name_first,
  .ginput_complex .name_last {
    width: 100%;
  }
}
.ginput_complex .name_first label,
.ginput_complex .name_last label {
  display: block;
  width: 100%;
  text-align: left;
  font-size: calc(var(--wp--custom--forms--font-size) - 2px);
  margin-top: 3px;
}
@media (max-width: 600px) {
  .ginput_complex .name_last {
    margin-top: calc(var(--wp--custom--forms--input-padding-vertical) / 2);
  }
}

/**
 * /assets/scss/partials/forms/forms-gravity-select.scss
 *
 * Let's define styles for Gravity Forms select field
 */
.gform_wrapper select,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("../images/forms/arrow-down.svg");
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-color: var(--wp--custom--forms--border-color);
  border-radius: var(--wp--custom--forms--border-radius);
  padding: var(--wp--custom--forms--input-padding-vertical);
  max-width: 100%;
}
.gform_wrapper select:focus,
select:focus {
  border-color: var(--wp--custom--forms--border-color-focus);
}
.gform_wrapper select option,
select option {
  color: #333;
}

/**
 * /assets/scss/partials/forms/forms-gravity-validation.scss
 *
 * Let's define styles for Gravity Forms validation
 */
.gform_validation_errors {
  border: 2px solid var(--wp--custom--forms--error-color);
  padding: var(--wp--custom--forms--input-padding-vertical);
  margin-bottom: var(--wp--custom--forms--spacing);
  border-radius: var(--wp--custom--forms--border-radius);
  background-color: #fff9f9;
  text-align: center;
}
.gform_validation_errors h2 {
  font-size: 20px;
  margin: 0;
}

.gfield_error .validation_message {
  color: var(--wp--custom--forms--error-color);
  font-size: 12px;
  font-style: italic;
}
.gfield_error input,
.gfield_error textarea,
.gfield_error select {
  border-color: var(--wp--custom--forms--error-color);
  background-color: #fff9f9;
}
.gfield_error input:focus,
.gfield_error textarea:focus,
.gfield_error select:focus {
  border-color: var(--wp--custom--forms--error-color);
}

.gform_validation_container {
  display: none;
  position: absolute;
  left: -9000px;
}

/* Blocks */
/**
 * /assets/scss/partials/blocks/blocks-base.scss
 *
 * Let's define our basic block styles
 *
 * - Imports Core
 * - Imports ACF Blocks
 * - Base Colors
 * - Layouts
 * - Disable ACF Links
 * - Editor Variation Icon Styles
 * - Editor Title Styles
 */
/* ----- Import Core Partials -------------------- */
/**
 * /assets/scss/partials/blocks/blocks-core.scss
 *
 * Let's define our core block styles
 *
 * - Buttons
 * - Columns
 * - Cover
 * - Gallery
 * - Group
 * - Images
 * - Lists
 * - Paragraphs
 * - Quotes
 * - Search
 * - Separators
 * - Spacers
 * - Tables
 *
 */
/* ----- Buttons -------------------- */
.wp-block-button__link {
  text-decoration: none;
}
.wp-block-button__link.has-secondary-background-color {
  border-color: var(--wp--preset--color--secondary);
}
.wp-block-button__link.has-secondary-background-color:hover {
  border-color: var(--wp--custom--color--secondary-hover);
  background-color: var(--wp--custom--color--secondary-hover) !important;
}
.is-style-arrow-right .wp-block-button__link, .is-style-screen-right .wp-block-button__link, .is-style-date-right .wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.is-style-arrow-right .wp-block-button__link::after, .is-style-screen-right .wp-block-button__link::after, .is-style-date-right .wp-block-button__link::after {
  content: "";
  background-image: url("../images/icons/icon-button-arrow-right.svg");
  width: 13px;
  height: 12px;
  background-size: 13px 12px;
  background-repeat: no-repeat;
}
.is-style-screen-right .wp-block-button__link::after {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-image: url("../images/icons/icon-screen.svg");
}
.is-style-date-right .wp-block-button__link::after {
  width: 13px;
  height: 14px;
  background-size: 13px 14px;
  background-image: url("../images/icons/icon-calendar.svg");
}

/* ----- Columns -------------------- */
@media (max-width: 781px) and (min-width: 600px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column:not(:only-child) {
    flex-basis: calc((100% - 32px) / 2) !important;
  }
}
@media (max-width: 950px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile).is-style-wide-break {
    flex-wrap: wrap !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile).is-style-wide-break .wp-block-column {
    flex-basis: 100% !important;
  }
}

/* ----- Cover -------------------- */
.wp-block-cover__inner-container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--custom--layout--thin);
}
body.default-layout .wp-block-cover__inner-container {
  max-width: var(--wp--custom--layout--default);
}
body.default-layout .wp-block-cover__inner-container.alignwide {
  max-width: var(--wp--custom--layout--wide);
}

/* ----- Group -------------------- */
.wp-block-group:not(.is-horizontal) > * {
  max-width: var(--wp--custom--layout--default);
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.is-horizontal {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

/* ----- Images -------------------- */
.wp-block-image img,
figure.wp-block-image:not(.wp-block) img {
  display: block;
}
.wp-block-image.aligncenter,
figure.wp-block-image:not(.wp-block).aligncenter {
  text-align: center;
}
.wp-block-image.aligncenter img,
.wp-block-image.aligncenter > .components-resizable-box__container,
figure.wp-block-image:not(.wp-block).aligncenter img,
figure.wp-block-image:not(.wp-block).aligncenter > .components-resizable-box__container {
  display: inline-block;
}
.wp-block-image.alignfull figcaption,
figure.wp-block-image:not(.wp-block).alignfull figcaption {
  padding: 0 var(--wp--custom--spacing--viewport-padding);
}
@media (min-width: 601px) {
  .wp-block-image.alignleft, .wp-block-image.alignright,
  figure.wp-block-image:not(.wp-block).alignleft,
  figure.wp-block-image:not(.wp-block).alignright {
    margin-bottom: var(--wp--custom--spacing--block-gap);
  }
}
@media (max-width: 600px) {
  .wp-block-image .alignleft,
  .wp-block-image .alignright,
  figure.wp-block-image:not(.wp-block) .alignleft,
  figure.wp-block-image:not(.wp-block) .alignright {
    float: none;
  }
}
.wp-block-image img,
figure.wp-block-image:not(.wp-block) img {
  border-radius: 12px;
}
.wp-block-image figcaption,
figure.wp-block-image:not(.wp-block) figcaption {
  display: flex;
  margin: 8px 0 0;
  font-style: italic;
  font-size: 14px;
  line-height: 22px;
  color: var(--wp--preset--color--background-2);
}

img.emoji {
  max-width: 16px;
  display: inline-block;
}

.block-editor-block-list__layout .wp-block-image.is-style-hide-desktop {
  display: block;
  opacity: 0.5;
  padding-top: 55px;
}
.block-editor-block-list__layout .wp-block-image.is-style-hide-desktop:hover, .block-editor-block-list__layout .wp-block-image.is-style-hide-desktop.is-selected {
  opacity: 1;
}
.block-editor-block-list__layout .wp-block-image.is-style-hide-desktop::before {
  content: "The image below will be hidden on desktop but will remain visit within the editor for editing purposes.";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid red;
  padding: 10px;
  z-index: 10;
  font-size: 14px;
}

/* ----- Lists -------------------- */
.entry-content ul,
.entry-content ol,
.block-area ul,
.block-area ol,
ul.wp-block,
ol.wp-block {
  padding: 0 0 0 18px;
  margin-bottom: var(--wp--custom--spacing--block-gap);
  background-color: transparent !important;
}
.entry-content ul li,
.entry-content ol li,
.block-area ul li,
.block-area ol li,
ul.wp-block li,
ol.wp-block li {
  position: relative;
  margin-bottom: var(--wp--custom--spacing--list-gap-bottom);
  padding-left: 8px;
}
.entry-content ul li:last-child,
.entry-content ol li:last-child,
.block-area ul li:last-child,
.block-area ol li:last-child,
ul.wp-block li:last-child,
ol.wp-block li:last-child {
  margin-bottom: 0;
}
.entry-content ul li::marker,
.entry-content ol li::marker,
.block-area ul li::marker,
.block-area ol li::marker,
ul.wp-block li::marker,
ol.wp-block li::marker {
  color: var(--wp--preset--color--primary);
  margin-right: 5px;
}
.entry-content ul.has-primary-background-color li::marker,
.entry-content ol.has-primary-background-color li::marker,
.block-area ul.has-primary-background-color li::marker,
.block-area ol.has-primary-background-color li::marker,
ul.wp-block.has-primary-background-color li::marker,
ol.wp-block.has-primary-background-color li::marker {
  color: var(--wp--preset--color--primary);
}
.entry-content ul.has-secondary-background-color li::marker,
.entry-content ol.has-secondary-background-color li::marker,
.block-area ul.has-secondary-background-color li::marker,
.block-area ol.has-secondary-background-color li::marker,
ul.wp-block.has-secondary-background-color li::marker,
ol.wp-block.has-secondary-background-color li::marker {
  color: var(--wp--preset--color--secondary);
}
.entry-content ul.has-background-background-color li::marker,
.entry-content ol.has-background-background-color li::marker,
.block-area ul.has-background-background-color li::marker,
.block-area ol.has-background-background-color li::marker,
ul.wp-block.has-background-background-color li::marker,
ol.wp-block.has-background-background-color li::marker {
  color: var(--wp--preset--color--background);
}

.entry-content ol,
.block-area ol,
ol.wp-block {
  padding-left: 36px;
}
.entry-content ol li::marker,
.block-area ol li::marker,
ol.wp-block li::marker {
  font-weight: 600;
  font-family: var(--wp--preset--font-family--secondary-font);
}

/* ----- Paragraphs -------------------- */
p {
  padding: 0;
}

/* ----- Quotes -------------------- */
.wp-block-quote {
  margin: var(--wp--preset--spacing--large) auto !important;
  padding: 0 0 0 40px;
  border-left: 1px solid var(--wp--preset--color--primary);
}
@media (max-width: 600px) {
  .wp-block-quote {
    padding-left: 20px;
  }
}
.wp-block-quote p {
  font-size: var(--wp--preset--font-size--font-size-5);
  font-weight: 800;
  margin-bottom: var(--wp--custom--spacing--block-gap);
}
@media (max-width: 1100px) {
  .wp-block-quote p {
    font-size: var(--wp--preset--font-size--font-size-3);
  }
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}
.wp-block-quote cite {
  margin-top: var(--wp--custom--spacing--block-gap);
  display: block;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--wp--preset--color--background-2);
}

/* ----- Search -------------------- */
.wp-block-search {
  margin-bottom: var(--wp--custom--spacing--block-gap);
}
.wp-block-search__inside-wrapper {
  gap: 12px;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  border: var(--wp--custom--forms--border-width) solid var(--wp--custom--forms--border-color);
  padding: 0;
  border-radius: var(--wp--custom--forms--border-radius);
  line-height: 1.15;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  padding: var(--wp--custom--forms--input-padding-vertical) var(--wp--custom--forms--input-padding-horizontal);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  margin: 5px 5px 5px 0;
}
.wp-block-search__button {
  margin-left: 0;
}

/* ----- Separators -------------------- */
hr,
hr.wp-block-separator {
  border: 0;
  border-collapse: collapse;
  clear: both;
  height: 2px;
  margin: 0;
  width: 100%;
  max-width: 100% !important;
}

/* ----- Tables -------------------- */
.wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
}
.wp-block-table table th {
  border: 1px solid var(--wp--custom--color--neutral-3);
  padding: 10px;
  position: relative;
  text-align: left;
  font-size: small;
}
.wp-block-table table td {
  border: 1px solid var(--wp--custom--color--neutral-3);
  padding: 10px;
  position: relative;
  font-size: smaller;
}
.wp-block-table figcaption {
  font-size: small;
}
.wp-block-table.is-style-stripes table th, .wp-block-table.is-style-stripes table td {
  border-color: transparent;
}
.wp-block-table.is-style-stripes table tbody tr:nth-of-type(odd) {
  background-color: var(--wp--custom--color--neutral-1);
}

/* ----- Import ACF Block Partials -------------------- */
/**
 * /assets/scss/partials/blocks/blocks-acf.scss
 *
 * Let's define our custom ACF block styles
 *
 * - Email Subscribe
 * - Recent Posts
 * - Related Posts
 * - Sidebar Posts
 *
 */
/* ----- Email Subscribe -------------------- */
.block-email-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 951px) {
  .block-email-subscribe.sticky {
    z-index: 100;
    position: relative;
  }
  .block-email-subscribe.sticky.fixed:not(.fixed-bottom) {
    position: fixed;
    top: 0;
  }
  .block-email-subscribe.sticky.fixed-bottom {
    position: absolute;
    bottom: 0;
    top: auto !important;
  }
}
@media (max-width: 1000px) {
  .block-email-subscribe {
    flex-direction: column;
    row-gap: 20px;
  }
}
.block-email-subscribe__innerBlocks {
  width: calc(50% - 20px);
}
@media (max-width: 1000px) {
  .block-email-subscribe__innerBlocks {
    flex: none;
    width: 100%;
  }
  .block-email-subscribe__innerBlocks * {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .block-email-subscribe__innerBlocks h2,
  .block-email-subscribe__innerBlocks h3 {
    font-size: 22px !important;
  }
}
.block-email-subscribe__form {
  width: calc(50% - 20px);
}
@media (max-width: 1000px) {
  .block-email-subscribe__form {
    width: 100%;
  }
}
.block-email-subscribe__under-form {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
.block-email-subscribe__under-form p {
  margin: 0;
  color: var(--wp--preset--color--background-3);
  font-size: 10px;
  line-height: 14px;
}
.block-email-subscribe__under-form p a {
  color: var(--wp--preset--color--background-3);
}
.block-email-subscribe .gform_validation_errors {
  display: none !important;
}
.block-email-subscribe .gform_wrapper {
  margin: 0;
}
.block-email-subscribe .gform_wrapper form {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 20px;
}
@media (max-width: 600px) {
  .block-email-subscribe .gform_wrapper form {
    flex-direction: column;
    align-items: flex-start;
  }
}
.block-email-subscribe .gform_wrapper .gform_body {
  width: calc(100% - 155px);
}
@media (max-width: 600px) {
  .block-email-subscribe .gform_wrapper .gform_body {
    width: 100%;
  }
}
.block-email-subscribe .gform_wrapper .gform_fields {
  justify-content: flex-end;
  gap: var(--wp--custom--forms--spacing);
}
.block-email-subscribe .gform_wrapper .gform_fields .gfield {
  margin-bottom: 0;
}
.block-email-subscribe .gform_wrapper .gform_fields .gfield input[type=text],
.block-email-subscribe .gform_wrapper .gform_fields .gfield input[type=email] {
  height: 50px;
}
.block-email-subscribe .gform_wrapper .gform_footer {
  flex: 1;
}
.block-email-subscribe .gform_wrapper .gform_footer button.button {
  width: 100%;
  text-align: center;
  height: 50px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .block-email-subscribe .gform_wrapper .gform_footer button.button {
    height: 44px;
  }
}
.block-email-subscribe .gform_wrapper .gform_footer button.button:hover, .block-email-subscribe .gform_wrapper .gform_footer button.button:focus {
  background-color: var(--wp--preset--color--background-2);
  border-color: var(--wp--preset--color--background-2);
}
@media (max-width: 600px) {
  .block-email-subscribe .gform_wrapper button.gform_button span {
    justify-content: center;
  }
}
.block-email-subscribe.layout-stack-header, .block-email-subscribe.layout-stack-all {
  row-gap: 20px;
}
.block-email-subscribe.layout-stack-header .block-email-subscribe__innerBlocks, .block-email-subscribe.layout-stack-all .block-email-subscribe__innerBlocks {
  width: 100%;
}
.block-email-subscribe.layout-stack-header .block-email-subscribe__form, .block-email-subscribe.layout-stack-all .block-email-subscribe__form {
  width: 100%;
}
.block-email-subscribe.layout-stack-all .gform_wrapper form {
  flex-direction: column;
  gap: 20px;
}
.block-email-subscribe.layout-stack-all .gform_wrapper .gform_body {
  width: 100%;
}
.block-email-subscribe.layout-stack-all .gform_wrapper button.gform_button span {
  justify-content: center;
}
.block-email-subscribe.layout-stack-all .block-email-subscribe__under-form {
  margin-top: 20px;
}
.block-email-subscribe.has-main-background-color .gform_confirmation_message {
  color: white;
}

.wp-block-wd-acf-email-subscribe {
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ----- Recent Posts -------------------- */
.block-recent-posts {
  display: flex;
  flex-direction: column;
  row-gap: var(--wp--preset--spacing--medium);
  border-radius: 16px;
}
.block-recent-posts__top {
  display: flex;
  align-items: center;
  -moz-column-gap: var(--wp--preset--spacing--medium);
       column-gap: var(--wp--preset--spacing--medium);
  justify-content: space-between;
}
@media (max-width: 950px) {
  .block-recent-posts__top {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 950px) {
  .block-recent-posts__top > h1 {
    text-align: center;
  }
}
.block-recent-posts__top > h2,
.block-recent-posts__top > h3,
.block-recent-posts__top > h4 {
  color: var(--wp--preset--color--primary);
  margin: 0;
}
@media (max-width: 950px) {
  .block-recent-posts__top > h2,
  .block-recent-posts__top > h3,
  .block-recent-posts__top > h4 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .block-recent-posts__button--top {
    display: none;
  }
}
.block-recent-posts__button--bottom {
  display: none;
  justify-content: center;
}
@media (max-width: 600px) {
  .block-recent-posts__button--bottom {
    display: flex;
    width: 100%;
  }
  .block-recent-posts__button--bottom .wp-block-button,
  .block-recent-posts__button--bottom .wp-block-button__link {
    width: 100%;
  }
}
.block-recent-posts.layout-podcast .loop-item {
  background-color: white;
  border-radius: 16px;
}
.block-recent-posts.layout-podcast .loop-wrapper-threecol {
  gap: 24px;
}
.block-recent-posts.layout-podcast .loop-wrapper-threecol .loop-item.loop-item--tertiary {
  width: calc((100% - 48px) / 3);
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.block-recent-posts.layout-podcast .loop-item__thumbnail img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.block-recent-posts.layout-podcast .loop-item__content {
  padding: 24px;
}
.block-recent-posts.layout-podcast .loop-item__categories {
  margin-top: 0;
}
.block-recent-posts.layout-podcast .loop-item__categories a {
  font-size: 16px;
}

.wp-block-wd-acf-recent-posts .loop-item {
  font-size: initial;
}

/* ----- Related Posts -------------------- */
.block-related-posts {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: var(--wp--preset--spacing--medium);
  border-radius: 16px;
}
.block-related-posts > h2 {
  font-size: 22px;
  line-height: 30px;
  color: var(--wp--preset--color--primary);
  margin: 0;
}
.block-related-posts .loop-wrapper {
  max-width: none;
  margin: 0 auto;
  gap: 32px;
}
.block-related-posts .loop-wrapper .loop-item {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 768px) {
  .block-related-posts .loop-wrapper .loop-item {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 600px) {
  .block-related-posts .loop-wrapper .loop-item {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .block-related-posts .loop-wrapper .loop-item .loop-item__thumbnail img {
    width: 128px;
  }
}
.block-related-posts .loop-wrapper .loop-item__author {
  display: none;
}

/* ----- Separator -------------------- */
.wp-block-wd-acf-separator {
  background-color: transparent !important;
  margin: 0 !important;
}
.wp-block-wd-acf-separator .acf-block-body .acf-block-preview {
  min-height: 1px;
}

/* ----- Sidebar Posts --------------------  */
.block-sidebar-posts__top {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.block-sidebar-posts__header {
  font-size: 22px;
  line-height: 30px;
  margin: 0;
}
.block-sidebar-posts__icon {
  display: flex;
  align-items: center;
}
.block-sidebar-posts__icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 32px;
}
.block-sidebar-posts.no-thumbnail .loop-item__thumbnail {
  display: none;
}
.block-sidebar-posts.no-thumbnail .loop-item__content {
  padding-top: 0;
  row-gap: 12px;
}
.block-sidebar-posts.no-thumbnail .loop-item__categories {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.block-sidebar-posts.no-thumbnail .loop-item__title {
  font-size: 16px !important;
}
@media (max-width: 950px) and (min-width: 601px) {
  .block-sidebar-posts.category-podcast .loop-wrapper-sidebar {
    flex-direction: row;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.block-sidebar-posts.category-podcast .loop-wrapper-sidebar .loop-item {
  padding-top: 0;
  border-top: none;
}
@media (max-width: 950px) and (min-width: 601px) {
  .block-sidebar-posts.category-podcast .loop-wrapper-sidebar .loop-item {
    width: calc((100% - 48px) / 3);
  }
}
.block-sidebar-posts.category-podcast .loop-item__thumbnail img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.block-sidebar-posts.category-podcast .loop-item__content {
  padding: 24px;
  background-color: white;
  border-radius: 0 0 16px 16px;
}
.block-sidebar-posts.category-podcast .loop-item__categories {
  margin-top: 0;
}
.block-sidebar-posts.category-podcast .loop-item__categories a {
  font-size: 16px;
}
.block-sidebar-posts__button {
  display: flex;
  width: 100%;
  margin-top: 32px;
}
.block-sidebar-posts__button .wp-block-button {
  width: 100%;
}
.block-sidebar-posts__button .wp-block-button .wp-block-button__link {
  width: 100%;
  display: flex;
  justify-content: center;
}

.loop-wrapper-sidebar {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 20px;
}
.loop-wrapper-sidebar.layout-most-comments {
  row-gap: 0;
}
.loop-wrapper-sidebar.layout-most-comments .loop-item__categories {
  margin-bottom: 4px;
}
.loop-wrapper-sidebar .loop-item {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.loop-wrapper-sidebar .loop-item:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid #c1caf9;
}
@media (max-width: 600px) {
  .loop-wrapper-sidebar .loop-item__thumbnail img {
    width: 128px;
    border-radius: 6px;
  }
}
.loop-wrapper-sidebar .loop-item__title {
  font-weight: 700;
}
.loop-wrapper-sidebar .loop-item__author {
  display: none;
}
.loop-wrapper-sidebar .loop-item__comment-count {
  border-left: 1px solid var(--wp--preset--color--background-3);
}
.loop-wrapper-sidebar .loop-item--most-comments {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 0 !important;
  border-top: 0 !important;
  overflow: hidden;
}
.loop-wrapper-sidebar .loop-item--most-comments .loop-item__content {
  padding: 12px 0;
  flex: 1;
  row-gap: 4px;
}
.loop-wrapper-sidebar .loop-item__large-comments {
  width: 60px;
  position: relative;
}
.loop-wrapper-sidebar .loop-item__large-comments::before, .loop-wrapper-sidebar .loop-item__large-comments::after {
  content: "";
  width: 1px;
  height: 500px;
  background-color: var(--wp--preset--color--secondary);
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
}
.loop-wrapper-sidebar .loop-item__large-comments::after {
  bottom: auto;
  top: calc(100% + 2px);
}
.loop-wrapper-sidebar .loop-item__large-comments span {
  background-color: var(--wp--preset--color--primary);
  padding: 8px;
  border-radius: 2px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.loop-wrapper-sidebar .loop-item__large-comments span::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 4px;
  height: 8px;
  width: 8px;
  background-image: url("../images/icons/comment-corner.svg");
  background-size: 8px 8px;
  background-position: center;
}

.block-sidebar-lineups__top-left {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.block-sidebar-lineups__header-date {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--wp--preset--color--background-2);
  font-weight: 700;
}
.block-sidebar-lineups__content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.block-sidebar-lineups__content .show {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  position: relative;
}
.block-sidebar-lineups__content .show:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--primary);
  opacity: 0.25;
}
.block-sidebar-lineups__content .show p.show-title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}
.block-sidebar-lineups__content .show p.show-guests {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--wp--preset--color--background-2);
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width: 950px) and (min-width: 601px) {
  .block-sidebar-lineups__content .show p.show-guests {
    flex-direction: row;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}

/* ----- Base Colors -------------------- */
.has-text-color > a {
  color: inherit;
}

/* ----- Layouts -------------------- */
.entry-content > *,
.block-area > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--custom--layout--thin);
}
body.default-layout .entry-content > *,
body.default-layout .block-area > * {
  max-width: var(--wp--custom--layout--default);
}
body.default-layout .entry-content > *.alignwide,
body.default-layout .block-area > *.alignwide {
  max-width: var(--wp--custom--layout--wide);
}
body.default-layout .entry-content > *.alignfull, .entry-content > *.alignfull,
body.default-layout .block-area > *.alignfull,
.block-area > *.alignfull {
  width: calc(100% + var(--wp--custom--spacing--viewport-padding) * 2);
  max-width: 100vw;
  margin-left: calc(-1 * var(--wp--custom--spacing--viewport-padding));
  margin-right: calc(-1 * var(--wp--custom--spacing--viewport-padding));
}
@media (max-width: 768px) {
  .entry-content > *.alignwide,
  .block-area > *.alignwide {
    width: calc(100% + var(--wp--custom--spacing--viewport-padding) * 2);
    max-width: 100vw;
    margin-left: calc(-1 * var(--wp--custom--spacing--viewport-padding));
    margin-right: calc(-1 * var(--wp--custom--spacing--viewport-padding));
  }
}

body .is-layout-constrained > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

body .is-layout-constrained > * + * {
  margin-block-start: 20px;
  margin-block-end: 0;
}

body.default-layout .entry-header > *,
body.default-layout .entry-footer > *,
body.default-layout .archive-header > * {
  max-width: var(--wp--custom--layout--default);
}

body.content-sidebar-layout .entry-content > *.alignfull {
  margin-left: 0;
  margin-right: 0;
}

/* ----- Disable Links within ACF blocks -------------------- */
.acf-block-preview .acf-block.disable-pointer-events a {
  pointer-events: none;
}

/* ----- Editor Variation Icon Styles -------------------- */
.components-button.block-editor-block-variation-picker__variation.has-icon .dashicon {
  font-size: 30px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0;
}

/* ----- Editor Title Styles -------------------- */
.edit-post-visual-editor__post-title-wrapper {
  margin-top: var(--wp--style--block-gap) !important;
  padding-bottom: var(--wp--style--block-gap);
  border-bottom: 1px dashed #ccc;
}
.edit-post-visual-editor__post-title-wrapper .editor-post-title__input.wp-block {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: bold;
  color: black;
  font-size: 28px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

/*# sourceMappingURL=main.css.map */