/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
/* 
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
.home .content {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .home .content {
    padding-top: 4rem;
  }
}

.block-title {
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
  position: relative;
  display: block;
  border-bottom: 1px solid #DEE2E6;
}
.block-title a {
  color: #fd2341;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.block-title a:hover {
  color: #191919;
}
.block-title.no-border {
  border-color: transparent;
  padding-bottom: 0;
}
.block-title.big-title {
  font-size: 4rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0rem;
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .block-title.big-title {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .block-title.big-title {
    font-size: 2.4rem;
  }
}
.block-title.big-title a {
  color: #191919;
}

.featured-articles-3col-simple {
  overflow: hidden;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .home .featured-articles-3col-simple:last-child {
    margin-bottom: 0;
  }
}
.featured-articles-3col-simple + p {
  margin: 0;
}
.featured-articles-3col-simple + p #load-more {
  margin-bottom: 4rem;
}
@media (min-width: 769px) {
  .featured-articles-3col-simple .featured-posts-3col-simple.noslide {
    display: flex;
    margin-right: -5rem;
    gap: 0;
  }
  .featured-articles-3col-simple .featured-posts-3col-simple.noslide > * {
    width: 33.33%;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    border-right: 1px solid #DEE2E6;
  }
  .featured-articles-3col-simple .featured-posts-3col-simple.noslide > *:nth-child(3) {
    border-right: 0;
  }
  .featured-articles-3col-simple .featured-posts-3col-simple .blaze-track {
    display: flex;
    margin-right: -5rem;
    gap: 0;
  }
  .featured-articles-3col-simple .featured-posts-3col-simple .blaze-track > * {
    width: 33.33%;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    border-right: 1px solid #DEE2E6;
  }
  .featured-articles-3col-simple .featured-posts-3col-simple .blaze-track > *:nth-child(3) {
    border-right: 0;
  }
}
.featured-articles-3col-simple .sponsor {
  color: #6c757d;
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
.featured-articles-3col-simple .placeholders {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 2.5rem !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 768px) {
  .featured-articles-3col-simple .placeholders {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.featured-articles-3col-simple .placeholders .placeholder {
  padding-right: 2.5rem;
  border-right: 1px solid #DEE2E6;
}
.featured-articles-3col-simple .placeholders .placeholder:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .featured-articles-3col-simple .placeholders .placeholder {
    padding-right: 0;
    border-right: 0;
  }
  .featured-articles-3col-simple .placeholders .placeholder:not(:first-child) {
    display: none;
  }
}
.featured-articles-3col-simple .placeholders .placeholder .skeleton {
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
}
.featured-articles-3col-simple .placeholders .placeholder .preview-ratio {
  aspect-ratio: 16/7;
  width: 100%;
  border-radius: 2px;
}
.featured-articles-3col-simple .placeholders .placeholder .entry-tag {
  width: 80px;
  height: 8px;
  margin: 8px 0;
  border-radius: 2px;
}
.featured-articles-3col-simple .placeholders .placeholder .article-title {
  height: 42px;
  border-radius: 2px;
}

.featured-topic {
  background: #191919;
  color: white;
  padding: 6rem 0;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .featured-topic {
    padding: 4rem 0;
    margin-bottom: 6rem;
  }
}
.featured-topic .entry-tag a {
  color: #fd2341;
}
.featured-topic .entry-tag a:hover {
  text-decoration-color: rgba(253, 35, 65, 0.5) !important;
}
.featured-topic .preview-ratio {
  background: white;
}
.featured-topic .hero-feature {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(25, 25, 25, 0.7);
  display: flex;
}
@media (max-width: 768px) {
  .featured-topic .hero-feature {
    display: block;
  }
}
.featured-topic .hero-feature .left {
  width: 50%;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .featured-topic .hero-feature .left {
    margin-bottom: 3rem;
  }
}
.featured-topic .hero-feature .right {
  width: 50%;
  display: flex;
}
.featured-topic .hero-feature .right a {
  margin-bottom: 0;
  height: inherit;
  display: flex;
}
.featured-topic .hero-feature .right a > * {
  flex: 1;
  object-fit: cover;
}
@media (max-width: 768px) {
  .featured-topic .hero-feature .left, .featured-topic .hero-feature .right {
    width: 100%;
    padding: 0;
  }
}
.featured-topic .hero-feature .article-title {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .featured-topic .hero-feature .article-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .featured-topic .hero-feature .article-title {
    font-size: 2.6rem;
  }
}
.featured-topic .hero-feature .excerpt {
  font-size: 1.8rem;
  font-family: "Acta", serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .featured-topic .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
.featured-topic .hero-feature .sponsored {
  padding-top: 2rem;
  margin-top: auto;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.featured-topic .hero-feature .sponsored img {
  max-width: 12rem;
  display: block;
  margin-top: 1.5rem;
}
.featured-topic.just-cover .hero-feature {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  border: 0 !important;
}
.featured-topic.white .slider-dots button {
  background-color: white !important;
}
.featured-topic.white a {
  color: white;
}
.featured-topic.white a:hover {
  text-decoration-color: white !important;
}
.featured-topic.white .hero-feature {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.featured-topic.black .slider-dots button {
  background-color: #191919;
}
@media (min-width: 769px) {
  .featured-topic .preview-feature .blaze-track {
    display: flex;
    justify-content: space-between;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    width: auto;
    gap: 0;
  }
  .featured-topic .preview-feature .blaze-track > * {
    width: 33.33%;
    flex-shrink: initial;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}
.featured-topic.money-moves {
  padding: 0;
  overflow: hidden;
}
.featured-topic.money-moves .hero-feature {
  align-items: center;
  position: relative;
}
.featured-topic.money-moves .hero-feature .preview-ratio:after {
  display: none;
}
.featured-topic.money-moves .hero-feature .excerpt {
  font-family: "sofia-pro";
  font-size: 1.8rem;
  line-height: 1.3;
}
@media only screen and (max-width: 900px) {
  .featured-topic.money-moves .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 700px) {
  .featured-topic.money-moves .hero-feature .excerpt {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 580px) {
  .featured-topic.money-moves .hero-feature .excerpt {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 700px) {
  .featured-topic.money-moves .hero-feature .btn {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}
.featured-topic.money-moves .hero-feature .btn:hover {
  color: #021e4c;
  background-color: white;
  cursor: pointer;
}
.featured-topic.money-moves .hero-feature .left {
  position: relative;
  z-index: 5;
  width: 50%;
  margin-bottom: 0;
}
.featured-topic.money-moves .hero-feature .left .article-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media only screen and (max-width: 700px) {
  .featured-topic.money-moves .hero-feature .left .article-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 580px) {
  .featured-topic.money-moves .hero-feature .left .article-title {
    line-height: 1;
    font-size: 2.4rem;
    white-space: nowrap;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 370px) {
  .featured-topic.money-moves .hero-feature .left .article-title {
    font-size: 2.4rem;
  }
}
.featured-topic.money-moves .hero-feature .left .sponsored {
  margin-top: 0;
  padding-top: 2rem;
  color: white;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .featured-topic.money-moves .hero-feature .left .sponsored {
    font-size: 1rem;
    padding-top: 2rem;
  }
}
@media (max-width: 500px) {
  .featured-topic.money-moves .hero-feature .left .sponsored {
    padding-top: 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}
.featured-topic.money-moves .hero-feature .left .sponsored img {
  width: 13.8rem;
}
@media (max-width: 1024px) {
  .featured-topic.money-moves .hero-feature .left .sponsored img {
    width: 10rem;
  }
}
@media (max-width: 500px) {
  .featured-topic.money-moves .hero-feature .left .sponsored img {
    width: 6.5rem;
    margin-top: 0.8rem;
  }
}
.featured-topic.money-moves .hero-feature .right {
  position: relative;
  overflow: visible;
  bottom: 0;
  width: 50%;
}
.featured-topic.money-moves .hero-feature .right .preview-ratio {
  overflow: visible;
}
.featured-topic.money-moves .hero-feature .right .video-container {
  display: flex;
  position: relative;
  overflow: visible;
}
.featured-topic.money-moves .hero-feature .right .video-container .test {
  position: relative;
  display: flex;
}
.featured-topic.money-moves .hero-feature .right .video-container .test video {
  height: 340px;
  object-fit: cover;
  left: -38%;
  position: relative;
}
@media (min-width: 769px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    height: 380px;
    left: -25%;
  }
}
@media (min-width: 1025px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    height: 380px;
    left: -8%;
  }
}
@media only screen and (min-width: 1145px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    left: 0%;
  }
}
@media only screen and (min-width: 1255px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    height: 395px;
  }
}
@media only screen and (min-width: 1300px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    height: 415px;
  }
}
@media only screen and (min-width: 1380px) {
  .featured-topic.money-moves .hero-feature .right .video-container .test video {
    height: 435px;
  }
}
.featured-topic.money-moves .hero-feature .right:after {
  content: "";
  position: absolute;
  top: 0%;
  left: -21rem;
  transform-origin: center;
  transform: translate(-50%, 0%) skew(-28deg);
  content: "";
  z-index: 2;
  height: 100%;
  width: 42rem;
  background: #021E4C;
}
@media (min-width: 1025px) {
  .featured-topic.money-moves .hero-feature .right:after {
    left: -10rem;
  }
}
@media (max-width: 768px) {
  .featured-topic.money-moves .hero-feature .right:after {
    transform: translate(-50%, 0%) skew(-14deg);
  }
}
@media (max-width: 768px) {
  .featured-topic.money-moves .hero-feature {
    display: flex;
  }
}
@media (min-width: 769px) {
  .featured-topic.exporting-matters {
    padding: 0;
  }
}
.featured-topic.exporting-matters .hero-feature {
  align-items: center;
}
@media (max-width: 768px) {
  .featured-topic.exporting-matters .hero-feature {
    flex-direction: column-reverse;
    display: flex;
  }
  .featured-topic.exporting-matters .hero-feature .left {
    margin-bottom: 0;
    padding-top: 2.5rem;
  }
}
.featured-topic.exporting-matters .hero-feature .excerpt {
  font-size: 1.6rem;
}
.featured-topic.exporting-matters .hero-feature .left {
  position: relative;
  z-index: 5;
}
.featured-topic.exporting-matters .hero-feature .right {
  position: relative;
  overflow: visible;
}
.featured-topic.exporting-matters .hero-feature .right .preview-ratio {
  overflow: visible;
}
.featured-topic.exporting-matters .hero-feature .right .preview-ratio:before {
  display: none;
}
.featured-topic.exporting-matters .hero-feature .right .preview-ratio:after {
  padding-bottom: 100%;
}
.featured-topic.exporting-matters .hero-feature .right .height-100 > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .featured-topic.skills-for-tomorrow {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .featured-topic.skills-for-tomorrow {
    padding-top: 0;
  }
}
.featured-topic.skills-for-tomorrow .hero-feature {
  align-items: center;
}
@media (max-width: 768px) {
  .featured-topic.skills-for-tomorrow .hero-feature {
    flex-direction: column-reverse;
    display: flex;
  }
  .featured-topic.skills-for-tomorrow .hero-feature .left {
    margin-bottom: 0;
    padding-top: 2.5rem;
  }
}
.featured-topic.skills-for-tomorrow .hero-feature .excerpt {
  font-size: 1.6rem;
}
.featured-topic.skills-for-tomorrow .hero-feature .left {
  position: relative;
  z-index: 5;
}
.featured-topic.skills-for-tomorrow .hero-feature .left a.btn {
  background-color: white;
  border-color: white;
  color: black;
}
.featured-topic.skills-for-tomorrow .hero-feature .left a.btn:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}
.featured-topic.skills-for-tomorrow .hero-feature .right {
  position: relative;
  overflow: visible;
}
.featured-topic.skills-for-tomorrow .hero-feature .right .preview-ratio {
  overflow: visible;
}
@media (min-width: 1025px) {
  .featured-topic.skills-for-tomorrow .hero-feature .right .preview-ratio {
    max-width: 45rem;
    margin: 0 auto;
    display: block;
  }
}
.featured-topic.skills-for-tomorrow .hero-feature .right .preview-ratio:before {
  display: none;
}
.featured-topic.skills-for-tomorrow .hero-feature .right .preview-ratio:after {
  padding-bottom: 100%;
}
.featured-topic.skills-for-tomorrow .hero-feature .right .height-100 > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .featured-topic.influencer-success {
    padding: 0;
  }
}
.featured-topic.influencer-success .hero-feature {
  align-items: center;
}
@media (max-width: 768px) {
  .featured-topic.influencer-success .hero-feature {
    flex-direction: column-reverse;
    display: flex;
  }
  .featured-topic.influencer-success .hero-feature .left {
    margin-bottom: 0;
    padding-top: 2.5rem;
  }
}
.featured-topic.influencer-success .hero-feature .article-title {
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .featured-topic.influencer-success .hero-feature .article-title {
    font-size: 2rem;
  }
}
.featured-topic.influencer-success .hero-feature .excerpt {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .featured-topic.influencer-success .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
.featured-topic.influencer-success .hero-feature .left {
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .featured-topic.influencer-success .hero-feature .left {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.featured-topic.influencer-success .hero-feature .right {
  position: relative;
  overflow: visible;
}
.featured-topic.influencer-success .hero-feature .right .preview-ratio {
  overflow: visible;
  padding: 4rem 0;
  max-width: 45rem;
  margin: 0 auto;
}
.featured-topic.influencer-success .hero-feature .right .preview-ratio:before {
  display: none;
}
.featured-topic.influencer-success .hero-feature .right .preview-ratio:after {
  padding-bottom: 100%;
}
.featured-topic.influencer-success .hero-feature .right .height-100 > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .featured-topic.this-could-have-been-an-email {
    padding: 0;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature {
  align-items: center;
}
@media (max-width: 768px) {
  .featured-topic.this-could-have-been-an-email .hero-feature {
    flex-direction: column-reverse;
    display: flex;
  }
  .featured-topic.this-could-have-been-an-email .hero-feature .left {
    margin-bottom: 0;
    padding-top: 0rem;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature .article-title {
  display: none;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .featured-topic.this-could-have-been-an-email .hero-feature .article-title {
    font-size: 2rem;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature .title-sub {
  max-width: 48rem;
  margin-bottom: 2rem;
  max-width: 85%;
}
@media (max-width: 1024px) {
  .featured-topic.this-could-have-been-an-email .hero-feature .title-sub {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .featured-topic.this-could-have-been-an-email .hero-feature .title-sub {
    max-width: 90%;
    margin-top: 0rem;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature .excerpt {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .featured-topic.this-could-have-been-an-email .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature .left {
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .featured-topic.this-could-have-been-an-email .hero-feature .left {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.featured-topic.this-could-have-been-an-email .hero-feature .right {
  position: relative;
  overflow: visible;
}
.featured-topic.this-could-have-been-an-email .hero-feature .right .preview-ratio {
  overflow: visible;
  margin: 0 auto;
}
.featured-topic.this-could-have-been-an-email .hero-feature .right .preview-ratio:before {
  display: none;
}
.featured-topic.this-could-have-been-an-email .hero-feature .right .preview-ratio:after {
  padding-bottom: 100%;
}
.featured-topic.this-could-have-been-an-email .hero-feature .right .height-100 > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.featured-single {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .featured-single {
    margin-bottom: 6rem;
  }
}
.featured-single .hero-feature {
  display: flex;
}
@media (max-width: 768px) {
  .featured-single .hero-feature {
    flex-direction: column-reverse;
  }
}
@media (min-width: 769px) {
  .featured-single .hero-feature .left {
    width: 33.3%;
    padding-right: 3rem;
    margin-right: 2rem;
    border-right: 1px solid #DEE2E6;
  }
}
@media (min-width: 769px) {
  .featured-single .hero-feature .right {
    width: 66.6%;
    padding-left: 0;
  }
  .featured-single .hero-feature .right a {
    margin-bottom: 0;
  }
}
.featured-single .hero-feature .article-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .featured-single .hero-feature .article-title {
    font-size: 2.2rem;
  }
}
.featured-single .hero-feature .excerpt {
  font-size: 1.8rem;
  font-family: "Acta", serif;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .featured-single .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
.featured-single .hero-feature .author {
  font-size: 1.6rem;
}

.featured-posts-3col {
  margin-top: 4rem;
  margin-bottom: 6rem;
}
.home .featured-posts-3col {
  margin-top: 0;
}
@media (min-width: 1025px) {
  .featured-posts-3col {
    display: flex;
    justify-content: space-between;
  }
}
.featured-posts-3col .hero-feature {
  order: 2;
  width: 100%;
}
@media (max-width: 1024px) {
  .featured-posts-3col .hero-feature {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .featured-posts-3col .hero-feature:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100vw;
    left: -2rem;
    background-color: #DEE2E6;
  }
}
@media (min-width: 1025px) {
  .featured-posts-3col .hero-feature {
    width: 50%;
    display: flex;
    padding: 0 3rem;
    margin: 0 3rem;
    border-left: 1px solid #DEE2E6;
    border-right: 1px solid #DEE2E6;
  }
}
.featured-posts-3col .hero-feature > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.featured-posts-3col .hero-feature .preview-ratio {
  margin-bottom: 1.5rem;
  height: 100%;
}
.featured-posts-3col .hero-feature .preview-ratio img {
  object-fit: cover;
}
.featured-posts-3col .hero-feature .article-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .featured-posts-3col .hero-feature .article-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .featured-posts-3col .hero-feature .article-title {
    font-size: 2.2rem;
  }
}
.featured-posts-3col .hero-feature .excerpt {
  font-size: 1.8rem;
  font-family: "Acta", serif;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .featured-posts-3col .hero-feature .excerpt {
    font-size: 1.6rem;
  }
}
.featured-posts-3col .hero-feature .author {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .featured-posts-3col .hero-feature .author {
    font-size: 1.4rem;
  }
}
.featured-posts-3col .preview-feature {
  width: 100%;
  order: 1;
}
@media (min-width: 1025px) {
  .featured-posts-3col .preview-feature {
    width: 25%;
  }
  .featured-posts-3col .preview-feature > *:first-child {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #DEE2E6;
  }
}
@media (max-width: 1024px) {
  .featured-posts-3col .preview-feature {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .featured-posts-3col .preview-feature > * {
    width: calc(50% - 1.5rem);
  }
  .featured-posts-3col .preview-feature:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100vw;
    left: -2rem;
    background-color: #DEE2E6;
  }
}
@media (max-width: 768px) {
  .featured-posts-3col .preview-feature {
    display: block;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .featured-posts-3col .preview-feature > * {
    width: 100%;
  }
  .featured-posts-3col .preview-feature > *:first-child {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #DEE2E6;
  }
  .featured-posts-3col .preview-feature:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100vw;
    left: -2rem;
    background-color: #DEE2E6;
  }
}
.featured-posts-3col .small-feature {
  position: relative;
  width: 100%;
  order: 3;
}
@media (min-width: 1025px) {
  .featured-posts-3col .small-feature {
    width: 25%;
  }
  .featured-posts-3col .small-feature:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 14rem;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(transparent, white);
    pointer-events: none;
  }
  .featured-posts-3col .small-feature.scrolled:after {
    height: 4rem;
  }
  .featured-posts-3col .small-feature .arrow-down {
    content: "";
    position: absolute;
    z-index: 3;
    bottom: 0rem;
    right: 1rem;
    width: 2rem;
    background-image: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg");
    height: 2rem;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer !important;
  }
  .featured-posts-3col .small-feature:hover .arrow-down {
    opacity: 0;
    transition-delay: 3s;
  }
  .featured-posts-3col .small-feature:hover .vertical-slider .blaze-track {
    scrollbar-width: thin;
    scrollbar-color: #191919 #E9ECEF;
    -ms-overflow-style: auto;
  }
  .featured-posts-3col .small-feature:hover .vertical-slider .blaze-track::-webkit-scrollbar-track {
    background-color: #E9ECEF;
  }
  .featured-posts-3col .small-feature:hover .vertical-slider .blaze-track::-webkit-scrollbar-thumb {
    background-color: #191919;
  }
}
.featured-posts-3col .small-feature .article {
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .featured-posts-3col .small-feature .article {
    border-bottom: 0;
    height: inherit !important;
    flex: 1;
    margin-right: 0rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .featured-posts-3col .small-feature .article {
    margin-bottom: 2rem;
    padding-right: 0;
    border-bottom: 1px solid #DEE2E6;
  }
}
@media (min-width: 1025px) {
  .featured-posts-3col .small-feature .vertical-slider {
    position: absolute;
    width: 100%;
    height: calc(100% - 5rem);
    top: 5rem;
    left: 0;
    overflow: visible;
    margin-right: 0rem;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-container, .featured-posts-3col .small-feature .vertical-slider .blaze-track-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: visible;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track {
    display: block;
    position: absolute;
    width: calc(100% + 1rem);
    height: 100%;
    top: 0rem;
    left: 0;
    overflow-y: scroll;
    margin-right: -1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    transition: all 0.2s ease-in-out !important;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track::-webkit-scrollbar {
    display: block;
    width: 0.4rem;
    position: relative;
    z-index: 4;
    transition: all 0.2s ease-in-out !important;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track::-webkit-scrollbar-track {
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    border-radius: 9999px;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track::-webkit-scrollbar-thumb {
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    border-radius: 9999px;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track > * {
    display: block;
    width: 100%;
    padding-right: 1rem;
  }
  .featured-posts-3col .small-feature .vertical-slider .blaze-track > *:last-child {
    margin-bottom: -4rem;
  }
}
@media (max-width: 1024px) {
  .featured-posts-3col .small-feature .vertical-slider {
    width: 100%;
  }
}
.featured-posts-3col .heading-popular {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
  border-bottom: 1px solid #DEE2E6;
}

.featured-articles-4col {
  margin-bottom: 6rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .featured-articles-4col {
    margin-bottom: 5rem;
  }
  .featured-articles-4col.single-footer {
    display: none;
  }
}
@media (max-width: 768px) {
  .featured-articles-4col {
    margin-right: 0rem;
  }
}
@media (min-width: 769px) {
  .featured-articles-4col .featured-posts-4col .blaze-track {
    display: flex;
    flex-wrap: wrap;
    margin-right: -4rem;
    gap: 0;
    width: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-articles-4col .featured-posts-4col .blaze-track > * {
    width: calc(50% - 2.5rem);
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 5rem;
    border-right: 1px solid #DEE2E6;
  }
  .featured-articles-4col .featured-posts-4col .blaze-track > *.noborder {
    border-right: 0;
    width: calc(50% - 2rem);
    padding-right: 2rem;
    margin-right: 2rem;
  }
  .featured-articles-4col .featured-posts-4col .blaze-track > *:nth-child(even) {
    border-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .featured-articles-4col .featured-posts-4col .blaze-track > * {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 3rem;
    border-right: 0;
  }
}
@media (min-width: 769px) and (min-width: 1025px) {
  .featured-articles-4col .featured-posts-4col .blaze-track > * {
    width: calc(25% - 2rem);
    padding-right: 2rem;
    margin-right: 2rem;
    border-right: 1px solid #DEE2E6;
  }
  .featured-articles-4col .featured-posts-4col .blaze-track > *.noborder {
    border-right: 0;
    margin-top: -1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #DEE2E6;
  }
  .dark-long-read .featured-articles-4col .featured-posts-4col .blaze-track > *.noborder .article-title {
    color: white;
  }
  .featured-articles-4col .featured-posts-4col .blaze-track > *:nth-child(4) {
    border-right: 0;
  }
}

.featured-articles-slider {
  position: relative;
  background: #191919;
  color: white;
  width: 100vw;
}
.featured-articles-slider .slide {
  position: relative;
  width: 100vw;
}
@media (max-width: 768px) {
  .featured-articles-slider .slide .left {
    width: 100vw;
    position: relative;
    left: -2rem;
    height: 100%;
    overflow: hidden;
  }
  .featured-articles-slider .slide .left:after {
    content: "";
    display: block;
    padding-bottom: 56%;
  }
}
.featured-articles-slider .slide .left img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  max-width: auto;
  min-height: 100%;
  max-height: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .featured-articles-slider .slide .right {
    padding: 3rem 0 6rem;
  }
  .featured-articles-slider .slide .right .author, .featured-articles-slider .slide .right .excerpt {
    display: none;
  }
  .featured-articles-slider .slide .right .article-title {
    font-size: 2.2rem;
  }
}
.featured-articles-slider .slide .right a {
  color: white;
}
.featured-articles-slider .slide .right a:hover {
  text-decoration-color: white !important;
}
.featured-articles-slider .slide .right .entry-tag a {
  color: #fd2341;
}
.featured-articles-slider .slide .right .entry-tag a:hover {
  text-decoration-color: rgba(253, 35, 65, 0.5) !important;
}
.featured-articles-slider .slide .right .opinion-tag {
  max-width: 76px;
  text-align: center;
  color: #191919 !important;
}
@media (min-width: 769px) {
  .featured-articles-slider .slide .left {
    width: 50vw;
    position: absolute;
    right: 50%;
    height: 100%;
  }
  .featured-articles-slider .slide .left::after {
    display: none;
  }
  .featured-articles-slider .slide .right {
    padding-left: 50%;
    width: 100%;
    display: flex;
  }
  .featured-articles-slider .slide .right:after {
    content: "";
    padding-bottom: 61%;
    pointer-events: none;
    display: inline-block;
    width: 1px;
  }
  .featured-articles-slider .slide .right .text {
    padding: 4rem;
    padding-right: 0;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
  }
  .featured-articles-slider .slide .right .article-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .featured-articles-slider .slide .right .excerpt {
    font-size: 1.8rem;
    font-family: "Acta", serif;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-articles-slider .slide .right .excerpt {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) {
  .featured-articles-slider .slide .right .author {
    font-size: 1.6rem;
  }
}

.slider-container {
  position: relative;
  margin-bottom: 6rem;
  margin-top: 6rem;
}
@media (min-width: 1025px) {
  .slider-container + .alignfull {
    margin-top: -6rem;
  }
}
.slider-container .slider-dots {
  position: absolute;
  height: 3rem;
  z-index: 4;
  left: calc(50% + 4rem);
  bottom: 1rem;
}
@media (max-width: 768px) {
  .slider-container .slider-dots {
    left: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .slider-container .slider-arrows {
    display: none !important;
  }
}
.slider-container .slider-arrows {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  line-height: 0;
  right: 0;
  padding-right: 2rem;
  cursor: pointer !important;
}
.slider-container .slider-arrows button {
  width: 3rem;
  height: 3rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg");
  background-size: 1.45rem;
  background-position: 50% 53%;
  background-repeat: no-repeat;
  background-color: white;
  appearance: none;
  border: 0;
  border-radius: 50%;
  margin-left: 0.7rem;
  cursor: pointer !important;
}
.slider-container .slider-arrows .blaze-next {
  transform: rotate(-90deg);
}
.slider-container .slider-arrows .blaze-prev {
  transform: rotate(90deg);
}
.slider-container .blaze-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container .blaze-pagination button {
  font-size: 0;
  line-height: 0;
  height: 12px;
  width: 12px;
  appearance: none;
  background-color: white;
  opacity: 0.35;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .slider-container .blaze-pagination button:hover {
    opacity: 0.6;
  }
}
.slider-container .blaze-pagination button.active {
  opacity: 1 !important;
  cursor: default !important;
}

.article-slider.slider-container {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .article-slider.slider-container {
    margin-top: 3rem;
  }
}
.article-slider.slider-container:before {
  display: block;
  clear: both;
  content: "";
}
.article-slider.slider-container .slider-arrows {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  line-height: 0;
  right: 0;
  padding-right: 2rem;
  cursor: pointer !important;
}
.article-slider.slider-container .slider-arrows button {
  width: 3rem;
  height: 3rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg");
  background-size: 1.45rem;
  background-position: 50% 53%;
  background-repeat: no-repeat;
  background-color: white;
  appearance: none;
  border: 0;
  border-radius: 50%;
  margin-left: 0.7rem;
  cursor: pointer !important;
}
.article-slider.slider-container .slider-arrows .blaze-next {
  transform: rotate(-90deg);
}
.article-slider.slider-container .slider-arrows .blaze-prev {
  transform: rotate(90deg);
}
.article-slider.slider-container .blaze-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2rem;
  bottom: 2rem;
}
.article-slider.slider-container .blaze-pagination button {
  font-size: 0;
  line-height: 0;
  height: 12px;
  width: 12px;
  appearance: none;
  background-color: white;
  opacity: 0.35;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .article-slider.slider-container .blaze-pagination button:hover {
    opacity: 0.6;
  }
}
.article-slider.slider-container .blaze-pagination button.active {
  opacity: 1 !important;
  cursor: default !important;
}
@media (min-width: 769px) {
  .article-slider.slider-container.slider-container .slider-arrows {
    right: calc(0% + 0rem);
    bottom: 6rem;
  }
}
@media (min-width: 1025px) {
  .article-slider.slider-container.slider-container .slider-arrows {
    right: calc(50% + 4rem);
  }
}
@media (min-width: 769px) {
  .article-slider.slider-container.slider-container .slider-dots {
    display: none !important;
  }
}
.article-slider.slider-container .featured-articles-slider {
  background: var(--slider-bg-color);
  color: var(--slider-text-color);
}
.article-slider.slider-container .featured-articles-slider a {
  color: var(--slider-text-color) !important;
}
.article-slider.slider-container .featured-articles-slider .opinion-tag, .article-slider.slider-container .featured-articles-slider .entry-tag a {
  background-color: transparent;
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-size: 2rem;
  padding: 0;
  padding-left: 0.5rem;
}
.article-slider.slider-container .featured-articles-slider .article-title {
  font-size: 4rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .article-slider.slider-container .featured-articles-slider .article-title {
    font-size: 8rem;
  }
}
.article-slider.slider-container .featured-articles-slider .left, .article-slider.slider-container .featured-articles-slider .right {
  width: 100%;
  position: relative;
  padding: 0;
  right: auto;
}
@media (min-width: 1025px) {
  .article-slider.slider-container .featured-articles-slider .wrap {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .article-slider.slider-container .featured-articles-slider .left {
    width: 50%;
  }
}
.article-slider.slider-container .featured-articles-slider .left:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 55%;
}
@media (max-width: 1024px) {
  .article-slider.slider-container .featured-articles-slider .left {
    left: -2rem;
    width: calc(100% + 4rem);
  }
}
@media (max-width: 768px) {
  .article-slider.slider-container .featured-articles-slider .right {
    padding: 2rem 0 8rem;
  }
}
@media (min-width: 1025px) {
  .article-slider.slider-container .featured-articles-slider .right {
    position: absolute;
    max-width: 1260px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1025px) {
  .article-slider.slider-container .featured-articles-slider .right .text {
    padding-left: 2rem;
    padding-right: 50%;
  }
}
@media (min-width: 1025px) {
  .article-slider.slider-container .featured-articles-slider .right .text {
    padding-bottom: 0;
  }
  .article-slider.slider-container .featured-articles-slider .slide .wrap {
    display: flex;
    flex-direction: row-reverse;
  }
}

.featured-posts-2col {
  margin-top: 0;
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .featured-posts-2col {
    display: flex;
    justify-content: space-between;
  }
}
.featured-posts-2col .hero-feature {
  width: 100%;
  order: 0;
}
@media (max-width: 1024px) {
  .featured-posts-2col .hero-feature {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #DEE2E6;
  }
}
@media (min-width: 1025px) {
  .featured-posts-2col .hero-feature {
    width: 50%;
    padding-right: 3rem;
    margin-right: 0rem;
    border-right: 1px solid #DEE2E6;
  }
}
.featured-posts-2col .hero-feature .preview-ratio {
  margin-bottom: 1.5rem;
}
@media (min-width: 1025px) {
  .featured-posts-2col .hero-feature .preview-ratio {
    margin-bottom: 2.5rem;
  }
}
.featured-posts-2col .hero-feature .preview-ratio:after {
  padding-bottom: 56%;
}
.featured-posts-2col .hero-feature .article-title {
  font-size: 2.6rem;
  line-height: 1.2;
}
@media (min-width: 1025px) {
  .featured-posts-2col .hero-feature .article-title {
    margin-top: 1rem;
  }
}
@media (max-width: 1024px) {
  .featured-posts-2col .hero-feature .article-title {
    margin-bottom: 0rem;
    font-size: 2.2rem;
  }
}
.featured-posts-2col .preview-feature {
  width: 100%;
  order: 1;
}
@media (min-width: 1025px) {
  .featured-posts-2col .preview-feature {
    width: 50%;
    padding-left: 3rem;
  }
}
@media (max-width: 1024px) {
  .featured-posts-2col .preview-feature {
    display: flex;
    justify-content: space-between;
  }
  .featured-posts-2col .preview-feature > * {
    width: calc(33.33% - 3rem);
  }
}
@media (max-width: 768px) {
  .featured-posts-2col .preview-feature {
    display: block;
  }
  .featured-posts-2col .preview-feature > * {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #DEE2E6;
  }
  .featured-posts-2col .preview-feature > * .left:not(.left-mobile) {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .featured-posts-2col .preview-feature > * {
    display: flex;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #DEE2E6;
  }
  .featured-posts-2col .preview-feature > * .left {
    width: 40%;
  }
  .featured-posts-2col .preview-feature > * .left a {
    margin-bottom: 0;
  }
  .featured-posts-2col .preview-feature > * .right {
    width: 60%;
    padding-left: 3rem;
  }
}
.featured-posts-2col .preview-feature > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.campaign-block {
  background: var(--camp-bg-color);
  color: var(--camp-text-color);
  padding: 4rem 0;
}
.campaign-block + * {
  margin-top: 4rem;
}
@media (min-width: 1025px) {
  .campaign-block + * {
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .campaign-block {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.campaign-block .block-title {
  color: var(--camp-text-color);
  border: 0 !important;
  border: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 2.8rem;
}
.campaign-block .block-title * {
  color: var(--camp-text-color) !important;
}
@media (min-width: 769px) {
  .campaign-block .block-title {
    font-size: 3.6rem;
  }
}
@media (min-width: 1025px) {
  .campaign-block .block-title {
    font-size: 5rem;
  }
}
.campaign-block .stand-first p {
  font-family: "sofia-pro";
  color: var(--camp-text-color);
}
.campaign-block .stand-first p:last-child {
  margin-bottom: 0;
}
.campaign-block .article-title {
  color: var(--camp-text-color);
}
.campaign-block .sponsored {
  padding-top: 4rem;
  margin-top: auto;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: bold;
  color: var(--camp-text-color);
}
.campaign-block .sponsored img {
  max-width: 14rem;
  display: block;
  margin-top: 1.5rem;
}
@media (min-width: 1025px) {
  .campaign-block .sponsored img {
    max-width: 17rem;
  }
}
.campaign-block .slider-dots .blaze-pagination button {
  background-color: var(--camp-text-color) !important;
}
.campaign-block .articles-campaign-block.expanded {
  margin-top: 3rem;
}
.campaign-block .articles-campaign-block.expanded .hero-article {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--camp-border-color);
  padding-bottom: 3rem;
}
@media (min-width: 1025px) {
  .campaign-block .articles-campaign-block.expanded .hero-article {
    display: flex;
  }
  .campaign-block .articles-campaign-block.expanded .hero-article > * {
    width: 50%;
  }
  .campaign-block .articles-campaign-block.expanded .hero-article > *:nth-child(odd) {
    padding-right: 1.5rem;
  }
  .campaign-block .articles-campaign-block.expanded .hero-article > *:nth-child(even) {
    padding-left: 1.5rem;
  }
}
.campaign-block .articles-campaign-block.expanded .hero-article .article-title {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.expanded .hero-article .article-title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1025px) {
  .campaign-block .articles-campaign-block.expanded .hero-article .article-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .campaign-block .articles-campaign-block.expanded .hero-article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .campaign-block .articles-campaign-block.expanded .hero-article .right {
    margin-top: 2.5rem;
  }
}
.campaign-block .articles-campaign-block.expanded .slider-dots {
  margin-top: 2rem;
}
.campaign-block .articles-campaign-block.expanded .slider-dots .blaze-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-block .articles-campaign-block.expanded .slider-dots .blaze-pagination button {
  font-size: 0;
  line-height: 0;
  height: 12px;
  width: 12px;
  appearance: none;
  background-color: var(--camp-text-color);
  opacity: 0.35;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .campaign-block .articles-campaign-block.expanded .slider-dots .blaze-pagination button:hover {
    opacity: 0.6;
  }
}
.campaign-block .articles-campaign-block.expanded .slider-dots .blaze-pagination button.active {
  opacity: 1 !important;
  cursor: default !important;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.minimal .block-title {
    font-size: 2.8rem;
  }
}
.campaign-block .articles-campaign-block.minimal .sponsored {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.minimal .sponsored {
    font-size: 1rem;
    padding-bottom: 0;
  }
}
.campaign-block .articles-campaign-block.minimal .sponsored img {
  max-width: 10rem;
}
.campaign-block .articles-campaign-block.minimal .minimal-block {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.minimal .minimal-block {
    flex-direction: row;
  }
  .campaign-block .articles-campaign-block.minimal .minimal-block > *:nth-child(odd) {
    padding-right: 3rem;
    width: calc(33.33% - 3rem);
  }
  .campaign-block .articles-campaign-block.minimal .minimal-block > *:nth-child(even) {
    padding-left: 3rem;
    width: calc(66.66% + 3rem);
  }
}
.campaign-block .articles-campaign-block.minimal .minimal-block .commercial-sponsored {
  display: none;
}
.campaign-block .articles-campaign-block.minimal .slider-dots {
  margin-top: 2rem;
}
.campaign-block .articles-campaign-block.minimal .slider-dots .blaze-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-block .articles-campaign-block.minimal .slider-dots .blaze-pagination button {
  font-size: 0;
  line-height: 0;
  height: 12px;
  width: 12px;
  appearance: none;
  background-color: var(--camp-text-color);
  opacity: 0.35;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .campaign-block .articles-campaign-block.minimal .slider-dots .blaze-pagination button:hover {
    opacity: 0.6;
  }
}
.campaign-block .articles-campaign-block.minimal .slider-dots .blaze-pagination button.active {
  opacity: 1 !important;
  cursor: default !important;
}
@media (max-width: 768px) {
  .campaign-block .articles-campaign-block.minimal .slider-block {
    aspect-ratio: 1.8;
  }
}
.campaign-block .articles-campaign-block.minimal .slider-block.loading {
  position: relative;
  height: 100%;
}
.campaign-block .articles-campaign-block.minimal .slider-block.loading * {
  display: none;
  pointer-events: none;
}
.campaign-block .articles-campaign-block.minimal .slider-block.loading:after {
  /* add a gradient animation */
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation: shine 1.5s ease infinite;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
}
.campaign-block .articles-campaign-block.extra-minimal .block-title {
  font-size: 2rem;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.extra-minimal .block-title {
    font-size: 2.8rem;
  }
}
.campaign-block .articles-campaign-block.extra-minimal .top {
  display: flex;
  margin-bottom: 3rem;
  justify-content: space-between;
}
.campaign-block .articles-campaign-block.extra-minimal .top .left > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .campaign-block .articles-campaign-block.extra-minimal .top {
    margin-bottom: 2rem;
  }
}
.campaign-block .articles-campaign-block.extra-minimal .sponsored {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0rem;
  flex-direction: column;
  font-size: 1rem;
  padding-left: 2rem;
  white-space: nowrap;
}
.campaign-block .articles-campaign-block.extra-minimal .sponsored img {
  max-width: 8rem;
  margin-top: 0.5rem;
}
@media (min-width: 769px) {
  .campaign-block .articles-campaign-block.extra-minimal .sponsored img {
    max-width: 10rem;
  }
}
.campaign-block .articles-campaign-block.extra-minimal .sponsored a {
  text-align: right;
}
.campaign-block .articles-campaign-block.extra-minimal .commercial-sponsored {
  display: none;
}
.campaign-block .articles-campaign-block.extra-minimal .slider-dots {
  margin-top: 2rem;
}
.campaign-block .articles-campaign-block.extra-minimal .slider-dots .blaze-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-block .articles-campaign-block.extra-minimal .slider-dots .blaze-pagination button {
  font-size: 0;
  line-height: 0;
  height: 12px;
  width: 12px;
  appearance: none;
  background-color: var(--camp-text-color);
  opacity: 0.35;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .campaign-block .articles-campaign-block.extra-minimal .slider-dots .blaze-pagination button:hover {
    opacity: 0.6;
  }
}
.campaign-block .articles-campaign-block.extra-minimal .slider-dots .blaze-pagination button.active {
  opacity: 1 !important;
  cursor: default !important;
}
.campaign-block .articles-campaign-block.extra-minimal .slider-block.loading {
  position: relative;
  height: 100%;
  aspect-ratio: 5;
}
@media (max-width: 768px) {
  .campaign-block .articles-campaign-block.extra-minimal .slider-block.loading {
    aspect-ratio: 1.8;
  }
}
.campaign-block .articles-campaign-block.extra-minimal .slider-block.loading * {
  display: none;
  pointer-events: none;
}
.campaign-block .articles-campaign-block.extra-minimal .slider-block.loading:after {
  /* add a gradient animation */
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation: shine 1.5s ease infinite;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
}
@media (min-width: 1025px) {
  .campaign-block .campaign-posts-grid .blaze-track {
    display: flex;
    justify-content: space-between;
  }
  .campaign-block .campaign-posts-grid .blaze-track .article-entry {
    max-width: calc(33.3333333333% - 3rem);
  }
}

