@import url("https://fonts.googleapis.com/css2?family=Lora:wght@100;300;400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;500;700;900&family=Roboto+Mono:wght@300;400;600;700&display=swap");
html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.25px;
}

h1, .heading {
  font-size: 4.48rem;
  font-weight: 800;
  line-height: 120%;
  margin: 30px 0 15px 0;
}

h2 {
  font-size: 3.84rem;
  font-weight: 800;
  line-height: 100%;
  margin: 30px 0 15px 0;
}

h3 {
  font-size: 3.04rem;
  font-weight: 800;
  line-height: 120%;
  margin: 7.5px 0;
}

h4 {
  font-size: 2.24rem;
  font-weight: 800;
  line-height: 120%;
  margin: 7.5px 0;
}

h5 {
  font-size: 1.536rem;
  font-weight: 800;
  line-height: 120%;
  margin: 7.5px 0;
}

.lead {
  font-size: 1.92rem;
}

.serif {
  font-family: "Lora", serif;
}

.highlight {
  color: rgba(var(--spark-color-two), 1);
  font-size: 200%;
}

blockquote {
  font-size: 2.24rem;
  font-style: italic;
  width: 80%;
}
blockquote strong {
  position: relative;
}
blockquote strong:after {
  content: "";
  background-color: rgba(var(--spark-color-two), 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  padding: 10px 30px;
  width: 120%;
  height: 100%;
}

.card blockquote {
  width: 100%;
}

.text-purple {
  color: #6640D6;
}

/* 
Prevent CSS Transitions from firing on window resize. See related JS in _base.twig 
When the window is resized this can cause the offscreen nav to show. This fixes the issue.
*/
.stop-transitions * {
  animation: none !important;
  transition: none !important;
}
.stop-transitions.open header .navigation {
  display: block;
}

.row {
  position: relative;
}

.shadow {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2) !important;
}
.shadow:after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: 60px;
  right: 0;
  bottom: -30px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(30px);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  grid-gap: 1rem;
}
.tiles.columns-1 {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.tiles.columns-2 {
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.tiles.columns-3 {
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
}
.tiles.columns-4 {
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
.tiles .item {
  transition: all 120ms cubic-bezier(0.83, 0, 0.17, 1);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  position: relative;
  background: #f3f3f3;
}
.tiles .item:hover {
  transform: translate(0px, 5px) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.tiles .item:hover:after {
  width: 98%;
  bottom: -5px;
  filter: blur(5px) opacity(0.2);
}
.tiles .thumb {
  width: 100%;
  height: auto;
}
.tiles .caption {
  position: relative;
  text-align: left;
  padding: 20px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    grid-gap: 1rem;
  }
  .tiles.columns-1, .tiles.columns-2, .tiles.columns-3, .tiles.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .columns-2, .columns-3, .columns-4 {
    columns: 1;
  }
}
.card {
  padding: 30px;
  border: none;
  border-radius: 3px;
}
.card-line {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-right: none;
  border-radius: 0;
}
.card-line:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.card-highlight {
  background: rgba(var(--spark-color-two), 1);
  padding: 15px;
  border-radius: 3px;
  color: #fff;
}
.card-highlight a {
  color: #fff;
  text-decoration: none;
}

.edit-link {
  display: block;
  opacity: 1;
  border-bottom-left-radius: 5px;
  width: 20px;
  height: 20px;
  font-size: 1.28rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0;
  padding: 5px;
  color: black;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
}
.edit-link:hover {
  opacity: 1;
  color: rgba(var(--spark-color-two), 1);
  background-color: white;
}

.columns-2 {
  columns: 2;
  column-gap: 30px;
}
.columns-3 {
  columns: 3;
  column-gap: 30px;
}
.columns-4 {
  columns: 4;
  column-gap: 30px;
}

.divider {
  width: 100%;
  height: 1px;
  display: block;
  border-top: 1px solid rgba(var(--spark-color-two), 1);
  margin: 45px 0;
}

video {
  display: block;
  width: 100%;
  height: auto;
}
video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, transparent) !important;
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  display: block;
}

/* Row Background Image */
section .primary > .row > div[class*=col] {
  z-index: 1;
}

.rowBackgroundImage {
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .image {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.btn-special {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  padding: 15px 18px !important;
  display: flex;
  opacity: 0;
  transform: translateY(4rem);
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  border-radius: 3px;
}
.btn-special.active {
  opacity: 1;
  transform: translateY(0);
}
.btn-special.bookmark {
  right: auto;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .btn-special.bookmark {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .row-reverse {
    flex-direction: column-reverse;
  }
}
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.dismiss {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2.24rem;
  cursor: pointer;
  z-index: 999;
}

.hide-desktop {
  display: none;
}

@media only screen and (min-width: 769px) {
  .min-width-300 {
    min-width: 300px;
  }
}
html,
body {
  height: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
}

a {
  color: rgba(var(--spark-color-one), 1);
}
a:hover, a a:focus, a a.active {
  color: rgba(var(--spark-color-two), 1);
  text-decoration: none;
}

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

section {
  margin: 0 auto;
  position: relative;
}

.site-wrapper {
  margin: 0 auto;
}

hr {
  opacity: 1;
  border: 0;
  height: 1px;
  border-top: 1px solid rgba(var(--spark-color-two), 1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer-text {
  text-align: center;
  margin-top: 60px !important;
}

.container-fluid.expanded {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid.expanded > .row {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid.expanded > .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

/* Row Background Image */
section .primary > .row > div[class*=col] {
  z-index: 1;
}

.entry .hero {
  margin-bottom: 30px;
}
.entry .article-content .photo-caption {
  display: none;
}
.entry .article-content .ad-unit {
  margin: 30px auto;
}
.entry .article-content .lead {
  margin-bottom: 22.5px;
}
.entry .article-details {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .entry .article-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.entry .article-details > li {
  padding-top: 7.5px;
  margin-bottom: 7.5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 768px) {
  .entry .article-details > li {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    padding-right: 15px;
  }
}
.entry .article-details > li label {
  text-transform: uppercase;
  font-size: 60%;
  font-weight: 600;
  letter-spacing: 1px;
}
.entry .article-details > li p {
  font-size: 80%;
  line-height: 130%;
  font-weight: 300;
}
.entry .article-details > li ul.nav.social {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}
.entry .article-details > li ul.nav.social li {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .entry .article-details > li ul.nav.social li a {
    font-size: 3.04rem;
    margin-right: 7.5px;
  }
}
.entry .article-hero {
  margin-bottom: 15px;
}
.entry .article-hero-caption {
  font-size: 1.12rem;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.entry .article-author {
  display: flex;
  align-items: center;
  margin-bottom: 7.5px;
}
.entry .article-author .author-photo {
  width: 30px;
  margin-right: 7.5px;
}
.entry .article-author .author-photo img {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.entry .article-author-bio {
  font-size: 90%;
  line-height: 150%;
  font-weight: 300;
  margin: 15px 0;
}
.entry .article-share a {
  font-size: 3.84rem;
  margin-right: 15px;
}

.jobPostings .company-logo {
  display: block;
  width: 150px;
  margin-right: 15px;
}

/* Newswire Releases */
.newswire .releases .item {
  display: flex;
  align-items: center;
  background: white;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 22.5px;
  margin: 0 0 15px 0;
  font-weight: normal;
  text-decoration: none;
  color: black;
  border-radius: 3px;
}
.newswire .releases .item:hover {
  background-color: rgba(var(--spark-color-two), 1);
  color: white;
}
.newswire .releases .item:hover .title {
  color: white;
}
.newswire .releases .thumb {
  padding-right: 22.5px;
  font-size: 3.84rem;
}
.newswire .releases .caption .title {
  text-transform: none;
  font-weight: normal;
  color: black;
  margin: 0;
}
.newswire .releases .caption .tags {
  display: flex;
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
  list-style: none;
  margin: 7.5px 0 0 0;
  padding: 0;
}
.newswire .releases .caption .tags li {
  margin: 0 15px 0 0;
}
.newswire .releases .caption .tags li span {
  font-weight: bold;
}

.hub-election2025 .hub-title {
  padding: 15px 0 0 0;
  background: #FFC641;
  width: 100%;
  text-align: left;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hub-election2025 .hub-title h1.main-title {
  font-size: 2.7rem !important;
  margin: 0 0 5px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .hub-title {
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px 30px;
    justify-content: center;
  }
  .hub-election2025 .hub-title h1.main-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
  }
}
.hub-election2025 .hub-title .logos-wrapper .logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hub-election2025 .hub-title .logos-wrapper .logos img {
  width: 200px;
  display: inline-block;
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .hub-title .logos-wrapper .logos img {
    width: 100px;
  }
}
.hub-election2025 .hub-title .logos-wrapper .logos img.spark-logo {
  margin-bottom: 10px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .hub-title .logos-wrapper .logos img.spark-logo {
    width: 150px;
  }
}
.hub-election2025 .hub-title .logos-wrapper .logos img.northstar-logo {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .hub-title .logos-wrapper .logos img.northstar-logo {
    width: 130px;
  }
}
.hub-election2025 .section-title {
  padding: 5px 10px;
  background: #FFC641;
  border-radius: 5px;
}
.hub-election2025 .section-sponsor {
  position: relative;
  justify-content: center;
}
.hub-election2025 .election-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .election-charts {
    grid-template-columns: 1fr;
  }
}
.hub-election2025 .election-charts img {
  width: 100%;
  display: block;
}
.hub-election2025 .watchers {
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  grid-auto-flow: column;
  grid-gap: 5px;
  font-size: 8px;
  line-height: 8px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .hub-election2025 .watchers {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(16, 1fr);
    grid-gap: 2px;
  }
}
.hub-home {
  background: #FFC641;
  padding: 10px 10px 20px;
  border-radius: 5px;
  margin: 0;
}

.watchers-in-article {
  display: grid;
  grid-template-rows: repeat(16, 1fr);
  grid-auto-flow: column;
  grid-gap: 5px;
  font-size: 8px;
  line-height: 8px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .watchers-in-article {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(16, 1fr);
    grid-gap: 2px;
  }
}

.dark-mode .hub-election2025 .hub-title, .dark-mode .hub-election2025 h4 {
  color: #000;
}
.dark-mode .hub-home {
  color: #000;
}
.dark-mode svg g[id*=MAP] * {
  stroke: white;
  fill: rgba(255, 255, 255, 0.05);
}

.ad-unit-wrapper {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.ad-unit-wrapper .ad-unit {
  text-align: center;
  margin: 0 auto;
}
.ad-unit-wrapper .ad-unit #banner-ad, .ad-unit-wrapper .ad-unit iframe {
  margin-left: auto;
  margin-right: auto;
}
.ad-unit-wrapper .ad-unit.d300x250 {
  width: 302px;
  min-height: 252px;
  padding-bottom: 1px;
}
.ad-unit-wrapper .ad-unit.d336x280 {
  width: 336px;
  height: 280px;
}
.ad-unit-wrapper .ad-unit.d728x90 {
  width: 728px;
  height: 90px;
}
.ad-unit-wrapper .ad-unit.d320x50 {
  width: 320px;
  height: 50px;
}
.ad-unit-wrapper .ad-unit.d970x250 {
  width: 970px;
  height: 250px;
}
.ad-unit-wrapper .ad-unit.d970x90 {
  width: 970px;
  height: 90px;
}
.ad-unit-wrapper .ad-unit.d300x600 {
  width: 300px;
  height: 600px;
}

.home-hero-banner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .home-hero-banner {
    display: none;
  }
}
.home-hero-banner .ad-unit-wrapper {
  width: 100%;
  margin: 0 auto;
}
.home-hero-banner .ad-unit-wrapper .ad-unit {
  width: 100%;
  display: flex;
}
.home-hero-banner .ad-unit-wrapper .ad-unit iframe {
  width: 100%;
}

nav.secondary .search-form {
  position: relative;
  margin: 10px 0 0 0;
}
nav.secondary .search-form form {
  display: flex;
  position: relative;
}
nav.secondary .search-form form button {
  padding: 3px 10px 3px 10px !important;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(var(--spark-color-two-brand), 1);
  font-size: 1.2rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 26px;
}
nav.secondary .search-form form .keywords {
  padding: 3px 25px 3px 10px !important;
  font-size: 1.2rem !important;
  width: 100% !important;
  border: 1px solid rgba(var(--spark-color-two-brand), 1);
  margin: 0;
}
nav.secondary .search-form form .keywords:focus {
  outline: none;
  border: 1px solid rgba(var(--spark-color-two-brand), 1);
}

.newsletter-card {
  border-radius: 3px;
  margin: 60px auto;
  background-color: #6640d6;
  color: white;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
}
@media only screen and (min-width: 769px) {
  .newsletter-card {
    width: 90%;
    max-width: 1000px;
    display: flex;
    padding: 0;
  }
  .newsletter-card .column.left {
    width: 70%;
    padding: 0 15px;
    margin: 0;
    display: flex;
  }
  .newsletter-card .column.left .content-wrapper {
    width: 50%;
    padding: 15px;
    margin: 15px auto;
  }
  .newsletter-card .column.left .form-wrapper {
    width: 50%;
    padding: 15px;
    margin: 15px auto;
  }
  .newsletter-card .column.right {
    width: 30%;
    margin: 0;
    display: flex;
    background-size: cover;
  }
  .newsletter-card .column.right img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.newsletter-card button {
  background-color: white !important;
  color: #6640d6 !important;
  border: 2px solid white !important;
}
.newsletter-card button:hover, .newsletter-card button:focus, .newsletter-card button:active {
  background-color: transparent !important;
  color: white !important;
}
.newsletter-card .text-danger {
  color: currentColor !important;
  margin-top: 7.5px;
  font-size: 1.28rem;
  font-weight: 400;
}
.newsletter-card .fui-checkbox label {
  color: white !important;
}

.entries-newsletter .article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 7px;
  margin-bottom: 7px;
}

.newsletter-header {
  margin-bottom: 30px;
}
.newsletter-header svg {
  fill: currentColor;
}
.newsletter-header svg .buzzPurple {
  fill: #6640D6;
}
.newsletter-header .newsletter-header-image-lm {
  display: block;
}
.newsletter-header .newsletter-header-image-dm {
  display: none;
}
.newsletter-content, .newsletter-footer, .newsletter-intro {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-content a, .newsletter-footer a, .newsletter-intro a {
  color: #6640D6;
}
.newsletter-content .block, .newsletter-footer .block, .newsletter-intro .block {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.newsletter-content figcaption, .newsletter-footer figcaption, .newsletter-intro figcaption {
  font-size: 1.28rem;
  font-style: italic;
  padding: 5px 0;
}
.newsletter-article {
  border-bottom: 2px solid currentColor;
}
.newsletter-ad {
  text-align: center;
}
.newsletter-global-footer {
  padding: 45px;
}
.newsletter-global-footer * {
  color: #6640D6;
}

.dark-mode .newsletter-header .newsletter-header-image-lm {
  display: none;
}
.dark-mode .newsletter-header .newsletter-header-image-dm {
  display: block;
}

.newsletter-entry .newsletter-content .border-top {
  padding-top: 30px;
}
.newsletter-entry .newsletter-content .border-top:before {
  border-top: 3px solid currentColor !important;
  width: 100%;
  left: 0;
}
.newsletter-entry .newsletter-content .sponsored {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 45px 30px 30px;
}
.newsletter-entry .newsletter-content .sponsored:before {
  content: "Sponsored";
  text-transform: uppercase;
  text-align: right;
  font-weight: bold;
  font-size: 1rem;
  padding: 7.5px 30px;
}
.newsletter-entry .newsletter-content .sponsored img {
  margin-bottom: 15px;
}
.newsletter-entry .newsletter-content div, .newsletter-entry .newsletter-content table, .newsletter-entry .newsletter-content p {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.newsletter-entry .newsletter-content a {
  text-decoration: none;
}

.dark-mode .site-wrapper .newsletter-content a {
  color: currentColor;
  text-decoration: none;
}
.dark-mode .site-wrapper .newsletter-content div, .dark-mode .site-wrapper .newsletter-content table, .dark-mode .site-wrapper .newsletter-content p {
  background-color: transparent !important;
  color: currentColor !important;
  border-color: white !important;
}
.dark-mode .site-wrapper .newsletter-content .sponsored, .dark-mode .site-wrapper .newsletter-content *[style*="background:#F7F7F5;"] {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.dark-mode .site-wrapper .newsletter-footer * {
  color: currentColor;
}

/* Forms */
form:not(.klaviyo-form) h1, form:not(.klaviyo-form) h2, form:not(.klaviyo-form) h3, form:not(.klaviyo-form) h4 {
  font-size: revert !important;
}

input,
textarea,
select,
button,
.btn,
.form-control {
  font-size: 1.6rem !important;
  margin-bottom: 15px;
  border-radius: 3px !important;
  padding: 7.5px !important;
}

.fui-i,
.fui-label,
.fui-legend {
  color: black !important;
}

button,
.btn {
  width: auto;
  font-weight: bold !important;
  text-transform: uppercase;
  border: none !important;
  padding: 7.5px 30px !important;
  color: white !important;
  background-color: rgba(var(--spark-color-two), 1) !important;
}
button:active, button:hover,
.btn:active,
.btn:hover {
  color: white;
  background-color: black;
}
button.btn-lg,
.btn.btn-lg {
  padding: 7.5px 30px !important;
}
button.btn-sm,
.btn.btn-sm {
  font-size: 1.12rem !important;
  padding: 5px 15px !important;
}
@media only screen and (max-width: 768px) {
  button.btn-sm,
  .btn.btn-sm {
    font-size: 1.6rem !important;
  }
}
button.center,
.btn.center {
  display: block;
  margin: 0 auto;
}
button.float-right,
.btn.float-right {
  position: absolute;
  right: 0;
  float: right;
}

.fui-error-message {
  padding: 15px;
  font-size: 1.2rem;
  background: pink;
}

.fui-alert {
  font-size: 1.28rem !important;
  background-color: rgba(255, 255, 255, 0.8);
  border: rgba(0, 0, 0, 0.9);
}
.fui-alert:before {
  content: "\f06a";
  font-weight: bold;
  font-family: "Font Awesome 6 Free", sans-serif;
  display: inline-block;
  margin-right: 7.5px;
}

.fui-alert-success {
  margin: 30px 0;
  padding: 15px;
  font-size: 1.6rem;
  background: rgba(var(--spark-color-two), 1);
}

form.fui-form * {
  font-size: 100% !important;
}

.fui-checkbox label, .fui-radio label {
  line-height: normal !important;
}

.fui-checkbox label:before, .fui-radio label:before {
  top: 2px !important;
  left: 0 !important;
  margin-right: 5px !important;
}

:root {
  --fui-progress-height: 40px !important;
  --fui-check-label-height: 15px !important;
  --fui-check-label-width: 15px !important;
}

.filters {
  margin-top: 30px;
}
.filters input, .filters select {
  max-width: 500px;
}
.filters select {
  appearance: auto;
}

.border-top {
  padding-top: 15px;
  margin-top: 15px;
  border: none !important;
  position: relative;
}
.border-top:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 8px;
  display: block;
  width: calc(100% - 16px);
  border-top: 1px solid rgba(var(--spark-color-two), 1) !important;
}

.border-right {
  border: none !important;
  position: relative;
}
.border-right:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  border-right: 1px solid rgba(var(--spark-color-two), 1) !important;
}

.border-bottom {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border: none !important;
  position: relative;
}
.border-bottom:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 8px;
  display: block;
  width: calc(100% - 16px);
  border-bottom: 1px solid rgba(var(--spark-color-two), 1) !important;
}
.border-bottom-no-mobile:after {
  display: none;
}

.border-left {
  border: none !important;
  position: relative;
}
.border-left:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  border-left: 1px solid rgba(var(--spark-color-two), 1) !important;
}

@media only screen and (max-width: 768px) {
  .m-no-border-top:before,
  .m-no-border-left:before,
  .m-no-border-bottom:before,
  .m-no-border-right:before {
    display: none;
  }
  .m-no-border-top:after,
  .m-no-border-left:after,
  .m-no-border-bottom:after,
  .m-no-border-right:after {
    display: none;
  }
}
header {
  margin: 0 0 5px 0;
}
header .ad-unit {
  text-align: right;
  width: 100%;
  padding: 0px 0px 15px 0px;
}
header .branding {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}
header .branding .brand {
  display: block;
  margin-right: 15px;
  padding-right: 15px;
  width: 190px;
  border-right: 1px solid rgba(var(--spark-color-two), 1);
}
@media only screen and (max-width: 1360px) {
  header .branding .brand {
    border: 0;
  }
}
header .branding .brand .cls-1 {
  fill: rgba(var(--spark-color-two-brand), 1);
}
header .masthead-wrapper {
  width: 100%;
}
header .masthead-wrapper .masthead {
  min-height: 100px;
  display: flex;
  align-items: stretch;
  margin-top: 15px;
}
header .masthead-wrapper .masthead .masthead-title {
  display: flex;
  align-items: flex-end;
  width: 100%;
  font-size: 2.4rem;
  line-height: 100%;
  font-weight: 800;
  color: rgba(var(--spark-color-two), 1);
  margin-bottom: 2px;
}
@media only screen and (max-width: 1360px) {
  header .masthead-wrapper .masthead .masthead-title {
    display: none;
  }
}
header .masthead-wrapper .masthead .ad-unit-wrapper {
  text-align: right;
  margin: 0;
}
header .masthead-wrapper .masthead .ad-unit-wrapper .ad-unit {
  margin: 0;
  display: inline-block;
}
header .masthead-wrapper .masthead .toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  header .masthead-wrapper .masthead {
    min-height: 90px;
  }
  header .branding {
    max-width: revert;
  }
  header .branding .brand {
    display: block;
    width: 150px;
    margin: 0;
    padding: 0;
  }
  header .masthead-title {
    display: none;
  }
  header .ad-unit-wrapper {
    display: none;
  }
  header .themeSelector {
    display: none;
  }
}
.themechanger {
  z-index: 999;
  position: absolute;
  top: 0px;
  right: -40px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .themechanger {
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
  }
}
.themechanger #darkModeButton {
  display: block;
  font-size: 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .themechanger #darkModeButton {
    font-size: 22px;
    width: 40px;
    height: 40px;
  }
}
.themechanger .themeSelector {
  display: grid;
  margin: 0;
  padding: 5px;
  list-style: none;
  grid-gap: 5px;
  justify-content: end;
}
.themechanger .themeSelector a {
  display: block;
  text-indent: -9999px;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .themechanger .themeSelector a {
    width: 30px;
    height: 20px;
  }
}
.themechanger .themeSelector a:hover:before, .themechanger .themeSelector a.selected:before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 90;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 4.5px;
}

body {
  background-color: white;
}

body, .article {
  transition: background-color 400ms cubic-bezier(0.83, 0, 0.17, 1);
}

.article-inside {
  transition: color 400ms cubic-bezier(0.83, 0, 0.17, 1);
}

body.light-mode {
  background-color: white;
  color: black;
}
body.light-mode .themechanger {
  background-color: rgba(0, 0, 0, 0.1);
}
body.light-mode #darkModeButton {
  color: rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 768px) {
  body.light-mode .nav-toggle div {
    background-color: rgba(var(--spark-color-two), 1);
  }
}
@media only screen and (max-width: 768px) {
  body.light-mode .article.layout1 .article-inside .caption .title {
    color: revert;
  }
}
body.light-mode .podcasts .article {
  background-color: black;
}
body.light-mode .podcasts .article .article-inside .caption .title {
  color: white;
}
body.light-mode .podcasts .article .article-inside .caption .lead {
  color: white;
}

body.dark-mode {
  background-color: #0f1d26;
  color: white;
}
body.dark-mode header .brand .cls-1 {
  fill: rgba(var(--spark-color-two-brand), 1);
}
body.dark-mode header .masthead-title {
  color: rgba(var(--spark-color-two-brand), 1) !important;
}
body.dark-mode .navigation li a {
  color: rgba(var(--spark-color-two-inverse), 1);
}
body.dark-mode .navigation li a:hover, body.dark-mode .navigation li a.active {
  color: rgba(var(--spark-color-two-inverse), 1) !important;
}
body.dark-mode .navigation li a:after {
  background-color: rgba(var(--spark-color-two-inverse), 1) !important;
}
body.dark-mode .nav.secondary li a {
  color: rgba(var(--spark-color-two), 1);
}
body.dark-mode .section-heading .btn {
  color: rgba(var(--spark-color-two-inverse), 1) !important;
}
@media only screen and (max-width: 768px) {
  body.dark-mode .nav-toggle div {
    background-color: rgba(var(--spark-color-two), 1);
  }
}
body.dark-mode .themechanger {
  background-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode #darkModeButton {
  color: rgba(255, 255, 255, 0.8);
}
body.dark-mode .section-sponsor p {
  color: black;
}
body.dark-mode .podcasts .article {
  color: #fff;
  background: black;
}
body.dark-mode .podcasts .article .article-inside .caption .title {
  color: white;
}
body.dark-mode .card {
  background: #0f1d26;
  color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}
body.dark-mode .fui-i,
body.dark-mode .fui-label,
body.dark-mode .fui-legend {
  color: white !important;
}
body.dark-mode .cb-bg-color {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.section-sponsor {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20%);
  font-weight: normal;
  padding: 5px;
  min-width: 40%;
}
@media only screen and (max-width: 768px) {
  .section-sponsor {
    min-width: auto;
  }
}
.section-sponsor p {
  margin: 0 5px 0 10px;
  opacity: 0.6;
  font-size: 0.7em;
}
@media only screen and (max-width: 1360px) {
  .section-sponsor p {
    display: none;
  }
}
.section-sponsor a {
  display: block;
}
.section-sponsor a img {
  width: auto;
}
@media only screen and (min-width: 769px) {
  .section-sponsor a img {
    max-height: 40px;
    max-width: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .section-sponsor a img {
    max-height: 35px;
    max-width: 110px;
  }
}

.dark-mode .section-sponsor {
  min-width: auto;
  filter: invert(1) grayscale(1);
  mix-blend-mode: lighten;
}
.dark-mode .section-sponsor p {
  color: black;
}

.chyron {
  background: rgba(var(--spark-color-two), 1);
  color: #fff;
  padding: 10px;
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
}
@media only screen and (min-width: 769px) {
  .chyron {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .chyron {
    width: 100%;
    font-size: 1.28rem;
    padding-right: 40px;
  }
}
.chyron .btn {
  font-size: 1.28rem !important;
  color: rgba(var(--spark-color-two), 1) !important;
  background: white !important;
  padding: 3px 8px !important;
  margin: 5px;
  border: 1px solid white !important;
}
@media only screen and (max-width: 768px) {
  .chyron .btn {
    font-size: 1.12rem !important;
  }
}
.chyron .btn:hover {
  background: white !important;
  color: rgba(var(--spark-color-two-inverse), 1) !important;
}
.chyron a {
  color: rgba(var(--spark-color-two-inverse), 1) !important;
  text-decoration: underline;
}
.chyron a:hover {
  color: rgba(var(--spark-color-two-inverse), 1) !important;
  text-decoration: underline;
}
.chyron p {
  margin: 0;
}
.chyron.show {
  bottom: 0;
}

.card {
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .card-line {
    border: 1px solid rgba(0, 0, 0, 0.5);
  }
}
.beta-toggle {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 15px;
}
@media only screen and (min-width: 769px) {
  .beta-toggle {
    margin-top: 0;
  }
}
.beta-toggle-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1420px;
  width: 90%;
  margin: 0 auto 15px;
  padding: 15px 0;
}
@media only screen and (min-width: 769px) {
  .beta-toggle-inner {
    gap: 15px;
  }
}
.beta-toggle-inner p {
  font-weight: lighter;
  font-size: 1.28rem;
  margin: 0;
}
.beta-toggle-inner p i {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 7.5px;
}
.beta-toggle-inner p span {
  display: none;
}
@media only screen and (min-width: 769px) {
  .beta-toggle-inner p span {
    display: revert;
  }
}
.beta-toggle-inner a:hover {
  color: black;
}

.cookie-banner {
  position: fixed;
  bottom: -500px;
  right: 0;
  width: 350px;
  padding: 30px;
  background-color: white;
  color: black;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 99;
  justify-content: space-between;
  align-items: center;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  font-size: 80%;
}
.cookie-banner.show {
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .cookie-banner {
    width: 100%;
  }
}

.pagination ul {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  padding: 0;
}
.pagination ul li {
  list-style: none;
}
.pagination ul li a,
.pagination ul li span {
  padding: 0.5rem;
  margin: 0 0.5rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
.pagination ul li a:hover, .pagination ul li a:focus,
.pagination ul li span:hover,
.pagination ul li span:focus {
  color: rgba(var(--spark-color-two), 1);
}
.pagination ul li a.current,
.pagination ul li span.current {
  border-bottom: 2px solid rgba(var(--spark-color-two), 1);
}

.video-embed > div {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin-bottom: 1.5rem;
}
.video-embed > div iframe,
.video-embed > div object,
.video-embed > div embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .tile4,
  .tile3,
  .tile2,
  .tile1 {
    display: block;
  }
  .tile1 {
    margin-bottom: 15px;
  }
  .article {
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .article .article-inside {
    position: relative;
    display: flex;
    padding: 5px;
    height: 100%;
  }
  .article .article-inside a {
    text-decoration: none;
  }
  .article .article-inside a:hover {
    color: rgba(var(--spark-color-two), 1);
    text-decoration: none;
  }
  .article .article-inside .thumb {
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 3px;
    height: 100%;
    width: 80px;
  }
  .article .article-inside .thumb:hover {
    background-color: rgba(var(--spark-color-two), 1);
  }
  .article .article-inside .thumb:hover picture {
    opacity: 0.7;
  }
  .article .article-inside .thumb picture {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .article .article-inside .thumb picture img {
    opacity: 0.9;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: revert;
    max-height: revert;
  }
  .article .article-inside .caption {
    padding: 0 0 0 10px;
    width: calc(100% - 80px);
  }
  .article .article-inside .caption .title {
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0px 0px 5px 0px;
  }
  .article .article-inside .caption .lead {
    font-size: 1.28rem;
    letter-spacing: 0.25px;
    margin: 0;
  }
  .article .article-inside .caption .caption-footer {
    margin-top: 5px;
  }
  .article .article-inside .caption .caption-header,
  .article .article-inside .caption .caption-footer {
    width: 100%;
    font-size: 0.896rem;
    letter-spacing: 0.25px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.5;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 5px 0px;
    padding: 0;
    list-style: none;
  }
  .article .article-inside .caption .caption-header li,
  .article .article-inside .caption .caption-footer li {
    margin-right: 5px;
  }
  .article .article-inside .caption .caption-header li i,
  .article .article-inside .caption .caption-footer li i {
    margin-right: 2px;
  }
  .article .article-inside .thumb {
    width: 100px;
    height: revert;
  }
  .article .article-inside .caption {
    width: calc(100% - 100px);
  }
  .article .article-inside .caption .lead {
    display: none;
  }
  .article.layoutSlide .article-inside {
    display: block;
    padding: 0;
  }
  .article.layoutSlide .article-inside:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article.layoutSlide .article-inside a:hover, .article.layoutSlide .article-inside a:focus {
    color: white;
  }
  .article.layoutSlide .article-inside .thumb {
    width: 100%;
    height: revert;
  }
  .article.layoutSlide .article-inside .caption {
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: white;
  }
  .article.layoutSlide .article-inside .caption .title {
    font-size: 1.92rem;
    line-height: 110%;
  }
  .tileSlide {
    width: calc(100% + 30px);
    display: block;
    margin: 10px -15px;
  }
  .splide {
    width: 100%;
    display: block;
  }
  .splide .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0 5px;
    margin: 5px 0 15px 0;
    position: static;
  }
  .splide .splide__pagination button {
    color: black !important;
    background-color: currentColor !important;
    border: 1px solid currentColor !important;
    padding: 0 !important;
    width: 15px !important;
    height: 3px;
    border-radius: 0 !important;
    opacity: 1;
  }
  .splide .splide__pagination button.glide__bullet--active, .splide .splide__pagination button.is-active {
    color: rgba(var(--spark-color-two)) !important;
  }
  .dark-mode .splide__pagination button {
    color: white !important;
  }
  .dark-mode .splide__pagination button.glide__bullet--active {
    color: rgba(var(--spark-color-two)) !important;
  }
  footer {
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  footer .footer-inner {
    margin: 30px 0 0 0;
    padding: 15px 15px;
  }
  footer .footer-inner .brand {
    padding: 30px 0;
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
  footer .footer-inner .brand img {
    height: auto;
  }
  footer .nav {
    justify-content: center;
  }
  footer .nav li {
    margin: 0 7.5px;
  }
  footer .nav li a {
    text-decoration: none;
    font-size: 1.6rem;
  }
  footer .nav li a:hover, footer .nav li a:focus {
    text-decoration: underline;
  }
  footer .nav.social {
    font-size: 3.84rem;
  }
  footer .copyright {
    font-size: 1.28rem;
  }
  .dark-mode .footer-inner .branding svg .cls-1 {
    fill: white !important;
  }
  h1 {
    font-size: 3.5rem !important;
  }
  blockquote {
    margin-top: 30px;
    font-size: 2rem;
  }
  blockquote:before {
    position: static;
    display: block;
  }
  .fui-row {
    display: block;
  }
  .jobPostings tr {
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 2rem;
    padding: 2rem;
    display: block;
  }
  .jobPostings tr td {
    display: block;
    border: none;
  }
  .jobPostings thead {
    display: none;
  }
  .newsletter.d-flex {
    flex-direction: column;
  }
  .newsletter.d-flex > * {
    width: 100%;
  }
  .newsletter-card {
    margin: 20px;
  }
  .newsletter-card button {
    width: 100%;
  }
  .section-heading {
    border-top: 1px solid rgba(var(--spark-color-two), 1);
    margin-top: 5px;
    padding-top: 5px;
    margin-bottom: 5px;
    position: relative;
    font-weight: 800;
    min-height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .section-heading h3 {
    margin-right: 10px;
    font-size: 2.24rem;
  }
  .section-heading p {
    font-weight: 400;
  }
  .section-heading .btn {
    padding: 5px 7.5px !important;
    margin: 0 0 0 5px;
  }
  .section-heading.noborder {
    border-top: none;
    margin-top: 0;
  }
  #add-to-homscreen-prompt {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    width: 90%;
    margin: 0 auto;
    z-index: 9999;
    color: white;
    background: black;
    padding: 20px 20px 10px 25px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  #add-to-homscreen-prompt .caption {
    margin-left: 20px;
  }
  #add-to-homscreen-prompt .caption p {
    line-height: 130%;
    margin: 0 0 5px 0;
  }
  #add-to-homscreen-prompt .icon {
    font-size: 2.5rem;
    position: absolute;
    left: 15px;
    top: 25px;
    color: rgba(var(--spark-color-two), 0.8);
  }
  #add-to-homscreen-prompt .btn {
    width: 100%;
    font-size: 2rem !important;
    height: fit-content;
    margin-left: auto;
    color: white;
    background: transparent;
    padding: 0 !important;
  }
  #add-to-homscreen-prompt.show {
    bottom: 0px;
  }
  .ad-unit-wrapper.desktop {
    display: none !important;
  }
  .site-wrapper .container.primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .branding {
    max-width: 250px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-wrapper {
    height: 50px;
  }
  .navigation {
    transition: all 120ms cubic-bezier(0.83, 0, 0.17, 1);
    margin-bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
  }
  .navigation.sticky {
    position: fixed;
    top: 0;
    z-index: 9999;
  }
  .navigation nav.primary {
    padding: 0px 10px;
    margin: 0 auto;
    align-items: center;
    color: white;
    background: rgba(var(--spark-color-two), 1);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .navigation nav.primary a:hover,
  .navigation nav.primary a.active {
    color: white;
  }
  .navigation nav.primary ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  .navigation nav.primary ul li a {
    font-size: 1.28rem;
    letter-spacing: 0.5px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0 5px;
    height: 40px;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1360px) {
  .navigation nav.primary ul li a {
    font-size: 1.12rem;
    margin: 0 4px;
  }
}
@media screen and (min-width: 769px) {
  .navigation nav.primary ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  .navigation nav.primary ul li a:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 4px;
    width: 0%;
    height: 4px;
    margin: 0 auto;
    opacity: 1;
    background: white;
    transition: all 120ms cubic-bezier(0.83, 0, 0.17, 1);
  }
  .navigation nav.primary ul li a:hover:after, .navigation nav.primary ul li a.active:after {
    width: 100%;
  }
  .navigation nav.primary ul li.home-link a {
    margin-left: 0;
    margin-right: 10px;
  }
  .navigation nav.primary ul li.home-link a:before {
    right: -10px;
  }
  .navigation nav.secondary {
    position: absolute;
    top: -110px;
    width: 100%;
    display: flex;
  }
  .navigation nav.secondary ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .navigation nav.secondary ul li {
    list-style: none;
    margin: 0 15px 0 0;
    padding: 0;
    display: flex;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1360px) {
  .navigation nav.secondary ul li {
    display: none;
  }
  .navigation nav.secondary ul li:first-child {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .navigation nav.secondary ul li a {
    text-transform: uppercase;
    font-size: 1.12rem;
    font-weight: 600;
    color: rgba(var(--spark-color-two), 1);
    text-decoration: none;
  }
  .navigation nav.secondary ul li a:hover {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1360px) {
  .navigation nav.secondary .social {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .navigation nav.secondary .social li a {
    font-size: 20px;
  }
  .home .breadcrumbs {
    display: none;
  }
  .breadcrumbs {
    font-size: 1.6rem;
    color: rgba(var(--spark-color-two), 1);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .breadcrumbs a {
    color: rgba(var(--spark-color-two), 1);
  }
  .breadcrumbs .divider {
    width: 15px;
    display: block;
    border-left: 1px solid rgba(var(--spark-color-two), 1);
    margin: 15px 0;
    transform: rotate(110deg);
  }
  .tile1, .tile2, .tile3, .tile4 {
    gap: 2px;
  }
  .home-feature .tile1, .home-feature .tile2, .home-feature .tile3, .home-feature .tile4 {
    height: 100%;
  }
  .tile4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .tile3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .tile2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .tile1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .article {
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .article .article-inside {
    position: relative;
    display: flex;
    padding: 5px;
    height: 100%;
  }
  .article .article-inside a {
    text-decoration: none;
  }
  .article .article-inside a:hover {
    color: rgba(var(--spark-color-two), 1);
    text-decoration: none;
  }
  .article .article-inside .thumb {
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 3px;
    height: 100%;
    width: 80px;
  }
  .article .article-inside .thumb:hover {
    background-color: rgba(var(--spark-color-two), 1);
  }
  .article .article-inside .thumb:hover picture {
    opacity: 0.7;
  }
  .article .article-inside .thumb picture {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .article .article-inside .thumb picture img {
    opacity: 0.9;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: revert;
    max-height: revert;
  }
  .article .article-inside .caption {
    padding: 0 0 0 10px;
    width: calc(100% - 80px);
  }
  .article .article-inside .caption .title {
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0px 0px 5px 0px;
  }
  .article .article-inside .caption .lead {
    font-size: 1.28rem;
    letter-spacing: 0.25px;
    margin: 0;
  }
  .article .article-inside .caption .caption-footer {
    margin-top: 5px;
  }
  .article .article-inside .caption .caption-header,
  .article .article-inside .caption .caption-footer {
    width: 100%;
    font-size: 0.896rem;
    letter-spacing: 0.25px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.5;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 5px 0px;
    padding: 0;
    list-style: none;
  }
  .article .article-inside .caption .caption-header li,
  .article .article-inside .caption .caption-footer li {
    margin-right: 5px;
  }
  .article .article-inside .caption .caption-header li i,
  .article .article-inside .caption .caption-footer li i {
    margin-right: 2px;
  }
  .article.layout1 .article-inside {
    display: block;
  }
  .article.layout1 .article-inside .thumb {
    width: 100%;
    height: revert;
  }
  .article.layout1 .article-inside .caption {
    width: 100%;
    padding: 15px 0;
  }
  .article.layout1 .article-inside .caption .title {
    font-size: 2.4rem;
    line-height: 110%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1360px) {
  .article.layout2 .article-inside .thumb {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 769px) {
  .article.layout2 .article-inside .caption .title {
    font-size: 1.44rem;
  }
  .article.layout2 .article-inside .caption .lead {
    display: none;
  }
  .article.layout3 .article-inside .thumb {
    width: 130px;
  }
  .article.layout3 .article-inside .caption {
    width: calc(100% - 130px);
  }
  .article.layout3 .article-inside .caption .title {
    font-size: 1.6rem;
  }
  .article.layout3 .article-inside .caption .lead {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1360px) {
  .article.layout3 .article-inside .caption {
    width: calc(100% - 100px);
  }
  .article.layout3 .article-inside .caption .title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .article.layout4 .article-inside {
    display: block;
  }
  .article.layout4 .article-inside .thumb {
    width: 100%;
    height: revert;
  }
  .article.layout4 .article-inside .caption {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .article.layout4 .article-inside .caption .title {
    font-size: 2.4rem;
  }
  .article.podcastEpisode {
    padding: 7.5px;
  }
  .article.podcastEpisode .article-inside .caption .lead {
    display: block;
  }
  footer {
    background-color: rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
  }
  footer .footer-inner {
    padding: 45px 0;
  }
  footer .footer-inner .brand {
    padding: 30px 0;
    display: block;
    width: 190px;
    margin-right: 60px;
  }
  footer .nav {
    justify-content: right;
  }
  footer .nav li {
    margin: 0 7.5px;
  }
  footer .nav.social {
    font-size: 3.84rem;
  }
  footer .copyright {
    font-size: 1.28rem;
  }
  .dark-mode .footer-inner .branding svg .cls-1 {
    fill: white !important;
  }
  .d-no-border-top:after,
  .d-no-border-left:after,
  .d-no-border-bottom:after,
  .d-no-border-right:after {
    display: none;
  }
  .filterPage {
    display: flex;
  }
  .filterPage .feature-col1 {
    display: flex;
    width: 40%;
  }
  .filterPage .feature-col2 {
    display: flex;
    width: 30%;
    padding-left: 10px;
  }
  .filterPage .feature-col3 {
    display: flex;
    width: 30%;
    align-items: center;
    padding-left: 10px;
  }
  .feature {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .feature .col1 {
    display: flex;
    width: 35%;
    padding-right: 10px;
    border-right: rgba(var(--spark-color-two), 1) 1px solid;
  }
  .feature .col2 {
    display: flex;
    align-items: flex-start;
    width: calc(30% - 10px);
    margin-left: 10px;
  }
  .feature .col2 .tile1 {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    height: 100%;
  }
  .feature .col3 {
    width: calc(30% - 10px);
    margin-left: 10px;
    padding-left: 10px;
    border-left: rgba(var(--spark-color-two), 1) 1px solid;
  }
  .section-heading {
    border-top: 1px solid rgba(var(--spark-color-two), 1);
    margin-top: 5px;
    position: relative;
    font-weight: 800;
    min-height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .section-heading h4 {
    margin-right: 10px;
  }
  .section-heading p {
    font-weight: 400;
  }
  .section-heading .btn.btn-sm {
    padding: 5px 10px !important;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .section-heading.noborder {
    border-top: none;
    margin-top: 0;
  }
  .minWidth300 {
    min-width: 300px;
  }
  .minWidth730 {
    min-width: 730px;
  }
  #add-to-homscreen-prompt {
    display: none;
  }
  header,
  .rafter,
  .container.primary,
  .navigation {
    width: 90%;
    max-width: 1420px !important;
    min-width: 1000px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .ad-unit-wrapper.mobile {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */