/* -------------------------------------------
***** 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 *****
------------------------------------------- */
.single-report-full-width .other-reports-cont {
  background-color: #191919;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  padding-bottom: 4rem;
}
.single-report-full-width .other-reports-cont .single-report-view {
  padding: 0 1rem;
}
.single-report-full-width .other-reports-cont .single-report-view a {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.single-report-full-width .other-reports-cont .single-report-view a img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.single-report-full-width .other-reports-cont .single-report-view a:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 128%;
}
.single-report-full-width .other-reports-cont .other-reports {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.single-report-full-width .other-reports-cont .other-reports:not(.swiper-initialized) {
  opacity: 0;
}
.single-report-full-width .other-reports-cont .other-reports:not(.swiper-initialized) .single-report-view {
  width: 16.6666666667%;
}
@media (max-width: 1024px) {
  .single-report-full-width .other-reports-cont .other-reports:not(.swiper-initialized) .single-report-view {
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  .single-report-full-width .other-reports-cont .other-reports:not(.swiper-initialized) .single-report-view {
    width: 100%;
  }
}
.single-report-full-width .other-reports-cont .other-reports.swiper-initialized {
  z-index: auto;
}
@media (max-width: 1024px) {
  .single-report-full-width .other-reports-cont .other-reports.swiper-initialized {
    padding: 0 4rem !important;
  }
}
.single-report-full-width .other-reports-cont a.button {
  cursor: pointer;
  border: 1px solid white;
  border-radius: 2.6rem;
  color: white;
  padding: 1.2rem 2.2rem;
  font-family: "sofia-pro";
  font-weight: bold;
  background-color: transparent;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  margin-top: 6rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
.single-report-full-width .other-reports-cont a.button:hover {
  background-color: white;
  color: #191919;
  border-color: white;
}
.single-report-full-width .other-reports-cont .swiper-button-prev, .single-report-full-width .other-reports-cont .swiper-button-next {
  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%;
  position: absolute;
  z-index: 5;
  top: 50%;
  line-height: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  cursor: pointer !important;
}
.single-report-full-width .other-reports-cont .swiper-button-prev:after, .single-report-full-width .other-reports-cont .swiper-button-next:after {
  display: none;
}
.single-report-full-width .other-reports-cont .swiper-button-next {
  right: 2rem;
  transform: rotate(-90deg);
}
.single-report-full-width .other-reports-cont .swiper-button-prev {
  left: 2rem;
  transform: rotate(90deg);
}
.single-report-full-width .other-reports-cont:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8rem;
  background: linear-gradient(90deg, #191919, transparent);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.single-report-full-width .other-reports-cont:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 8rem;
  background: linear-gradient(-90deg, #191919, transparent);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .single-report-full-width .other-reports-cont:hover .swiper-button-next, .single-report-full-width .other-reports-cont:hover .swiper-button-prev, .single-report-full-width .other-reports-cont:hover:before, .single-report-full-width .other-reports-cont:hover:after {
    opacity: 1;
  }
}
.single-report-full-width .single-report-cont {
  position: relative;
  width: 100vw;
  height: 100%;
}
@media (max-width: 768px) {
  .single-report-full-width .single-report-cont .wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .single-report-full-width .single-report-cont .left {
    width: 100vw;
    position: relative;
    left: -2rem;
    height: 100%;
    overflow: hidden;
  }
  .single-report-full-width .single-report-cont .left:after {
    content: "";
    display: block;
    padding-bottom: 40%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .single-report-full-width .single-report-cont .left:after {
    display: none;
  }
}
.single-report-full-width .single-report-cont .left {
  overflow: hidden;
}
.single-report-full-width .single-report-cont .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) {
  .single-report-full-width .single-report-cont .left img {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}
@media (max-width: 768px) {
  .single-report-full-width .single-report-cont .right {
    padding: 4rem 0 0;
  }
  .single-report-full-width .single-report-cont .right .article-title {
    font-size: 2.2rem;
  }
}
.single-report-full-width .single-report-cont .right a {
  color: white;
}
.single-report-full-width .single-report-cont .right a:hover {
  text-decoration-color: white !important;
}
.single-report-full-width .single-report-cont .right a.old-report {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  color: #fd2341;
  background-color: #FFF3CD;
  border: 1px solid #FFE69C;
  color: #664D03;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.single-report-full-width .single-report-cont .right a.old-report:hover {
  background-color: #FFE69C;
}
.single-report-full-width .single-report-cont .right .opinion-tag {
  color: white;
  padding: 0;
  background-color: transparent;
}
.single-report-full-width .single-report-cont .right .article-title {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.single-report-full-width .single-report-cont .right .csa-title {
  max-width: 35rem;
  margin-bottom: 1rem;
}
.single-report-full-width .single-report-cont .right .date-pill {
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #e6e9ec;
  border-radius: 2.4rem;
  padding: 0.2rem 1.4rem;
  display: inline-block;
}
.single-report-full-width .single-report-cont .right .date-pill:after, .single-report-full-width .single-report-cont .right .date-pill:before {
  content: "";
  width: 100%;
  display: block;
  clear: both;
}
.single-report-full-width .single-report-cont .right .excerpt {
  font-size: 1.8rem;
  font-family: "Acta", serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .single-report-full-width .single-report-cont .right .excerpt {
    font-size: 1.6rem;
  }
}
.single-report-full-width .single-report-cont .right a.button {
  cursor: pointer;
  border: 1px solid #191919;
  border-radius: 2.6rem;
  color: #191919;
  padding: 1.2rem 2.2rem;
  font-family: "sofia-pro";
  font-weight: bold;
  background-color: white;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  margin-top: 3rem;
  margin-bottom: 4rem;
  display: inline-block;
}
.single-report-full-width .single-report-cont .right a.button:hover {
  background-color: #191919;
  color: white;
  border-color: #191919;
}
.single-report-full-width .single-report-cont .right .association {
  display: block;
}
@media (max-width: 768px) {
  .single-report-full-width .single-report-cont .right .association {
    margin-bottom: 4rem;
  }
}
.single-report-full-width .single-report-cont .right .association h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.single-report-full-width .single-report-cont .right .association .images > * {
  display: inline-block;
  vertical-align: bottom;
}
.single-report-full-width .single-report-cont .right .association .images .times {
  width: 15rem;
  max-width: 45%;
}
.single-report-full-width .single-report-cont .right .association .images .sunday-times {
  width: 16rem;
  margin-left: 2rem;
  max-width: 45%;
}
.single-report-full-width .single-report-cont .right .author {
  display: flex;
  align-items: center;
  padding-top: 14rem;
}
@media (max-width: 768px) {
  .single-report-full-width .single-report-cont .right .author {
    padding-top: 4rem;
  }
}
.single-report-full-width .single-report-cont .right .author .sep {
  display: none;
}
@media (min-width: 769px) {
  .single-report-full-width .single-report-cont .left {
    width: 50vw;
    position: absolute;
    left: 50%;
    height: 100%;
  }
  .single-report-full-width .single-report-cont .left::after {
    display: none;
  }
  .single-report-full-width .single-report-cont .right {
    padding-right: 50%;
    width: 100%;
  }
  .single-report-full-width .single-report-cont .right .text {
    padding: 6rem 8rem;
    padding-left: 0;
  }
  .single-report-full-width .single-report-cont .right .text.small-pad {
    padding-right: 4rem;
  }
}