@use "colours";
@use "responsive";
$font-weight-medium: normal;
$font-weight-light: 300;
$font-family: "JohnstonITC", Helvetica, sans-serif;
$font-size-normal: 18px;
$font-line-height-normal: 24px;

* {
  font-family: $font-family;
  font-size: $font-size-normal;
  line-height: $font-line-height-normal;
  font-weight: $font-weight-light;
  @include responsive.not-desktop {
    font-size: 16px;
  }
}

a {
  color: colours.$colour-admiralty-blue;
  &:focus {
    outline: 3px solid colours.$colour-utility-focus;
    outline-offset: 1px;
  }
}

h1 {
  font-family: $font-family;
  color: colours.$colour-admiralty-blue;
  font-weight: $font-weight-medium;
  font-size: 48px;
  line-height: 60px;
  margin: 0 0 30px 0;
  @include responsive.not-desktop {
    font-size: 46px;
    line-height: 54px;
  }
}

h2 {
  font-family: $font-family;
  color: colours.$colour-admiralty-blue;
  font-weight: $font-weight-medium;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 18px;
  @include responsive.not-desktop {
    font-size: 34px;
    line-height: 42px;
  }
}

h3,
h4,
h5 {
  font-family: $font-family;
  color: colours.$colour-admiralty-blue;
  font-weight: $font-weight-medium;
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 12px;
  @include responsive.not-desktop {
    font-size: 20px;
    line-height: 30px;
  }
}

h6 {
  font-family: $font-family;
  color: colours.$colour-admiralty-blue;
  font-weight: $font-weight-medium;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
  @include responsive.not-desktop {
    font-size: 16px;
  }
}

p {
  font-family: $font-family;
  margin-bottom: 30px;
}

.intro {
  font-family: $font-family;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 30px;
  @include responsive.not-desktop {
    font-size: 26px;
  }
}

.small {
  font-family: $font-family;
  font-size: 16px;
  @include responsive.not-desktop {
    font-size: 14px;
    line-height: 22px;
  }
}

blockquote {
  font-family: $font-family;
  line-height: 30px;
  width: 100%;
  padding: 24px 18px;
  border-left: 5px solid colours.$colour-admiralty-blue;
  margin-bottom: 30px;
  background: #eeeeee;
  box-sizing: border-box;
  @include responsive.not-desktop {
    line-height: 24px;
  }
}

ul {
  font-family: $font-family;
  list-style: none;
  a {
    font-weight: $font-weight-light;
  }

  li {
    margin-bottom: 12px;
  }

  li:before {
    content: "\25A0";
    font-size: 18px;
    color: colours.$colour-admiralty-blue;
    vertical-align: text-bottom;
    margin-right: 12px;
    @include responsive.not-desktop {
      font-size: 8px;
    }
  }
}

ol {
  font-family: $font-family;
  list-style: none;
  counter-reset: li;

  a {
    font-weight: $font-weight-light;
  }

  li:before {
    content: counter(li) ".";
    color: colours.$colour-dark-blue;
    font-size: 18px;
    margin-right: 12px;
  }

  li {
    counter-increment: li;
    margin-bottom: 12px;
  }
}

.white-text {
  * {
    color: colours.$colour-white;
  }
}
