@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.relative {
  position: relative;
  overflow: hidden;
}

/* //////////////////////////////////////////////////////////////////////////
    TYPOGRAPHY
////////////////////////////////////////////////////////////////////////// */
html {
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Spezia";
  src: url("/assets/fonts/SpeziaNormalVariableUprightWeb.woff") format("woff");
  src: url("/assets/fonts/SpeziaNormalVariableUprightWeb.woff2") format("woff2");
}
.project-heading {
  margin-bottom: 1rem;
  grid-column: 1/13;
}
@media screen and (min-width: 43.75rem) {
  .project-heading {
    margin-bottom: 0.25rem;
    grid-column: 1/4;
  }
}

.listing {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 43.75rem) {
  .listing {
    margin-bottom: 5rem;
    position: relative;
    top: -2.75rem;
  }
}
@media screen and (min-width: 61rem) {
  .listing {
    margin-bottom: 7.5rem;
    top: 0;
  }
}

.listing__item {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 43.75rem) {
  .listing__item {
    margin-bottom: 3.125rem;
  }
}

.listing__img {
  grid-column: 1/13;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 43.75rem) {
  .listing__img {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 61rem) {
  .listing__img {
    grid-column: 3/6;
    aspect-ratio: 1;
    object-fit: cover;
    position: relative;
    top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.listing__img-mask {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 16/9;
  grid-column: 1/13;
}
@media screen and (min-width: 43.75rem) {
  .listing__img-mask {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 61rem) {
  .listing__img-mask {
    aspect-ratio: 1;
    grid-column: 3/6;
    top: 0.5rem;
  }
}

.thumb--border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.thumb--british-gas {
  background-color: #08223a;
  background-image: url("/assets/uploads/thumbnails/british-gas-bg.webp");
  background-size: auto 110%;
  background-repeat: no-repeat;
  background-position: 10% 55%;
}

.listing .thumb--british-gas {
  background-size: 105%;
  background-position: 5% 37%;
}
@media screen and (min-width: 61rem) {
  .listing .thumb--british-gas {
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: 10% 55%;
  }
}

.listing__description {
  grid-column: 1/13;
}
@media screen and (min-width: 43.75rem) {
  .listing__description {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 61rem) {
  .listing__description {
    grid-column: 6/13;
  }
}
@media screen and (min-width: 76rem) {
  .listing__description {
    grid-column: 6/11;
  }
}

.listing__description h3 .date {
  font-variation-settings: "wght" 520, "wdth" 53;
  color: #767676;
  display: block;
}
@media screen and (min-width: 61rem) {
  .listing__description h3 .date {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.wrapper-inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 43.75rem) {
  .wrapper-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 61rem) {
  .wrapper-inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 100rem) {
  .wrapper-inner {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 118.75rem) {
  .wrapper-inner {
    padding-left: 16vw;
    padding-right: 16vw;
  }
}

@media screen and (min-width: 43.75rem) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0 2rem;
    align-items: start;
  }
}

.grid-dev {
  display: grid;
  height: 100vh;
  width: calc(100% - 2.5rem);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: fixed;
  top: 0;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0 0.75rem;
  align-items: start;
}
@media screen and (min-width: 43.75rem) {
  .grid-dev {
    width: calc(100% - 3rem);
  }
}
@media screen and (min-width: 61rem) {
  .grid-dev {
    width: calc(100% - 6rem);
  }
}
@media screen and (min-width: 100rem) {
  .grid-dev {
    width: calc(100% - 14vw);
  }
}
@media screen and (min-width: 118.75rem) {
  .grid-dev {
    width: calc(100% - 32vw);
  }
}
@media screen and (min-width: 43.75rem) {
  .grid-dev {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 61rem) {
  .grid-dev {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 100rem) {
  .grid-dev {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 118.75rem) {
  .grid-dev {
    padding-left: 16vw;
    padding-right: 16vw;
  }
}
.grid-dev div {
  height: 100vh;
  background-color: #f44336;
  opacity: 0.2;
}
@media screen and (min-width: 30rem) {
  .grid-dev {
    grid-gap: 0 1rem;
  }
  .grid-dev div {
    background-color: #ff9800;
  }
}
@media screen and (min-width: 43.75rem) {
  .grid-dev {
    grid-gap: 0 1.75rem;
  }
  .grid-dev div {
    background-color: #fee93c;
  }
}
@media screen and (min-width: 49.25rem) {
  .grid-dev {
    grid-gap: 0 1.75rem;
  }
  .grid-dev div {
    background-color: #cddd39;
  }
}
@media screen and (min-width: 61rem) {
  .grid-dev {
    grid-gap: 0 2rem;
  }
  .grid-dev div {
    background-color: #4caf51;
  }
}
@media screen and (min-width: 76rem) {
  .grid-dev div {
    background-color: #03BCD4;
  }
}
@media screen and (min-width: 100rem) {
  .grid-dev div {
    background-color: #2096f3;
  }
}
@media screen and (min-width: 118.75rem) {
  .grid-dev div {
    background-color: #3f51b5;
  }
}
@media screen and (min-width: 143.75rem) {
  .grid-dev div {
    background-color: #9d27b0;
  }
}

.detail {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 43.75rem) {
  .detail {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .detail {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .detail {
    max-width: 33.75rem;
  }
}
@media screen and (min-width: 49.25rem) {
  .detail {
    margin: 3.75rem auto;
    max-width: 37.5rem;
  }
}
.detail ul, .detail ol {
  margin-bottom: 1.5rem;
  clear: both;
}
.detail ul {
  list-style-type: disc;
}
.detail ol {
  list-style-type: decimal;
}
.detail li {
  list-style-type: none;
  padding-left: 1.125rem;
  text-indent: 0;
  position: relative;
}
.detail li:before {
  display: inline-block;
  content: "•";
  position: absolute;
  left: 0rem;
  top: 0.0625rem;
  margin: 0;
  font-size: 1.3em;
}
.detail h2 {
  margin-top: 2.5rem;
}
.detail blockquote {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 43.75rem) {
  .detail blockquote {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .detail blockquote {
    margin-bottom: 2.5rem;
  }
}
.detail blockquote p {
  font-family: "Spezia", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  font-variation-settings: "wght" 430, "wdth" 53;
  position: relative;
}
@media screen and (min-width: 43.75rem) {
  .detail blockquote p {
    font-size: 1.625rem;
    line-height: 2rem;
  }
}
.detail blockquote p::before {
  display: inline-block;
  content: "“";
  position: absolute;
  left: -0.38em;
  margin: 0;
}
.detail blockquote p::after {
  display: inline;
  content: "”";
}
.detail blockquote cite {
  display: block;
  margin: 1rem 0 2rem 0;
}
@media screen and (min-width: 61rem) {
  .detail blockquote cite {
    margin-bottom: 3.75rem;
  }
}

figcaption {
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  hyphens: manual;
  color: #767676;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 43.75rem) {
  figcaption {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 43.75rem) {
  figcaption {
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 43.75rem) {
  figcaption {
    max-width: 33.75rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 49.25rem) {
  figcaption {
    max-width: 37.5rem;
  }
}

.detail-image,
.detail-video {
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 61rem) {
  .detail-image,
.detail-video {
    margin-bottom: 0.75rem;
  }
}

figure {
  margin-left: -1.25rem;
  width: calc(100% + 2.5rem);
}
@media screen and (min-width: 43.75rem) {
  figure {
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
  }
}
@media screen and (min-width: 61rem) {
  figure {
    width: 100%;
    margin-left: 0;
  }
}

.detail-image--regular {
  padding: 1.25rem;
}
@media screen and (min-width: 43.75rem) {
  .detail-image--regular {
    padding: 6vw;
  }
}
@media screen and (min-width: 61rem) {
  .detail-image--regular {
    padding: 8vw;
  }
}

.detail-image--bigger {
  padding: 1.25rem;
}
@media screen and (min-width: 43.75rem) {
  .detail-image--bigger {
    padding: 6vw 4vw;
  }
}
@media screen and (min-width: 61rem) {
  .detail-image--bigger {
    padding: 8vw 4vw;
  }
}

.detail-image--edge-to-edge {
  padding: 1.25rem 0;
}
@media screen and (min-width: 43.75rem) {
  .detail-image--edge-to-edge {
    padding: 6vw 0;
  }
}
@media screen and (min-width: 61rem) {
  .detail-image--edge-to-edge {
    padding: 8vw 0;
  }
}

.detail-image--smaller {
  padding: 1.25rem;
}
@media screen and (min-width: 43.75rem) {
  .detail-image--smaller {
    padding: 6vw 13vw;
  }
}
@media screen and (min-width: 61rem) {
  .detail-image--smaller {
    padding: 8vw 13vw;
  }
}

.detail-image--smallest {
  padding: 1.25rem 12vw;
}
.detail-image--smallest img + img {
  margin-top: 1rem;
}
@media screen and (min-width: 43.75rem) {
  .detail-image--smallest {
    padding: 6vw 15vw;
  }
  .detail-image--smallest img + img {
    margin-top: 3vw;
  }
}
@media screen and (min-width: 61rem) {
  .detail-image--smallest {
    padding: 8vw 15vw;
  }
  .detail-image--smallest img + img {
    margin-top: 3vw;
  }
}

.video {
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #FFFFFF;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.image--border,
.video--border {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 61rem) {
  .image--border,
.video--border {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.detail-image--lightgrey {
  background-color: #fafafb;
}

.detail-image--slategrey {
  background-color: #2d343a;
}

.detail-image--bowlingdarkred {
  background-color: #2d060d;
}

.detail-image--bowlingred {
  background-color: #600101;
}

.detail-image--black {
  background-color: #111;
}

/*
  ----------------------------------------
  ----------------------------------------
   PROJECT SPECIFIC
  ----------------------------------------
  ----------------------------------------
*/
/* BRITISH GAS --------------------------- */
.british-gas-grid {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 65% auto;
  grid-template-rows: 0.1fr auto;
  grid-template-areas: "img1 img2" "img1 img3" "img1 img3";
}
@media screen and (min-width: 61rem) {
  .british-gas-grid {
    gap: 0.75rem;
  }
}

.british-gas-grid__1,
.british-gas-grid__2,
.british-gas-grid__3 {
  object-fit: cover;
  height: 100%;
}

.british-gas-grid__1 {
  grid-area: img1;
  aspect-ratio: 1;
}

.british-gas-grid__2 {
  grid-area: img2;
}

.british-gas-grid__3 {
  grid-area: img3;
}

/* DWP --------------------------- */
.dwp-grid {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: auto;
  grid-template-areas: "img1" "img2" "img3";
}
@media screen and (min-width: 61rem) {
  .dwp-grid {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .dwp-grid {
    grid-auto-rows: 1fr;
    grid-template-columns: 60% auto;
    grid-template-areas: "img1 img2" "img3 img3";
  }
}

.dwp-grid__1,
.dwp-grid__2,
.dwp-grid__3 {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media screen and (min-width: 43.75rem) {
  .dwp-grid__1,
.dwp-grid__2,
.dwp-grid__3 {
    aspect-ratio: auto;
    height: 100%;
  }
}

.dwp-grid__1 {
  grid-area: img1;
  object-position: 50% 0%;
}
@media screen and (min-width: 43.75rem) {
  .dwp-grid__1 {
    object-position: 50% 50%;
    object-fit: cover;
  }
}

.dwp-grid__2 {
  grid-area: img2;
}

.dwp-grid__3 {
  grid-area: img3;
}

.dwp-map img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media screen and (min-width: 43.75rem) {
  .dwp-map img {
    aspect-ratio: auto;
    aspect-ratio: 16/7;
    height: 100%;
  }
}

/* SKY --------------------------- */
.sky-prompt {
  padding: 0 20%;
}
@media screen and (min-width: 43.75rem) {
  .sky-prompt {
    padding: 0 26%;
  }
}
@media screen and (min-width: 49.25rem) {
  .sky-prompt {
    padding: 0 33%;
  }
}

.sky-grid {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: auto;
  grid-template-areas: "img1 img2 img3";
}
@media screen and (min-width: 61rem) {
  .sky-grid {
    gap: 0.75rem;
  }
}

.sky-grid__1,
.sky-grid__2,
.sky-grid__3 {
  object-fit: cover;
  height: 100%;
}

.sky-grid__1 {
  grid-area: img1;
}

.sky-grid__2 {
  grid-area: img2;
}

.sky-grid__3 {
  grid-area: img3;
}

/* ERSKINE --------------------------- */
.edx-grid {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: auto;
  grid-template-areas: "img1 img1" "img2 img2";
}
@media screen and (min-width: 61rem) {
  .edx-grid {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .edx-grid {
    grid-template-areas: "img1 img2";
  }
}

.edx-grid__1,
.edx-grid__2 {
  object-fit: cover;
  height: 100%;
}

.edx-grid__1 {
  grid-area: img1;
}

.edx-grid__2 {
  grid-area: img2;
}

.bowling-grid {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 65% auto;
  grid-template-areas: "img1 img2";
}
@media screen and (min-width: 61rem) {
  .bowling-grid {
    gap: 0.75rem;
  }
}

.bowling-grid__1,
.bowling-grid__2 {
  object-fit: cover;
  height: 100%;
}

.bowling-grid__1 {
  grid-area: img1;
}

.bowling-grid__2 {
  grid-area: img2;
}

.detail-image--shirts {
  padding: 2.5vw 3vw;
}

.header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0 1.25rem;
  align-items: start;
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 61rem) {
  .header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    grid-gap: 0 2rem;
  }
}
.header a {
  color: #FFFFFF;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.header a:hover {
  text-decoration-color: rgb(255, 255, 255);
}

main {
  margin-top: -1px;
}

.logo {
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  hyphens: manual;
  display: block;
  grid-column: 1/9;
  padding: 8px 0 9px 0;
}
@media screen and (min-width: 43.75rem) {
  .logo {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.email-link {
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  hyphens: manual;
  grid-column: 9/13;
  text-align: right;
  padding: 8px 0 9px 0;
}
@media screen and (min-width: 43.75rem) {
  .email-link {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.hero {
  background: #051540;
  color: #FFFFFF;
}

.home .hero .intro {
  margin-bottom: 0rem;
}
@media screen and (min-width: 43.75rem) {
  .home .hero .intro {
    width: 100%;
    max-width: 44.375rem;
    padding-top: 1.625rem;
  }
}

@media screen and (min-width: 43.75rem) {
  .intro__heading {
    max-width: 40.625rem;
  }
}

.intro__heading--highlight {
  color: #8A91FF;
}

.intro__paragraphs {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 46.875rem) {
  .intro__paragraphs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
}

.intro__image {
  position: relative;
  overflow: scroll;
  margin-left: -1.25rem;
  left: -1.875rem;
  width: calc(100% + 4.375rem);
  aspect-ratio: 16/10;
  object-fit: cover;
}
@media screen and (min-width: 43.75rem) {
  .intro__image {
    aspect-ratio: auto;
    left: 0;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
@media screen and (min-width: 61rem) {
  .intro__image {
    margin-bottom: -5rem;
    aspect-ratio: auto;
    margin-left: 0;
    width: 100%;
  }
}

.featured {
  overflow: visible;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #f8f8f9;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 43.75rem) {
  .featured {
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 61rem) {
  .featured {
    margin-bottom: 5rem;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

.featured__text {
  grid-column: 1/13;
}
@media screen and (min-width: 49.25rem) {
  .featured__text {
    grid-column: 1/8;
  }
}
@media screen and (min-width: 76rem) {
  .featured__text {
    grid-column: 1/6;
  }
}
.featured__text p:last-child {
  margin-bottom: 0;
}

.featured__image {
  display: none;
}
@media screen and (min-width: 49.25rem) {
  .featured__image {
    grid-template-columns: 70% auto;
    display: block;
    grid-column: 8/13;
    aspect-ratio: 1;
    object-fit: cover;
  }
}
@media screen and (min-width: 61rem) {
  .featured__image {
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 76rem) {
  .featured__image {
    grid-column: 6/13;
  }
}

.iw-image--small {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  top: 4px;
}
@media screen and (min-width: 49.25rem) {
  .iw-image--small {
    display: none;
  }
}

.iw-image--large {
  display: none;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  align-items: center;
  top: 4px;
}
@media screen and (min-width: 49.25rem) {
  .iw-image--large {
    grid-template-columns: 70% auto;
    display: flex;
    grid-column: 8/13;
  }
}
@media screen and (min-width: 76rem) {
  .iw-image--large {
    grid-column: 6/13;
  }
}

.iw-image {
  position: relative;
  object-fit: cover;
  background-image: url("/assets/uploads/home/iw-bg.webp");
  background-size: auto 102%;
  background-repeat: no-repeat;
  background-position: center center;
}
.iw-image img {
  height: 90%;
}
@media screen and (min-width: 49.25rem) {
  .iw-image {
    grid-template-columns: 70% auto;
    aspect-ratio: 1;
    background-size: auto 100%;
    background-position: center center;
  }
  .iw-image img {
    height: 69.5%;
  }
}
@media screen and (min-width: 61rem) {
  .iw-image {
    aspect-ratio: 4/3;
  }
  .iw-image img {
    height: 63%;
  }
}

.pj-header {
  overflow: hidden;
  color: white;
  display: grid;
  gap: 0;
  grid-template-columns: 1.25rem 6.25rem auto 1.25rem;
  grid-template-areas: "blank one one blank2" "blank two two blank2" "blank three three blank2" "blank four five five";
}
@media screen and (min-width: 43.75rem) {
  .pj-header {
    grid-template-columns: 1.5rem 18rem 17.5rem 1.5rem auto;
    grid-template-areas: "blank one one one blank3" "blank two five five five" "blank three five five five" "blank four five five five";
  }
}
@media screen and (min-width: 61rem) {
  .pj-header {
    grid-template-columns: 3rem 27.25rem;
    grid-template-areas: "blank one five five" "blank two five five" "blank three five five" "blank four five five";
  }
}
@media screen and (min-width: 100rem) {
  .pj-header {
    grid-template-columns: 7vw 27.25rem;
  }
}
@media screen and (min-width: 118.75rem) {
  .pj-header {
    grid-template-columns: 16vw 27.25rem;
  }
}

.pj-header p {
  margin-bottom: 0;
}

.pj-header__heading {
  grid-area: one;
  margin-top: 0.75rem;
}
@media screen and (min-width: 43.75rem) {
  .pj-header__heading {
    margin-top: 1.625rem;
  }
}

.pj-header__intro {
  grid-area: two;
  padding-bottom: 2rem;
}
@media screen and (min-width: 61rem) {
  .pj-header__intro {
    min-height: 25rem;
    padding-right: 0.75rem;
  }
}
@media screen and (min-width: 76rem) {
  .pj-header__intro {
    min-height: 31.25rem;
  }
}

.pj-header__role {
  grid-area: three;
  align-self: end;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 43.75rem) {
  .pj-header__role {
    padding-top: 12.5rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 61rem) {
  .pj-header__role {
    padding-top: 0;
  }
}

.pj-header__date {
  grid-area: four;
  align-self: end;
  padding-bottom: 2rem;
}
@media screen and (min-width: 49.25rem) {
  .pj-header__date {
    align-self: start;
  }
}

.pj-header__image {
  grid-area: five;
  background-repeat: no-repeat;
  background-size: cover;
  height: 22.5rem;
}
@media screen and (min-width: 43.75rem) {
  .pj-header__image {
    height: 100%;
    margin-left: 0.875rem;
    min-height: 31.25rem;
  }
}
@media screen and (min-width: 43.75rem) {
  .pj-header__image {
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 100rem) {
  .pj-header__image {
    min-height: 50rem;
  }
}

/* DWP --------------------------- */
.hero.pj-dwp,
.pj-header.pj-dwp {
  background-color: #0f5ea2;
}
.hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/dwp.webp");
  background-size: 90vw;
  min-height: 25rem;
}
@media screen and (min-width: 30rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    min-height: 28.125rem;
    background-size: calc(100% - 1.25rem);
  }
}
@media screen and (min-width: 43.75rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    background-size: calc(100% - 1.5rem);
    min-height: 31.25rem;
  }
}
@media screen and (min-width: 49.25rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    min-height: 37.5rem;
    background-size: calc(100% - 3rem);
  }
}
@media screen and (min-width: 61rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    background-size: 46vw;
    min-height: 9.375rem;
  }
}
@media screen and (min-width: 76rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    min-height: 43.75rem;
    margin-left: 12%;
    background-size: 85%;
  }
}
@media screen and (min-width: 100rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    margin-left: 18%;
    background-size: 70%;
  }
}
@media screen and (min-width: 118.75rem) {
  .hero.pj-dwp .pj-header__image,
.pj-header.pj-dwp .pj-header__image {
    margin-left: 12%;
    background-size: 70%;
  }
}

@media screen and (min-width: 61rem) {
  .pj-dwp .pj-header__intro {
    min-height: 21.25rem;
  }
}

@media screen and (min-width: 49.25rem) {
  .pj-header.dwp {
    grid-template-columns: 3rem 26.25rem auto 3rem;
  }
}
@media screen and (min-width: 61rem) {
  .pj-header.dwp {
    grid-template-columns: 3rem 27.5rem auto 3rem;
  }
}
@media screen and (min-width: 100rem) {
  .pj-header.dwp {
    grid-template-columns: 7vw 27.5rem auto 7vw;
    grid-template-areas: "blank one five blank2" "blank two five blank2" "blank three five blank2" "blank four five blank2";
  }
}
@media screen and (min-width: 118.75rem) {
  .pj-header.dwp {
    grid-template-columns: 16vw 27.5rem auto 16vw;
  }
}

/* SKY --------------------------- */
.hero.pj-sky,
.pj-header.pj-sky {
  background-color: #452589;
}
.hero.pj-sky .pj-header__image,
.pj-header.pj-sky .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/sky.webp");
}

/* BRITISH GAS --------------------------- */
.hero.pj-british-gas,
.pj-header.pj-british-gas {
  background-color: #072444;
}
.hero.pj-british-gas .pj-header__image,
.pj-header.pj-british-gas .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/british-gas.webp");
}

/* ERSKINE --------------------------- */
.hero.pj-erskine,
.pj-header.pj-erskine {
  background-color: #a92124;
}
.hero.pj-erskine .pj-header__image,
.pj-header.pj-erskine .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/erskine.webp");
}

/* ENDSLEIGH --------------------------- */
.hero.pj-endsleigh,
.pj-header.pj-endsleigh {
  background-color: #241f61;
}
.hero.pj-endsleigh .pj-header__image,
.pj-header.pj-endsleigh .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/endsleigh.webp");
}

/* BBC --------------------------- */
.hero.pj-bbc,
.pj-header.pj-bbc {
  background-color: #005876;
}
.hero.pj-bbc .pj-header__image,
.pj-header.pj-bbc .pj-header__image {
  background-image: url("/assets/uploads/pj-headers/bbc.webp");
}

.footer {
  background-color: #f8f8f9;
}

.footer__top {
  padding: 1.875rem 0 1rem 0;
}
@media screen and (min-width: 43.75rem) {
  .footer__top {
    padding: 2.5rem 0 1.875rem 0;
  }
}
.footer__top h2 {
  margin-bottom: 0.75rem;
}
.footer__top p {
  max-width: 43.75rem;
}
@media screen and (min-width: 43.75rem) {
  .footer__top p {
    font-family: "Spezia", sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    font-variation-settings: "wght" 430, "wdth" 53;
  }
}
@media screen and (min-width: 43.75rem) and (min-width: 43.75rem) {
  .footer__top p {
    font-size: 1.625rem;
    line-height: 2rem;
  }
}

.footer__bottom-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer__bottom {
  background-color: #111;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 70% auto;
  grid-gap: 0 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0 !important;
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  hyphens: manual;
}
@media screen and (min-width: 43.75rem) {
  .footer__bottom {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.footer__bottom p {
  margin-bottom: 0;
}
.footer__bottom a {
  color: #FFFFFF;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.footer__bottom a:hover {
  text-decoration-color: rgb(255, 255, 255);
}

.footer__copyright {
  opacity: 0.9;
  display: block;
  grid-column: 1/1;
}

.footer__to-top {
  opacity: 0.9;
  display: block;
  grid-column: 2/3;
  text-align: right;
}
.footer__to-top a {
  background-image: url("/assets/images/dev/arrow-up-white.svg");
  background-size: 0.625rem;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 1rem;
  transition: background-position 0.1s;
}
.footer__to-top a:hover {
  background-position: 0 0.1875rem;
}
.footer__to-top a:focus-visible {
  background-image: url("/assets/images/dev/arrow-up-black.svg");
}

.next {
  text-decoration: none;
  display: grid;
  grid-template-columns: 4.75rem auto;
  align-items: center;
  gap: 0 0.75rem;
  grid-template-areas: "img title";
  position: relative;
  padding: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.125rem;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0);
  background-image: url("/assets/images/dev/arrow-right-black.svg");
  background-size: 1.125rem;
  background-repeat: no-repeat;
  background-position: center right 1.125rem;
  transition: background-position 0.1s, background-color 0.5s, box-shadow 0.5s, border-color 0.5s;
}
.next:hover {
  background-position: center right 1.4375rem;
  background-color: #f9f9fa;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}
.next:focus-visible {
  border-bottom-color: #ffe801;
}
@media screen and (min-width: 30rem) {
  .next {
    grid-template-columns: 9rem auto 0.625rem;
    grid-template-areas: "img label" "img title";
    gap: 0 1.25rem;
    padding: 1.25rem;
    align-items: start;
    background-size: 1.875rem;
    margin-bottom: 3.75rem;
    background-position: center right 1.375rem;
  }
  .next:hover {
    background-position: center right 1.6875rem;
  }
}

.next__image {
  grid-area: img;
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
@media screen and (min-width: 30rem) {
  .next__image {
    grid-area: img;
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
  }
}

.next__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media screen and (min-width: 30rem) {
  .next__label {
    clip: unset;
    clip-path: none;
    height: auto;
    overflow: auto;
    position: unset;
    white-space: unset;
    width: auto;
    font-variation-settings: "wght" 720, "wdth" 53;
    align-self: start;
    display: block;
    margin: 0 0 0.75rem 0;
    padding: 0;
  }
}

.next__title {
  align-self: start;
  display: block;
  margin: 0;
  padding: 0 2.5rem 0 0;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 30rem) {
  .next__title {
    font-family: "Spezia", sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    font-variation-settings: "wght" 430, "wdth" 53;
  }
}
@media screen and (min-width: 30rem) and (min-width: 43.75rem) {
  .next__title {
    font-size: 1.625rem;
    line-height: 2rem;
  }
}

body.error {
  padding: 1.25rem;
  text-align: center;
  padding-top: 30px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-face {
  font-family: "Spezia", sans-serif;
  font-variation-settings: "wght" 520, "wdth" 53;
  font-size: 2.125rem;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.033em;
}
@media screen and (min-width: 43.75rem) {
  .error-face {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media screen and (min-width: 61rem) {
  .error-face {
    font-size: 2.6875rem;
    line-height: 3rem;
  }
}

.blank-wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 5rem;
  max-width: 35.625rem;
}
@media screen and (min-width: 43.75rem) {
  .blank-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 61rem) {
  .blank-wrap {
    padding: 3rem;
    padding-top: 7.75rem;
  }
}

:focus-visible,
:focus-visible:hover {
  box-shadow: 0px 3px 0px 0px #111 !important;
  outline: none;
  text-decoration: none;
  background-color: #ffe801;
  color: #111 !important;
  transition-property: border-bottom-color, background-color, outline, box-shadow, text-decoration;
  transition-duration: 0.05s !important;
}

:focus:not(:focus-visible) {
  outline: none;
}

.blank {
  background-color: #111;
  color: #FFFFFF;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.inline-block {
  display: inline-block;
}

html {
  font-size: 100%;
}
@media screen and (min-width: 30rem) {
  html {
    font-size: clamp(1rem, 0.65rem + 1.16vw, 1.13rem);
  }
}
@media screen and (min-width: 43.75rem) {
  html {
    font-size: 1rem;
  }
}
@media screen and (min-width: 76rem) {
  html {
    font-size: clamp(1rem, 0.21rem + 1.04vw, 1.18rem);
  }
}
@media screen and (min-width: 143.75rem) {
  html {
    font-size: 1.45rem;
  }
}

img {
  display: block;
}

body {
  color: #111;
  margin-bottom: 0 !important;
  font-feature-settings: "pnum" on, "lnum" on, "ss01" on, "calt" on;
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 1.0625rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  hyphens: manual;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 43.75rem) {
  body {
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

h1 {
  font-family: "Spezia", sans-serif;
  font-variation-settings: "wght" 520, "wdth" 53;
  font-size: 2.125rem;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.033em;
}
@media screen and (min-width: 43.75rem) {
  h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media screen and (min-width: 61rem) {
  h1 {
    font-size: 2.6875rem;
    line-height: 3rem;
  }
}
h1 span {
  color: #8A91FF;
}

h2, h3 {
  font-family: "Spezia", sans-serif;
  font-variation-settings: "wght" 720, "wdth" 53;
  font-size: 1.0625rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 43.75rem) {
  h2, h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

strong {
  font-variation-settings: "wght" 720, "wdth" 53;
}

.small {
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  hyphens: manual;
}
@media screen and (min-width: 43.75rem) {
  .small {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

img {
  width: 100%;
}

p {
  font-family: "Spezia", sans-serif;
  letter-spacing: -0.025em;
  font-variation-settings: "wght" 450, "wdth" 53;
  font-size: 1.0625rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  hyphens: manual;
}
@media screen and (min-width: 43.75rem) {
  p {
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

a {
  text-decoration: underline;
  color: #111;
  transition: text-decoration-color 0.1s linear;
  text-decoration-thickness: 0.1em;
  font-variation-settings: "wght" 520, "wdth" 53;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  text-underline-offset: 1px;
}
a:hover {
  text-decoration-color: rgba(0, 0, 0, 0.8);
}

.arrow-link {
  background-image: url("/assets/images/dev/arrow-right-black.svg");
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center right;
  transition: background-position 0.1s, text-decoration-color 0.1s linear;
  padding-right: 1.125rem;
}
@media screen and (min-width: 43.75rem) {
  .arrow-link {
    background-size: 1rem;
    padding-right: 1.4375rem;
  }
}
.arrow-link:hover {
  background-position: center right 0.09375rem;
}

.arrow-link.arrow-link--light {
  color: #FFFFFF;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  background-image: url("/assets/images/dev/arrow-right-white.svg");
}
.arrow-link.arrow-link--light:hover {
  text-decoration-color: rgba(255, 255, 255, 0.8);
}
.arrow-link.arrow-link--light:focus-visible {
  background-image: url("/assets/images/dev/arrow-right-black.svg");
}

/*# sourceMappingURL=style.css.map */
