@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: 120%;
  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;
}

.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%;
}

/* 
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%;
}
.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%;
}

.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: 15px 0 0 0;
  margin: 0;
  list-style: none;
}
.entry .article-details > li,
.entry .article-details .detail {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 15px;
  margin-bottom: 15px;
}
.entry .article-details > li label,
.entry .article-details .detail label {
  text-transform: uppercase;
  font-size: 70%;
  font-weight: 600;
}
.entry .article-details > li ul,
.entry .article-details .detail ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.entry .article-details > li ul li,
.entry .article-details .detail ul li {
  padding: 0;
  margin: 0;
}
.entry .article-hero {
  margin-bottom: 15px;
}
.entry .article-author {
  display: flex;
  align-items: center;
  margin-bottom: 7.5px;
}
.entry .article-author .author-photo {
  width: 45px;
  margin-right: 15px;
}
.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;
}

.ad-unit-wrapper {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.ad-unit-wrapper .ad-unit {
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.ad-unit-wrapper .ad-unit .adUnitIframeOverlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.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: 300px;
  height: 250px;
}
.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;
}
.ad-unit-wrapper .ad-unit:has(span) {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}
.ad-unit-wrapper .ad-unit:has(span) span {
  font-size: 1.9rem;
  opacity: 0.4;
}

.home-hero-banner {
  width: 100%;
}
@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%;
}
.home-hero-banner .ad-unit-wrapper .ad-unit iframe {
  width: 100%;
}

/* 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;
}

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;
}
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-i {
  color: currentColor !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;
}

.alert {
  position: relative;
  font-size: 2.24rem;
  background-color: transparent;
  color: currentColor;
  border: none;
  margin: 0 10px 10px;
}

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 35px 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);
}

.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 .branding {
  padding-top: 15px;
}
header .branding svg, header .branding img {
  max-width: 250px;
  max-height: 150px;
}
header .branding p {
  font-family: "Lora", serif;
  font-style: italic;
  white-space: nowrap;
}
header .ad-unit {
  text-align: right;
  width: 100%;
  padding: 0px 0px 15px 0px;
}

.brand path {
  fill: rgba(var(--spark-color-two-brand), 1) !important;
}

footer .container {
  max-width: 1420px;
}

.themechanger {
  z-index: 999;
  position: absolute;
  top: 0px;
  right: -40px;
  width: 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: 15px;
    top: 90px;
    width: 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;
  width: 30px;
}
@media only screen and (max-width: 768px) {
  .themechanger .themeSelector {
    width: 40px;
  }
}
.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: 30px;
  }
}
.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(255, 255, 255, 0.8);
}
@media only screen and (max-width: 768px) {
  body.light-mode .nav-toggle div {
    background-color: rgba(var(--spark-color-two), 1);
  }
  body.light-mode .navigation {
    background-color: white;
  }
}
@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;
  margin-bottom: 5px;
}
body.light-mode .podcasts .article .article-inside .caption {
  color: white;
}
body.light-mode .podcasts .article .article-inside .caption a:hover, body.light-mode .podcasts .article .article-inside .caption a:focus {
  color: currentColor;
}
body.light-mode .podcasts .article .article-inside .caption .title, body.light-mode .podcasts .article .article-inside .caption .lead {
  color: currentColor;
}

body.dark-mode {
  background-color: #0f1d26;
  color: white;
}
body.dark-mode header .brand .cls-1, body.dark-mode footer .brand .cls-1 {
  fill: white !important;
}
body.dark-mode header .masthead-title, body.dark-mode footer .masthead-title {
  color: white !important;
}
body.dark-mode .navigation li a {
  color: rgba(var(--spark-color-two-inverse), 1);
}
@media only screen and (max-width: 768px) {
  body.dark-mode .navigation li a {
    color: rgba(var(--spark-color-two), 1);
  }
}
body.dark-mode .navigation li a:hover, body.dark-mode .navigation li a.active {
  color: rgba(var(--spark-color-two-inverse), 1) !important;
}
@media only screen and (max-width: 768px) {
  body.dark-mode .navigation li a:hover, body.dark-mode .navigation li a.active {
    color: rgba(var(--spark-color-two), 1) !important;
  }
}
body.dark-mode .navigation li a:after {
  background-color: rgba(var(--spark-color-two-inverse), 1) !important;
}
body.dark-mode .navigation nav.secondary ul li a {
  color: #fff;
}
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 .navigation {
    background-color: #0f1d26;
  }
}
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 .article .article-inside .caption {
  color: #fff;
}
body.dark-mode .article .article-inside .caption .title, body.dark-mode .article .article-inside .caption .lead {
  color: currentColor;
}
body.dark-mode .podcasts .article {
  background: rgba(0, 0, 0, 0.7);
  margin-bottom: 5px;
}
body.dark-mode .podcasts .article .article-inside .caption {
  color: #fff;
}
body.dark-mode .podcasts .article .article-inside .caption .title, body.dark-mode .podcasts .article .article-inside .caption .lead {
  color: currentColor;
}
body.dark-mode .card {
  background: #0f1d26;
  color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

.section-sponsor {
  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: 50%;
  max-height: 100%;
  overflow: hidden;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .section-sponsor {
    width: 50%;
    position: static;
    margin-left: auto;
  }
}
.section-sponsor p {
  margin: 0 5px 0 10px;
  opacity: 0.6;
  font-size: 0.7em;
  line-height: 110%;
  text-align: right;
}
@media only screen and (max-width: 1300px) {
  .section-sponsor p {
    display: none;
  }
}
.section-sponsor a {
  display: block;
}
.section-sponsor a img {
  max-height: 40px;
  width: auto;
}

.dark-mode .section-sponsor p {
  color: black;
}

.chyron {
  background: rgba(var(--spark-color-two), 1);
  color: #fff;
  padding: 10px 40px;
  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 a {
  color: currentColor;
}
.chyron a:hover, .chyron a:focus, .chyron a:active {
  color: currentColor;
  opacity: 0.8;
}
.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: black !important;
}
.chyron p {
  margin: 0;
}
.chyron.show {
  bottom: 0;
}

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

.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 {
  display: flex;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  padding: 0.25rem;
  margin: 0 0.5rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.pagination a:first-child, .pagination span:first-child {
  margin-left: 0;
  padding-left: 0;
}
.pagination a.current, .pagination span.current {
  border-color: rgba(var(--spark-color-two), 1);
}

.newsletter-section {
  position: relative;
  background-color: rgba(var(--spark-color-two), 1);
  color: white;
  padding: 90px 30px;
  margin-top: 30px;
}
.newsletter-section .container {
  z-index: 2;
}
.newsletter-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
.newsletter-section .btn, .newsletter-section input[type=submit], .newsletter-section .fui-submit {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.newsletter-section .btn:hover, .newsletter-section .btn:focus, .newsletter-section .btn:active, .newsletter-section input[type=submit]:hover, .newsletter-section input[type=submit]:focus, .newsletter-section input[type=submit]:active, .newsletter-section .fui-submit:hover, .newsletter-section .fui-submit:focus, .newsletter-section .fui-submit:active {
  background-color: rgba(0, 0, 0, 0.35) !important;
}/*# sourceMappingURL=style.css.map */