.extra-links-home-block {
  display: flex;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.extra-links-home-block .extra-link-single {
  margin-top: 0.5rem;
  line-height: 1;
}
.extra-links-home-block .extra-link-single:not(:last-child) {
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .extra-links-home-block .extra-link-single:not(:last-child) {
    margin-right: 2rem;
  }
}
.extra-links-home-block .extra-link-single .entry-tag {
  display: block;
}
.extra-links-home-block .extra-link-single .entry-tag a {
  white-space: nowrap;
  line-height: 1;
}

.rac50-home {
  background-color: #343A40;
  padding: 4rem 0;
  color: white;
}
.rac50-home .flex {
  display: flex;
  align-items: center;
}
.rac50-home .flex > *:first-child {
  width: 40%;
}
.rac50-home .flex > *:last-child {
  width: 60%;
  padding-left: 6rem;
}
.rac50-home .flex .image {
  width: 100%;
  background-image: url("https://assets.raconteur.net/uploads/2025/05/rac50home-hd.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.rac50-home .flex .image:after {
  content: "";
  padding-bottom: 92%;
  width: 100%;
  display: block;
}
.rac50-home .flex .title {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 2rem;
}
.rac50-home .flex .description {
  font-size: 2.4rem;
}
.rac50-home .flex .sub-desc {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 2.4rem;
}
.rac50-home .flex .btn {
  background: white;
  color: #343A40;
  border-radius: 0.8rem;
  cursor: pointer;
  font-size: 2rem;
  text-transform: none;
}
.rac50-home .flex .btn:hover {
  background: transparent;
  color: white;
}
@media (max-width: 1080px) {
  .rac50-home .flex > *:first-child {
    width: calc(50% - 3rem);
  }
  .rac50-home .flex > *:last-child {
    width: calc(50% + 3rem);
    padding-left: 3rem;
  }
  .rac50-home .flex .image {
    background-image: url("https://assets.raconteur.net/uploads/2025/05/rac50home-1080.svg");
  }
  .rac50-home .flex .image:after {
    padding-bottom: 97%;
  }
  .rac50-home .flex .title {
    font-size: 3.6rem;
  }
  .rac50-home .flex .description, .rac50-home .flex .sub-desc {
    font-size: 2rem;
  }
  .rac50-home .flex .btn {
    font-size: 1.8rem;
  }
}
@media (max-width: 760px) {
  .rac50-home .flex {
    flex-direction: column;
  }
  .rac50-home .flex > * {
    width: 100% !important;
    padding: 0 !important;
  }
  .rac50-home .flex .image {
    background-image: url("https://assets.raconteur.net/uploads/2025/05/rac50home-760.svg");
  }
  .rac50-home .flex .image:after {
    padding-bottom: 55%;
  }
  .rac50-home .flex .title {
    font-size: 4rem;
    margin-top: 2rem;
  }
}
@media (max-width: 540px) {
  .rac50-home .flex .image {
    background-image: url("https://assets.raconteur.net/uploads/2025/05/rac50home-540.svg");
  }
  .rac50-home .flex .image:after {
    padding-bottom: 91%;
  }
  .rac50-home .flex .title {
    font-size: 3.6rem;
    margin-top: 2rem;
  }
  .rac50-home .flex .description, .rac50-home .flex .sub-desc {
    font-size: 1.6rem;
  }
  .rac50-home .flex .sub-desc {
    margin-bottom: 2.5rem;
  }
  .rac50-home .flex .btn {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 320px) {
  .rac50-home .flex .image {
    background-image: url("https://assets.raconteur.net/uploads/2025/05/rac50home-320.svg");
  }
  .rac50-home .flex .image:after {
    padding-bottom: 91%;
  }
  .rac50-home .flex .title {
    font-size: 2.4rem;
  }
  .rac50-home .flex .description, .rac50-home .flex .sub-desc {
    font-size: 1.6rem;
  }
  .rac50-home .flex .sub-desc {
    margin-bottom: 2.5rem;
  }
  .rac50-home .flex .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
  }
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}