/* 
* 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
*/
.strat-page-landing-page {
  background: var(--strat-guide-background-color);
  color: var(--strat-guide-text-color);
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .strat-page-landing-page {
    flex-wrap: wrap;
  }
}
.strat-page-landing-page .guide-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
@media (min-width: 769px) {
  .strat-page-landing-page .guide-intro {
    min-width: 60vw;
  }
}
@media (min-width: 1025px) {
  .strat-page-landing-page .guide-intro {
    flex: auto;
    min-width: 50vw;
  }
}
.strat-page-landing-page .guide-intro > * {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.strat-page-landing-page .guide-intro > * > * {
  display: flex;
  flex-direction: column;
}
.strat-page-landing-page .guide-image {
  min-width: 85vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-image {
    min-width: 100%;
  }
  .strat-page-landing-page .guide-image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
}
.strat-page-landing-page .guide-description {
  min-width: 60vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
.strat-page-landing-page .guide-description > * {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.strat-page-landing-page .guide-section {
  min-width: 40vw;
  border-left: 1px solid #191919;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section {
    min-width: 100%;
    border-left: 0;
    border-top: 1px solid #191919;
  }
}
.strat-page-landing-page .guide-section .inner-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.strat-page-landing-page .guide-section .section-number svg {
  width: 40%;
  height: auto;
  max-width: 14rem;
}
.strat-page-landing-page .guide-section .section-number.mobile {
  display: none;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .section-number.mobile {
    display: block;
  }
  .strat-page-landing-page .guide-section .section-number.desktop {
    display: none;
  }
}
.strat-page-landing-page .guide-section .section-title {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.2;
  min-height: 8rem;
  display: block;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .section-title {
    min-height: auto;
    font-size: 2rem;
  }
}
.strat-page-landing-page .guide-section .guide-section-content {
  margin-top: 2rem;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article {
  position: relative;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article:not(:last-child) {
  margin-bottom: 1rem;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article .article-number {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 6rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .guide-section-content .guide-article .article-number {
    width: 4rem;
  }
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article .article-number:after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background-color: #191919;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .guide-section-content .guide-article .article-number:after {
    width: 2rem;
    right: -1rem;
  }
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article .article-number:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #191919;
  position: absolute;
  right: 2.5rem;
  opacity: 0;
  top: calc(50% + 0.5px);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article a {
  padding-left: 8rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .guide-section-content .guide-article a {
    padding-left: 6rem;
  }
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article a:hover .article-number:before {
  opacity: 1;
  right: -0.2rem;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed:before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0.6rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/viewed-stratguide.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed:before {
    left: 3rem;
  }
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed span, .strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed a {
  opacity: 0.6;
}
.strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed:hover span, .strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed:hover a {
  opacity: 1;
}
@media (max-width: 768px) {
  .strat-page-landing-page .guide-section .guide-section-content .guide-article.viewed .article-number:after {
    display: none;
  }
}
.strat-page-landing-page .guide-section .guide-section-content.viewed + .actions-section {
  display: none;
}
.strat-page-landing-page .guide-section .actions-section {
  padding-top: 2rem;
  margin-top: auto;
}
.strat-page-landing-page .guide-section:not(.viewed) {
  background: #d9d3c9;
}
.strat-page-landing-page .guide-section.current ~ .guide-section:not(.current) .actions-section {
  display: none;
}
.strat-page-landing-page .guide-content {
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
.strat-page-landing-page .inner-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 769px) {
  .strat-page-landing-page .inner-wrapper {
    padding: 8rem 4rem;
  }
}
@media (min-width: 1025px) {
  .strat-page-landing-page .inner-wrapper {
    padding: 8rem 8rem;
    padding-top: 12rem;
  }
}
.strat-page-landing-page h1 {
  font-size: clamp(5rem, 8vw + 1rem, 12rem);
  line-height: 1;
  font-weight: normal;
}
@media (max-width: 768px) {
  .strat-page-landing-page h1 {
    font-size: 3.2rem;
    margin-bottom: 0;
    line-height: 1.2;
  }
}
.strat-page-landing-page .scroll-to-navigate {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 2.4rem;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .strat-page-landing-page .scroll-to-navigate {
    display: none;
  }
}
.strat-page-landing-page .scroll-to-navigate .scroll-icon {
  width: 5rem;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
  animation: bounce 0.6s ease-in-out 4;
}
.strat-page-landing-page .scroll-to-navigate .scroll-icon svg {
  width: 100%;
}
.strat-page-landing-page .scroll-to-navigate .scroll-icon svg circle {
  fill: transparent !important;
  transition: all 0.3s ease-in-out !important;
}
@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-1rem);
  }
  100% {
    transform: translateX(0);
  }
}
.strat-page-landing-page .scroll-to-navigate:hover .scroll-icon .arrow-stratguide circle {
  fill: #FFCE5C !important;
}
.strat-page-landing-page .description-text {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .strat-page-landing-page .description-text {
    font-size: 1.8rem;
  }
}
.strat-page-landing-page .buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.strat-page-landing-page .buttons .button {
  display: inline-block;
  margin-left: 0;
}
.strat-page-landing-page .buttons .button:not(:first-child) {
  margin-top: 2rem;
}
.strat-page-landing-page .buttons .button:after {
  content: "";
  display: block;
  clear: both;
}

.links-top-page {
  display: none !important;
}

footer {
  margin-top: 0;
}

#headerNav {
  position: fixed;
  width: calc(100vw - 6rem);
  left: 6rem;
  z-index: 4;
}
@media (max-width: 768px) {
  #headerNav {
    width: calc(100vw - 5rem);
    left: 5rem;
  }
}

#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

header {
  top: 0 !important;
}
header.landing-page {
  display: none;
}

@media (max-width: 768px) {
  #strat-guide-container {
    padding-left: 0 !important;
  }
}
#strat-guide-container .sticky {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  flex: 1;
  display: flex;
  flex-direction: row;
}
#strat-guide-container .sticky > * {
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  #strat-guide-container .sticky > * {
    flex-direction: column;
    transform: translateY(0) !important;
  }
}
@media (max-width: 768px) {
  #strat-guide-container .sticky {
    position: relative;
    height: auto;
    flex: auto;
    display: block;
  }
}
#strat-guide-container #strat-guide-header-landing-page {
  position: absolute;
  top: 0;
  left: 0rem;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #191919;
}
@media (max-width: 768px) {
  #strat-guide-container #strat-guide-header-landing-page {
    display: none !important;
  }
}
#strat-guide-container #strat-guide-header-landing-page .title {
  padding: 2rem 2rem;
}
@media (min-width: 769px) {
  #strat-guide-container #strat-guide-header-landing-page .title {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1025px) {
  #strat-guide-container #strat-guide-header-landing-page .title {
    padding: 2rem 8rem;
  }
}
#strat-guide-container #strat-guide-header-landing-page #sticky-title {
  background-color: var(--strat-guide-background-color);
  width: calc(100vw - 6rem);
}
#strat-guide-container #strat-guide-header-landing-page #sticky-title.fixed {
  left: var(--translateX);
  position: fixed;
}
#strat-guide-container #strat-guide-header-landing-page .highlight {
  font-weight: bold;
}
#strat-guide-container .wrap-guide {
  position: relative;
}

