/*
 * Proportional function
 * Help compute proportional size in rem according to the width
*/
.load-more {
  padding: 1.5625dvw;
  border: 1px solid #152B46;
  border-left-width: 0;
  border-right-width: 0;
  margin: 18.5185185185dvh 0;
}
@media screen and (max-width: 1024px) {
  .load-more {
    margin: 7.4074074074dvh -7.2916666667dvw;
    padding: 3.6458333333dvw 1.5625dvw;
  }
}
.load-more > .button.with-arrow {
  margin: 0 auto 0;
}
@media screen and (max-width: 1024px) {
  .load-more > .button.with-arrow {
    margin-left: 0;
    max-width: calc(100% - 60px - 7.2916666667dvw);
  }
}
.load-more > .button.with-arrow .button__content > * {
  text-align: center;
  font: 400 max(3.75rem, 3.125dvw)/1.66 "Schibsted Grotesk", sans-serif;
  letter-spacing: -3px;
}
@media screen and (max-width: 1024px) {
  .load-more > .button.with-arrow .button__content > * {
    text-align: left;
    font-size: 7.1794871795dvw;
    line-height: 1.21;
  }
}
.load-more.with-padding {
  margin-left: 7.2916666667dvw;
  margin-right: 7.2916666667dvw;
}
@media screen and (max-width: 1024px) {
  .load-more.with-padding {
    margin-left: 0;
    margin-right: 0;
  }
}
.load-more.loading .button {
  animation: pulse 1s infinite alternate;
  opacity: 1;
}

@keyframes pulse {
  to {
    opacity: 0.5;
  }
}
.archive main .archive__posts {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .archive main .archive__posts .realisation-card {
    max-width: 100%;
  }
  .archive main .archive__posts .realisation-card:not(:first-child) {
    margin-top: 2.5641025641dvh;
  }
}
.archive main .archive__posts .realisation-card:nth-child(2n) {
  margin-top: 18.5185185185dvh;
}
@media screen and (max-width: 1024px) {
  .archive main .archive__posts .realisation-card:nth-child(2n) {
    margin-top: 2.5641025641dvh;
  }
}