/* colors */
/* easing bezier */
/* layout vars */
/* INSIGHT ARCHIVE MODULE */
.insight-archive {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  overflow: visible;
}
.insight-archive a {
  color: inherit;
  text-decoration: none;
}

.insight-archive-item {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width : 48em) {
  .insight-archive-item {
    display: flex;
    justify-content: space-between;
  }
}
.insight-archive-item .image-wrapper {
  border-radius: 20px;
  aspect-ratio: 100/60;
  overflow: hidden;
}
.insight-archive-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}
.insight-archive-item .text-wrapper {
  padding-top: 15px;
}
@media screen and (min-width : 48em) {
  .insight-archive-item .text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 30px;
  }
}
.insight-archive-item:hover img {
  transform: scale(1.15);
}
.insight-archive-item .manchet {
  font-size: 1rem;
}
@media screen and (min-width : 48em) {
  .insight-archive-item .text-wrapper, .insight-archive-item .image-wrapper {
    flex-basis: calc((100% - 30px) / 2);
  }
}
.insight-archive-item .arrow-link::after {
  top: 4px;
}

.insight-archive-item.primary {
  position: relative;
  margin-bottom: 30px;
}
.insight-archive-item.primary h3 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (min-width: 1440px) {
  .insight-archive-item.primary {
    margin-left: -80px;
    margin-right: -80px;
    flex-basis: 100vw;
  }
}
.insight-archive-item.primary .image-wrapper {
  flex-basis: 100%;
  aspect-ratio: 1440/700;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (min-width : 48em) {
  .insight-archive-item.primary .image-wrapper {
    border-radius: 80px;
  }
}
.insight-archive-item.primary .text-wrapper {
  background: linear-gradient(94.64deg, rgba(0, 93, 175, 0.9) 29.17%, rgba(0, 69, 118, 0.9) 100%);
  color: white;
  padding: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (min-width : 48em) {
  .insight-archive-item.primary .text-wrapper {
    width: 70%;
    position: absolute;
    padding: 30px;
    border-radius: 30px;
    bottom: 30px;
    right: 30px;
    max-width: 800px;
  }
}
@media screen and (min-width : 68.75em) {
  .insight-archive-item.primary .text-wrapper {
    bottom: 60px;
    right: 60px;
  }
}

.insight-archive-item.secondary h3 {
  color: #005DAF;
  font-size: 2rem;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

@media screen and (min-width : 48em) {
  .insight-archive-item.secondary:nth-child(odd) .image-wrapper {
    order: 1;
  }
  .insight-archive-item.secondary:nth-child(odd) .text-wrapper {
    align-items: flex-end;
    text-align: right;
  }
  .insight-archive-item.secondary:nth-child(odd) .text-wrapper .arrow-link {
    margin-right: 29px;
  }
}

.insight-archive-item.tertiary {
  display: flex;
  margin-bottom: 30px;
  justify-content: space-between;
}
@media screen and (min-width : 48em) {
  .insight-archive-item.tertiary {
    flex-basis: calc((100% - 30px) / 2);
  }
}
.insight-archive-item.tertiary h3 {
  font-size: 1rem;
  font-weight: 600;
}
.insight-archive-item.tertiary .image-wrapper {
  border-radius: 8px;
}
.insight-archive-item.tertiary .text-wrapper {
  padding-bottom: 15px;
}
.insight-archive-item.tertiary .text-wrapper, .insight-archive-item.tertiary .image-wrapper {
  flex-basis: calc((100% - 15px) / 2);
}

@keyframes insight-fadein {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
.insight-archive-item.ajax-loaded {
  animation: insight-fadein 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.load-more-wrapper {
  text-align: center;
}

.load-more-insights {
  margin: 0 auto;
}
.load-more-insights:hover {
  cursor: pointer;
}