.strat-page-single-page {
  flex-wrap: nowrap;
}
.strat-page-single-page .guide-intro {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: var(--strat-guide-background-color);
  color: var(--strat-guide-text-color);
  width: calc(100vw - 6rem);
  overflow: hidden;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro {
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
}
.strat-page-single-page .guide-intro .section-title {
  font-size: 10rem;
  font-weight: normal;
  line-height: 1;
  padding-left: 18rem;
  display: block;
  position: relative;
}
@media (max-width: 1024px) {
  .strat-page-single-page .guide-intro .section-title {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .section-title {
    font-size: 2.5rem;
    padding-left: 6.5rem;
  }
}
.strat-page-single-page .guide-intro .section-title .section-number {
  position: absolute;
  color: transparent;
  font-weight: bold;
  line-height: 1;
  top: 1rem;
  left: 0;
}
.strat-page-single-page .guide-intro .section-title .section-number svg {
  width: 6rem;
  height: auto;
}
@media (min-width: 769px) {
  .strat-page-single-page .guide-intro .section-title .section-number svg {
    width: 12rem;
  }
}
@media (min-width: 1025px) {
  .strat-page-single-page .guide-intro .section-title .section-number svg {
    width: 14rem;
  }
}
.strat-page-single-page .guide-intro .section-title .section-number.mobile {
  display: none;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .section-title .section-number {
    top: 0;
    left: -1rem;
  }
  .strat-page-single-page .guide-intro .section-title .section-number.mobile {
    display: block;
  }
  .strat-page-single-page .guide-intro .section-title .section-number.desktop {
    display: none;
  }
}
.strat-page-single-page .guide-intro .guide-section-content {
  margin-top: 3rem;
  padding-left: 18rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 1.5rem;
}
.strat-page-single-page .guide-intro .guide-section-content.one-col {
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .guide-section-content {
    padding-left: 6.5rem;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article {
  position: relative;
  width: 100%;
  border-bottom: 0;
  padding-bottom: 0;
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article .article-number {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 5rem;
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article .article-number:after {
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #191919;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .guide-section-content .guide-article .article-number {
    width: 3.5rem;
    top: 0;
    left: 0rem;
    font-size: 1.2rem;
    transform: translateY(5px);
  }
  .strat-page-single-page .guide-intro .guide-section-content .guide-article .article-number:after {
    width: 1rem;
    right: 0;
  }
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article a {
  padding-left: 6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .guide-section-content .guide-article a {
    padding-left: 4.5rem;
    font-size: 1.4rem;
  }
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed:before {
  content: "";
  position: absolute;
  left: 3rem;
  top: 0.3rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/viewed-stratguide.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed:before {
    left: 2rem;
    top: 0.2rem;
  }
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed span, .strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed a {
  opacity: 0.6;
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed:hover span, .strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed:hover a {
  opacity: 1;
}
.strat-page-single-page .guide-intro .guide-section-content .guide-article.viewed .article-number:after {
  display: none;
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-intro .guide-section-content .guide-article {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.strat-page-single-page .guide-article {
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 4rem;
}
.strat-page-single-page .guide-article.dark-long-read {
  border-color: var(--main-border-color);
}
.strat-page-single-page .guide-article .small-wrap {
  position: relative;
}
.strat-page-single-page .guide-article .small-wrap .section-number-article {
  position: absolute;
  left: -18rem;
  font-size: 4.8rem;
}
@media (max-width: 1024px) {
  .strat-page-single-page .guide-article .small-wrap .section-number-article {
    position: relative;
    left: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .strat-page-single-page .guide-article .small-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .strat-page-single-page .guide-article .small-wrap {
    margin-bottom: 0rem;
  }
}
.strat-page-single-page .guide-article .sections-sidebar {
  background-color: color-mix(in srgb, var(--strat-guide-background-color) 30%, transparent);
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .strat-page-single-page .guide-article .sections-sidebar {
    display: none;
  }
}
.strat-page-single-page .guide-article .sections-sidebar .sections-sidebar-title {
  font-weight: bold;
  line-height: 1.6;
  padding-left: 2rem;
  padding-bottom: 1rem;
}
.strat-page-single-page .guide-article .sections-sidebar .section {
  padding: 0.6rem 2rem;
  padding-right: 4rem;
  display: flex;
  gap: 1rem;
  border-top: 1px solid #DEE2E6;
  background-color: transparent;
  position: relative;
}
.strat-page-single-page .guide-article .sections-sidebar .section:hover {
  background-color: #E9ECEF;
}
.strat-page-single-page .guide-article .sections-sidebar .section .section-number {
  width: 2rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}
.strat-page-single-page .guide-article .sections-sidebar .section .section-title {
  font-weight: bold;
}
.strat-page-single-page .guide-article .sections-sidebar .section:after {
  content: "";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg") no-repeat center center;
  background-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #DEE2E6;
  transition: transform 0.2s ease-out;
}
.strat-page-single-page .guide-article .sections-sidebar .section * {
  pointer-events: none;
}
.strat-page-single-page .guide-article .sections-sidebar .articles {
  padding: 0.6rem 2rem;
  padding-left: 5rem;
  display: flex;
  gap: 2rem;
  border-top: 1px solid #DEE2E6;
  background-color: transparent;
}
.strat-page-single-page .guide-article .sections-sidebar .articles:hover {
  background-color: #E9ECEF;
}
.strat-page-single-page .guide-article .sections-sidebar .articles .article-number {
  width: 2rem;
  text-align: left;
  font-size: 1.4rem;
  position: relative;
}
.strat-page-single-page .guide-article .sections-sidebar .articles .article-number:after {
  content: "";
  position: absolute;
  left: calc(100% + 0.5rem);
  top: 1.2rem;
  width: 8px;
  height: 1px;
  background-color: #191919;
}
.strat-page-single-page .guide-article .sections-sidebar .articles .article-title {
  font-weight: normal;
  font-size: 1.4rem;
}
.strat-page-single-page .guide-article .sections-sidebar .articles.current {
  background-color: #FFCE5C !important;
}
.strat-page-single-page .guide-article .sections-sidebar .articles.viewed:not(.current) * {
  opacity: 0.6;
  transition: opacity 0.2s ease-out;
}
.strat-page-single-page .guide-article .sections-sidebar .articles.viewed:not(.current):hover * {
  opacity: 1;
}
.strat-page-single-page .guide-article .sections-sidebar .accordion-strat-guide-sidebar.closed .section:after {
  transform: translateY(-50%) rotate(0deg);
}
.strat-page-single-page .guide-article .sections-sidebar .accordion-strat-guide-sidebar .accordion-strat-guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.strat-page-single-page .guide-article .sections-sidebar .accordion-strat-guide-sidebar.open .accordion-strat-guide-content {
  max-height: 1000px;
  transition: max-height 1s ease-out;
}
.strat-page-single-page .guide-article article > *:not(.mb0):not(:last-child) {
  margin-bottom: 2rem;
}
.strat-page-single-page #chatbot-container {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: auto;
  border: 2rem;
  z-index: 8;
}
.strat-page-single-page #chatbot-container #chatbot-image {
  display: block;
  width: 9rem;
  cursor: pointer;
  z-index: 3;
  position: relative;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-image: url("../strat-guides/img/stratguide_bot_close.svg");
}
.strat-page-single-page #chatbot-container #chatbot-image:after {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.strat-page-single-page #chatbot-container #chatbot-image.active {
  background-image: url("../strat-guides/img/stratguide_bot_open.svg");
}
.strat-page-single-page #chatbot-container-iframe {
  width: 100%;
  min-width: 400px;
  position: absolute;
  z-index: 2;
  right: calc(100% - 3rem);
  bottom: calc(100% - 8rem);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 4px solid #f7f3ed;
  box-shadow: 0 0 20px rgba(102, 96, 89, 0.3);
}
.strat-page-single-page #chatbot-container-iframe:after {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.strat-page-single-page #chatbot-container-iframe.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  bottom: calc(100% - 5rem);
}
.strat-page-single-page #chatbot-container-iframe #chatbot-stratguide {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.strat-page-single-page #rac-login {
  display: none;
  margin-bottom: 0;
}
.strat-page-single-page .cv-block .accordion {
  background: var(--strat-guide-background-color);
  border-radius: 0.8rem;
  color: var(--strat-guide-text-color);
}
.strat-page-single-page .cv-block .accordion .expand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.strat-page-single-page .cv-block .accordion .expand span:first-child {
  font-size: 0;
  text-align: right;
}
.strat-page-single-page .cv-block .accordion .expand span:first-child:before {
  content: "VIEW";
  font-size: 1.4rem;
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  text-align: right;
  vertical-align: -3px;
}
.strat-page-single-page .cv-block .accordion .expand svg {
  margin-left: 0;
}
.strat-page-single-page .cv-block .accordion .expand svg circle, .strat-page-single-page .cv-block .accordion .expand svg path {
  stroke: var(--strat-guide-text-color) !important;
}
.strat-page-single-page .cv-block .accordion .expand svg path {
  stroke-width: 2px;
}
.strat-page-single-page .cv-block .accordion a {
  color: var(--strat-guide-text-color);
  text-decoration: underline;
}
.strat-page-single-page .cv-block .accordion a:hover {
  color: #FFCE5C;
}
@media (min-width: 769px) {
  .strat-page-single-page .pull-image {
    margin-top: 0 !important;
    padding-right: 4rem;
  }
}

#guide-next {
  background: var(--strat-guide-background-color);
  color: var(--strat-guide-text-color);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  #guide-next {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
#guide-next a {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 6.5rem;
  max-width: 34rem;
  margin-left: auto;
  display: block;
}
#guide-next a .small {
  font-size: 1.4rem;
}
#guide-next a .big {
  font-size: 1.8rem;
  font-weight: bold;
}
#guide-next a .scroll-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  top: 50%;
  transform: translateY(-50%);
}
#guide-next a .scroll-icon svg {
  width: 100%;
}
#guide-next a .scroll-icon svg circle {
  fill: transparent !important;
  transition: all 0.3s ease-in-out !important;
}
#guide-next a:hover .scroll-icon .arrow-stratguide circle {
  fill: #FFCE5C !important;
}

