.journey{
  display:flex;
  gap:calc(100% * 1 / 12 + 15px);
  margin:8% 0;
  width:100%;
  clear:both;
}
.journey > h2{
  font-size: 96px;
  text-align: right;
  line-height: 65px;
  display:block;
  flex:0 0 calc(100% * 4 / 12 - 10px);
}
.journey > h2.longer{
  font-size: 60px;
  line-height: 60px;

}
.journey .steps{
  flex:0 0 calc(100% * 6 / 12);
  display:flex;
  flex-direction:column;
  gap:26px;
  position:relative;
}
.journey .steps:before{
  content:"";
  height:80%;
  position:absolute;
  width:50%;
  right:100%;
  top:10%;
  z-index:-1;
  background-image: url(/wp-content/themes/pearl-and-dean/img/journey-arches.svg);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:right+20% center;


}
.journey .steps h3{
  font-size:30px;
}


.wp-admin .journey{
  width:80%;
  margin:10% 0;
}
.wp-admin .journey h2,
.wp-admin .journey h3{
    font-family: "abril-fatface", serif;
    color:#005883;
    font-weight:400;
    margin:0;
}
.wp-admin .journey p{
  margin:0 0 12px 0;
}
.wp-admin .journey .steps:before{
  z-index:0;
}

@media screen and (max-width: 1000px) {

  .journey{
    flex-direction:column;
    margin: 8% -15px;
    width: calc(100% + 30px);
    padding: 0 15px;
    box-sizing: border-box;
    overflow:hidden;
  }
  .journey > h2{
    font-size: 36px;
    line-height: 30px;
    text-align:left;
  }
  .journey > h2.longer{
    font-size: 30px;
    line-height: 30px;

  }
  .journey .steps h3{
    font-size:21px;
    line-height:26px;
  }
  .journey .steps:before{
    right: -20%;
    background-position: left center;
    transform: rotate(180deg);

  }
}
