.container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s1);
  padding-left: var(--s1);
}
.module,
.module-p {
  --module-padding: var(--s3);
  padding: var(--module-padding) 0;
}
.module--p-0 {
  padding: 0;
}

.btns {
  display: flex;
  gap: var(--s-1);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  padding: var(--s-2) var(--s0);
  border-radius: var(--s-3);
  --hue: 0;
  --saturation: 0%;
  --lightness: 92%;
  --alpha: 1;
  background-color: hsla(var(--hue), var(--saturation), var(--lightness), var(--alpha));
}
.btn:focus,
.btn:hover {
  --lightness: 82%;
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.pb-0 {
  padding-bottom: 0;
}

.constrain-width {
  max-width: 740px;
}

.stack-s-5 > * + * {
  margin-top: var(--s-5);
}
.stack-s-4 > * + * { margin-top: var(--s-4); }
.stack-s-3 > * + * { margin-top: var(--s-3); }
.stack-s-2 > * + * { margin-top: var(--s-2); }
.stack-s-1 > * + * { margin-top: var(--s-1); }
.stack-s0 > * + * { margin-top: var(--s0); }
.stack-s1 > * + * { margin-top: var(--s1); }
.stack-s2 > * + * { margin-top: var(--s2); }
.stack-s3 > * + * { margin-top: var(--s3); } 
.stack-s4 > * + * { margin-top: var(--s4); }
.stack-s5 > * + * { margin-top: var(--s5); }

.skip {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus
{
  position:static;
  width:auto;
  height:auto;
}

/* Theme colours */
.theme-5a6b5f { background-color: #5a6b5f; }
.theme-4b4e4f { background-color: #4b4e4f; }
.theme-e0b33f { background-color: #e0b33f; }
.theme-b1d2e4 { background-color: #b1d2e4; }
.theme-0d333e { background-color: #0d333e; }
.theme-5a747f { background-color: #5a747f; }
.theme-9f2420 { background-color: #9f2420; }
.theme-ae9079 { background-color: #ae9079; }
.theme-b2593c { background-color: #b2593c; }

.theme-e0e4e1 { background-color: #e0e4e1; }
.theme-dddedd { background-color: #dddedd; }
.theme-f8f1d9 { background-color: #f8f1d9; }
.theme-f3f8fa { background-color: #f3f8fa; }
.theme-d2dadb { background-color: #d2dadb; }
.theme-dfe5e6 { background-color: #dfe5e6; }
.theme-edd5d0 { background-color: #edd5d0; }
.theme-f1ebe6 { background-color: #f1ebe6; }
.theme-f2dfd8 { background-color: #f2dfd8; }

.tint { background-color: rgba(255,255,255,0.85); }
.bg-cover {
  position: relative;
  overflow: hidden;
}
.bg-cover__img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bg-cover > *:not(.bg-cover__img) {
  position: relative;
  z-index: 2;
}
.link,
.faux-link {
  color: var(--color-rust);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.9rem;
  text-decoration: none;
  display: block;
}
.link:hover {
  text-decoration: underline;
}
.link:before {
  content: "> " / "";
  speak: none;
}
.link--s,
.faux-link--s {
  font-size: 1.6rem;
}
.highlight {
  color: var(--color-highlight);
}

.module-heading {
  font-size: 2.5rem;
  margin-bottom: var(--s1);
}
.module-heading--dark {
  color: #4B4F4F;
}
.image-caption {
  background-color: #fff;
  padding: var(--s1);
  max-width: 730px;
}
.image-caption__pre-heading {
  color: var(--color-highlight);
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: var(--s1);
}
.image-caption__heading {
  font-size: 2.5rem;
  font-weight: normal;
}
.breadcrumb {
  padding: 15px 0;
  color: var(--color-secondary-light);
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb .active {
  color: var(--color-secondary-dark);
}

/* sm */
@media (min-width: 576px) {
  .module,
  .module-p {
    --module-padding: var(--s2);
  }
  .link {
    font-size: 2rem;
  }
  .link--s,
  .faux-link--s {
    font-size: 1.6rem;
  }
  .image-caption__pre-heading {
    font-size: 2.1rem;
  }
  .image-caption__heading {
    font-size: 3rem;
  }
  .module-heading {
    font-size: 3rem;
  }
}

/* md */
@media (min-width: 768px) {
  .module,
  .module-p {
    --module-padding: var(--s4);
  }
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s3);
  }
  .container {
    padding-right: var(--s0);
    padding-left: var(--s0);
  }
  .link {
    font-size: 2.1rem;
  }
  .link--s,
  .faux-link--s {
    font-size: 1.6rem;
  }
  .image-caption__pre-heading {
    font-size: 2.2rem;
  }
  .image-caption__heading {
    font-size: 3.5rem;
  }
  .module-heading {
    font-size: 3.5rem;
  }
}

/* lg */
@media (min-width: 992px) {
  .link {
    font-size: 2.2rem;
  }
  .link--s,
  .faux-link--s {
    font-size: 1.6rem;
  }
  .image-caption__pre-heading {
    font-size: 2.3rem;
  }
  .image-caption__heading {
    font-size: 4rem;
  }
  .module-heading {
    font-size: 4rem;
  }
  .mobile-nav {
    display: none;
  }
}

/* xl */
@media (min-width: 1200px) {
  .link {
    font-size: 2.3rem;
  }
  .link--s,
  .faux-link--s {
    font-size: 1.6rem;
  }
  .image-caption__pre-heading {
    font-size: 2.5rem;
  }
  .image-caption__heading {
    font-size: 4.5rem;
  }
  .module-heading {
    font-size: 4.5rem;
  }
}

/* xxl */
@media (min-width: 1400px) {
}
