/* 
* 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
*/
body {
  background-color: var(--ey-background);
  color: white;
}

.ey-wrap {
  max-width: 970px;
  margin: 0 auto;
  padding: 20px;
}
.ey-wrap .intro-ey-2025 {
  max-width: 700px;
  margin: 0 auto;
}
.ey-wrap .intro-ey-2025 .image {
  width: 85%;
  margin: 0 auto;
  aspect-ratio: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: -2rem;
  overflow: hidden;
}
.ey-wrap .intro-ey-2025 .image span {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 1.2s ease-out;
}
.ey-wrap .intro-ey-2025 .image span.fade-in {
  opacity: 1;
  top: 0;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-background {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-0.png");
  z-index: 6;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-1 {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-1.png");
  z-index: 1;
  transition-delay: 0.5s;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-2 {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-2.png");
  z-index: 2;
  transition-delay: 0.2s;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-3 {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-3.png");
  z-index: 3;
  transition-delay: 0.5s;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-4 {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-4-1.png");
  z-index: 4;
  transition-delay: 0.7s;
}
.ey-wrap .intro-ey-2025 .image span.ey-landing-5 {
  background-image: url("https://assets.raconteur.net/uploads/2025/07/ey-lp-5.png");
  z-index: 5;
  transition-delay: 0.6s;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .image {
    margin-bottom: -1rem;
  }
}
.ey-wrap .intro-ey-2025 .text {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.ey-wrap .intro-ey-2025 .text .gradient-border {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
  background-color: var(--ey-background);
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .text .gradient-border {
    padding: 1.6rem 0;
  }
}
@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.ey-wrap .intro-ey-2025 .text .gradient-border:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(-45deg, var(--ey-yellow), var(--ey-red), var(--ey-blue), var(--ey-green), var(--ey-pink), var(--ey-yellow), var(--ey-red), var(--ey-blue));
  background-size: 200% 100%;
  border-radius: calc(5rem + 8px);
  -webkit-animation: gradientRotate 8s ease infinite;
  animation: gradientRotate 8s ease infinite;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .text .gradient-border:before {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: calc(5rem + 4px);
  }
}
.ey-wrap .intro-ey-2025 .text .gradient-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ey-background);
  z-index: 1;
  border-radius: 5rem;
}
.ey-wrap .intro-ey-2025 .text h1 {
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.ey-wrap .intro-ey-2025 .text h1 .sr-only {
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  visibility: hidden;
}
.ey-wrap .intro-ey-2025 .text h1 .marquee-text {
  display: flex;
  animation: marquee 15s linear infinite;
  width: 100%;
}
.ey-wrap .intro-ey-2025 .text h1 .marquee-text .marquee-item {
  flex-shrink: 0;
  position: relative;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ey-wrap .intro-ey-2025 .text h1 .marquee-text .marquee-item svg {
  height: auto;
  max-width: 90%;
  width: 100%;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .text {
    margin-bottom: 2rem;
  }
}
.ey-wrap .intro-ey-2025 p.text {
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 p.text {
    font-size: 1.6rem;
    text-align: left;
  }
}
.ey-wrap .intro-ey-2025 .middle {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .middle {
    max-width: 100%;
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
  }
}
.ey-wrap .intro-ey-2025 .bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .bottom {
    flex-wrap: wrap;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.ey-wrap .intro-ey-2025 .bottom .description {
  margin-bottom: 0;
  width: 100%;
}
.ey-wrap .intro-ey-2025 .bottom .get-in-touch-container {
  text-align: right;
}
.ey-wrap .intro-ey-2025 .bottom .get-in-touch-container a {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 8rem;
  width: 100%;
  max-width: 190px;
  margin-left: auto;
}
.ey-wrap .intro-ey-2025 .bottom .in-association-with {
  float: right;
  white-space: nowrap;
  text-align: right;
  display: flex;
  align-items: center;
}
.ey-wrap .intro-ey-2025 .bottom .in-association-with .in-association-with-text {
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  background-color: var(--ey-background);
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .bottom .in-association-with .in-association-with-text {
    padding-left: 0;
  }
}
.ey-wrap .intro-ey-2025 .bottom .sponsored-topic-image {
  width: 60px;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .bottom .sponsored-topic-image {
    width: 40px;
  }
}
.ey-wrap .intro-ey-2025 .bottom .sponsored-topic-image img {
  width: 100%;
  height: auto;
  margin-top: -1rem;
}
@media (max-width: 768px) {
  .ey-wrap .intro-ey-2025 .bottom .sponsored-topic-image img {
    margin-top: 0;
  }
}
.ey-wrap .tag-intro {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .ey-wrap .tag-intro {
    font-size: 1rem;
  }
}
.ey-wrap .featured-tags {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0rem;
  width: 100%;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .ey-wrap .featured-tags {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.ey-wrap .featured-tags .featured-tag {
  width: calc(20% - 1.5rem);
  cursor: pointer !important;
}
@media (max-width: 768px) {
  .ey-wrap .featured-tags .featured-tag {
    width: calc(33.3333333333% - 1.5rem);
  }
}
.ey-wrap .featured-tags .featured-tag .borders {
  width: 100%;
  position: relative;
  height: 2.5rem;
  z-index: 1;
}
.ey-wrap .featured-tags .featured-tag .borders:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 80px;
  height: 8px;
  transform: translateX(-50%);
  transition: max-width 0.2s ease-out;
}
.ey-wrap .featured-tags .featured-tag .borders:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.ey-wrap .featured-tags .featured-tag .borders.yellow:before, .ey-wrap .featured-tags .featured-tag .borders.yellow:after {
  background-color: var(--ey-yellow);
}
.ey-wrap .featured-tags .featured-tag .borders.red:before, .ey-wrap .featured-tags .featured-tag .borders.red:after {
  background-color: var(--ey-red);
}
.ey-wrap .featured-tags .featured-tag .borders.blue:before, .ey-wrap .featured-tags .featured-tag .borders.blue:after {
  background-color: var(--ey-blue);
}
.ey-wrap .featured-tags .featured-tag .borders.green:before, .ey-wrap .featured-tags .featured-tag .borders.green:after {
  background-color: var(--ey-green);
}
.ey-wrap .featured-tags .featured-tag .borders.pink:before, .ey-wrap .featured-tags .featured-tag .borders.pink:after {
  background-color: var(--ey-pink);
}
.ey-wrap .featured-tags .featured-tag:hover .borders:before {
  max-width: 125px;
}
.ey-wrap .featured-tags .featured-tag:hover .borders:after {
  max-width: 125px;
}
.ey-wrap .featured-tags .featured-tag.active .borders:before {
  max-width: 125px;
}
.ey-wrap .featured-tags .featured-tag.active .borders:after {
  max-width: 125px;
}
.ey-wrap .featured-tags .featured-tag .tag-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem auto;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 125px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ey-wrap .featured-tags .featured-tag .tag-name {
    font-size: 1.6rem;
    max-width: 100px;
  }
}
.ey-wrap .featured-tags .featured-tag .tag-description {
  font-size: 1.4rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .ey-wrap .featured-tags .featured-tag .tag-description {
    font-size: 1.2rem;
  }
}
.ey-wrap .article-list {
  width: 100%;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 5rem;
}
.ey-wrap .article-list .article-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  margin-bottom: 3rem;
  will-change: transform;
  background-color: var(--ey-background);
}
@media (max-width: 768px) {
  .ey-wrap .article-list .article-item {
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
  }
}
.ey-wrap .article-list .article-item:last-child {
  margin-bottom: 0;
}
.ey-wrap .article-list .article-item .article-item-image {
  aspect-ratio: 1.75;
  overflow: hidden;
}
.ey-wrap .article-list .article-item .article-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ey-wrap .article-list .article-item .text .article-item-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0rem;
  margin-bottom: 1rem;
  width: 80px;
}
@media (max-width: 768px) {
  .ey-wrap .article-list .article-item .text .article-item-tags {
    margin-bottom: 0.5rem;
    width: 60px;
  }
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag {
  font-size: 0rem;
  color: transparent;
  height: 8px;
  width: 100%;
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag[data-tag=exit-readiness] {
  background-color: var(--ey-red);
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag[data-tag=social-impact] {
  background-color: var(--ey-pink);
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag[data-tag=founder-stories] {
  background-color: var(--ey-yellow);
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag[data-tag=international-expansion] {
  background-color: var(--ey-blue);
}
.ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag[data-tag=access-to-funding] {
  background-color: var(--ey-green);
}
@media (max-width: 768px) {
  .ey-wrap .article-list .article-item .text .article-item-tags .article-item-tag {
    height: 4px;
  }
}
.ey-wrap .article-list .article-item .text .article-item-title a {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .ey-wrap .article-list .article-item .text .article-item-title a {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .ey-wrap .article-list .article-item .text .article-item-standfirst {
    display: none;
  }
}
@media (min-width: 769px) {
  .ey-wrap .article-list .article-item:nth-child(even) .article-item-image {
    order: 2;
  }
  .ey-wrap .article-list .article-item:nth-child(even) .text {
    order: 1;
  }
}
.ey-wrap .contacts-ey-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-intro {
  text-align: left;
  margin-bottom: 1rem;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-intro {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-intro .quote-text p {
  margin-bottom: 0;
}
.ey-wrap .contacts-ey-container .contact-ey-intro .quote-text .quote-author {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.ey-wrap .contacts-ey-container .contact-ey-list {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 100%;
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey {
  width: 33.3333333333%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}
@media (min-width: 769px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey {
    width: 100%;
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-text {
  display: flex;
  flex-direction: column;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-photo {
  width: 100%;
  max-width: 140px;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-photo {
    max-width: 90px;
    margin-bottom: 0;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-name {
  font-size: 1.6rem;
  font-weight: 700;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-title {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-title {
    font-size: 1.3rem;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey * {
  order: 1;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-linkedin {
  order: 2;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-linkedin svg {
  fill: white;
  width: 22px;
  height: auto;
  transition: fill 0.2s ease-out;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-linkedin svg:hover {
  fill: var(--ey-yellow);
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-linkedin svg {
    width: 20px;
  }
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-email {
  color: white;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.2s ease-out;
}
.ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-email:hover {
  color: var(--ey-yellow);
}
@media (max-width: 768px) {
  .ey-wrap .contacts-ey-container .contact-ey-list .contact-ey .contact-ey-email {
    font-size: 1.3rem;
  }
}