body {
    font-size: 16px;
    line-height: 24px;
}

@mixin heading() {
    font-weight: bold;
    color: $text-primary-colour;
}

h1 {
    font-size: 40px;
    line-height: 48px;
    color: $primary;
}

h2 {
    font-size: 32px;
    line-height: 40px;
    color: $primary;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    color: $primary;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    color: $primary;
}

h5 {
    font-size: 20px;
    line-height: 24px;
    color: $primary;
}

.text-large {
    color: $text-primary-colour;
    line-height: 32px;
    font-size: 20px;
    font-weight: normal;
}

.text-small {
    color: $text-primary-colour;
    line-height: 24px;
    font-size: 16px;
    font-weight: normal;
}

ul, ol {
    &.list-bulleted {
        list-style-type: disc;
    }

    &.list-numbered {
        list-style-type: decimal; 
    }

    &.list-bulleted, &.list-numbered {
        color: $text-primary-colour;
        line-height: 28px;

        &.text-large {
            line-height: 32px;
            font-size: 20px;
        }
    }
}

.inset {
    border-left: 6px solid $grey-3;
    padding-left: 16px;
    display: block;
}

.important {
    font-weight: bold;
    position: relative;
    display: inline-block;
    &:before {
        padding-top: 4px;
        padding-left: 9px;
        font-family: $icon-font;
        content: '\e90c';
        left: 0;
        top: 0;
        background: black;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        display: inline-block;
    }

    p, div, span {
        margin-top: -32px;
        padding-left: 48px;
        line-height: 32px;
    }
}

a {
    color: $link-colour;

    &:visited {
        color: $visited-colour;
    }
    &:hover {
        color: $link-hover-colour;
    }
    &:focus {
        outline: 3px solid $focus-colour;
        background: $focus-colour;
    }
}