body #strat-guide-container, body footer {
  padding-left: 6rem;
}
@media (max-width: 768px) {
  body #strat-guide-container, body footer {
    padding-left: 0;
  }
}
body main {
  min-height: auto;
}

#strat-guide-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 6rem;
  background-color: #191919;
  z-index: 5;
  display: flex;
}
@media (max-width: 768px) {
  #strat-guide-left {
    background-color: white;
    height: auto !important;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 5rem;
  }
  #strat-guide-left.lp {
    width: 100%;
    height: 53px !important;
    position: relative;
  }
}
#strat-guide-left .strat-guide-hamburger {
  background-color: #FFCE5C;
  width: 100%;
  cursor: pointer;
  flex-direction: column;
  height: 64px;
  z-index: 9999;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (max-width: 768px) {
  #strat-guide-left .strat-guide-hamburger {
    padding: 2.5rem 2rem;
    height: 52px;
  }
}
@media (min-width: 1025px) {
  #strat-guide-left .strat-guide-hamburger:hover span {
    background: #343A40;
  }
}
#strat-guide-left .strat-guide-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #191919;
  border-radius: 6px;
  opacity: 1;
  left: 25%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#strat-guide-left .strat-guide-hamburger span:nth-child(1) {
  top: 35%;
}
#strat-guide-left .strat-guide-hamburger span:nth-child(2), #strat-guide-left .strat-guide-hamburger span:nth-child(3) {
  top: 50%;
}
#strat-guide-left .strat-guide-hamburger span:nth-child(4) {
  top: 65%;
}
#strat-guide-left .strat-guide-hamburger.active span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
#strat-guide-left .strat-guide-hamburger.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#strat-guide-left .strat-guide-hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#strat-guide-left .strat-guide-hamburger.active span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
#strat-guide-left .wrap-left {
  flex-direction: column;
  display: flex;
  flex: 1;
  justify-content: space-between;
  height: 100vh;
}
#strat-guide-left .wrap-left .left-mobile-wrapper {
  display: none;
}
@media (max-width: 768px) {
  #strat-guide-left .wrap-left {
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center;
    flex: auto;
    height: auto;
  }
  #strat-guide-left .wrap-left .left-mobile-wrapper {
    display: block;
    text-transform: uppercase;
    padding-left: 2rem;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
#strat-guide-left .wrap-left .left-logo {
  display: block;
  cursor: pointer;
  padding: 1rem;
}
@media (max-width: 768px) {
  #strat-guide-left .wrap-left .left-logo {
    display: none;
  }
}

#strat-guide-hamburger-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  left: 0;
  height: 100vh;
  z-index: 3;
  background-color: var(--strat-guide-background-color);
  color: var(--strat-guide-text-color);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-left: 6rem;
  padding-top: 12rem;
}
#strat-guide-hamburger-container.active {
  pointer-events: all;
  opacity: 1;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  #strat-guide-hamburger-container {
    padding-left: 0;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
}
#strat-guide-hamburger-container .sections-hamburger {
  display: flex;
  flex-direction: column;
}
#strat-guide-hamburger-container .sections-hamburger .section {
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  width: 100%;
  color: var(--strat-guide-text-color);
}
#strat-guide-hamburger-container .sections-hamburger .section .section-number {
  margin-right: 3rem;
  font-size: 2rem;
  line-height: 2.8rem;
}
#strat-guide-hamburger-container .sections-hamburger .section .section-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 3rem;
  font-size: 2.8rem;
}
#strat-guide-hamburger-container .sections-hamburger .section .scroll-icon {
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  align-self: center;
  transition: transform 0.2s ease-out;
  background: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg") no-repeat center 55%;
  background-size: 1.5rem;
  border-radius: 50%;
  border: 1px solid #191919;
  display: block;
}
@media (max-width: 768px) {
  #strat-guide-hamburger-container .sections-hamburger .section .scroll-icon {
    width: 2rem;
    height: 2rem;
    background-size: 1rem;
  }
}
#strat-guide-hamburger-container .sections-hamburger .section * {
  pointer-events: none;
}
@media (max-width: 768px) {
  #strat-guide-hamburger-container .sections-hamburger .section .section-number {
    margin-right: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  #strat-guide-hamburger-container .sections-hamburger .section .section-title {
    padding-right: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
#strat-guide-hamburger-container .sections-hamburger .articles {
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
  padding-left: 6rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: baseline;
  width: 100%;
  color: var(--strat-guide-text-color);
}
#strat-guide-hamburger-container .sections-hamburger .articles .article-number {
  margin-right: 2rem;
  font-size: 1.4rem;
  line-height: 2.8rem;
  position: relative;
}
#strat-guide-hamburger-container .sections-hamburger .articles .article-number:after {
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #191919;
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
}
#strat-guide-hamburger-container .sections-hamburger .articles .article-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 3rem;
  width: 100%;
  font-size: 1.8rem;
  padding-left: 2rem;
}
#strat-guide-hamburger-container .sections-hamburger .articles.viewed:before {
  content: "";
  position: absolute;
  left: 2.4rem;
  top: 0.8rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/viewed-stratguide.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#strat-guide-hamburger-container .sections-hamburger .articles.viewed span, #strat-guide-hamburger-container .sections-hamburger .articles.viewed a {
  opacity: 0.6;
}
#strat-guide-hamburger-container .sections-hamburger .articles.viewed:hover span, #strat-guide-hamburger-container .sections-hamburger .articles.viewed:hover a {
  opacity: 1;
}
@media (max-width: 768px) {
  #strat-guide-hamburger-container .sections-hamburger .articles {
    padding-left: 3rem;
    margin-bottom: 1rem;
  }
  #strat-guide-hamburger-container .sections-hamburger .articles .article-number {
    margin-right: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  #strat-guide-hamburger-container .sections-hamburger .articles .article-number:after {
    display: none;
  }
  #strat-guide-hamburger-container .sections-hamburger .articles .article-title {
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: normal;
    padding-left: 0;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    padding-right: 0;
  }
  #strat-guide-hamburger-container .sections-hamburger .articles.viewed:before {
    width: 1.2rem;
    height: 1.2rem;
    left: 1.2rem;
    top: 0.6rem;
  }
}
#strat-guide-hamburger-container .sections-hamburger .accordion-strat-guide-hamburger:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #strat-guide-hamburger-container .sections-hamburger .accordion-strat-guide-hamburger:not(:last-child) {
    margin-bottom: 1rem;
  }
}
#strat-guide-hamburger-container .accordion-strat-guide-hamburger.closed .section .scroll-icon {
  transform: rotate(0deg);
}
#strat-guide-hamburger-container .accordion-strat-guide-hamburger .accordion-strat-guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#strat-guide-hamburger-container .accordion-strat-guide-hamburger.open .accordion-strat-guide-content {
  max-height: 1000px;
  transition: max-height 1s ease-out;
}
#strat-guide-hamburger-container .accordion-strat-guide-hamburger.open .section .scroll-icon {
  transform: rotate(180deg);
}

.single-strategic_guides header {
  height: 65px !important;
}
@media (max-width: 768px) {
  .single-strategic_guides header.scrollUp {
    transform: translateY(0%);
  }
}
.single-strategic_guides header > .wrap {
  padding-top: 0rem;
  padding-bottom: 0rem;
  align-items: center;
  height: 65px !important;
}
@media (max-width: 768px) {
  .single-strategic_guides header > .wrap {
    height: 53px !important;
  }
}
.single-strategic_guides header #strat-guide-title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}
@media (max-width: 768px) {
  .single-strategic_guides header #strat-guide-title {
    font-size: 1.2rem;
  }
}
.single-strategic_guides header #strat-guide-title span {
  margin-right: 0.8rem;
}
@media (max-width: 768px) {
  .single-strategic_guides header #strat-guide-title span {
    display: block;
  }
}
@media (max-width: 768px) {
  .single-strategic_guides header {
    height: 53px !important;
  }
}
.single-strategic_guides header .header-left, .single-strategic_guides header .header-right {
  display: none;
}
.single-strategic_guides header .header-left .btn.btn-primary, .single-strategic_guides header .header-right .btn.btn-primary {
  padding: 0 !important;
}
.single-strategic_guides header.hamb-open {
  background-color: var(--strat-guide-background-color) !important;
  color: var(--strat-guide-text-color) !important;
}
.single-strategic_guides header.hamb-open:before {
  display: none;
}
.single-strategic_guides header.hamb-open a {
  color: var(--strat-guide-text-color) !important;
}
.single-strategic_guides header.hamb-open .btn.btn-primary {
  background-color: transparent !important;
  color: #191919 !important;
  border-color: transparent !important;
}
.single-strategic_guides header.hamb-open .header-right {
  display: block;
}
@media (max-width: 768px) {
  .single-strategic_guides header.hamb-open #strat-guide-title {
    display: none;
  }
}

.sticky-mobile-title {
  position: fixed;
  top: 0;
  left: 6rem;
  width: calc(100vw - 6rem);
  z-index: 100;
  background-color: #FFCE5C;
  height: 65px;
  font-weight: bold;
  border-bottom: 1px solid #DEE2E6;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .sticky-mobile-title {
    height: 53px;
  }
}

.sticky-title-article {
  position: fixed;
  top: 0;
  left: 5rem;
  width: calc(100vw - 5rem);
  height: 53px;
  pointer-events: none;
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: #FFCE5C;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
  border-left: 1px solid #191919;
}
.sticky-title-article.active {
  pointer-events: all;
  transform: translateY(0%);
}
.sticky-title-article .wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sticky-title-article .wrap .sticky-title-article-number {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
}
.sticky-title-article .wrap .sticky-title-article-title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 769px) {
  .sticky-title-article {
    height: 65px;
    left: 6rem;
    width: calc(100vw - 6rem);
  }
}
@media (min-width: 1025px) {
  .sticky-title-article {
    display: none;
  }
}