/* General */

a {
    color: var(--theme-link);
}

a:hover {
    color: var(--theme-link-hover);
}

/* Headers */

h2
{
    font-size: 28px;
    margin: 28px 0;
    padding: 0;
    font-weight: bold;
}

h3
{
    font-size: 24px;
    margin: 24px 0;
    padding: 0;
    font-weight: bold;
}

h4
{
    font-size: 22px;
    margin: 22px 0;
    padding: 0;
    font-weight: bold;
}

h5
{
    font-size: 18px;
    margin: 18px 0;
    padding: 0;
    font-weight: bold;
}

h6
{
    font-size: 16px;
    margin: 16px 0;
    padding: 0;
    font-weight: bold;
}

/* Blockquotes */

blockquote {
    border: 1px solid var(--theme-gray);
    padding: 20px 20px 20px 100px;
    font-style: italic;
    color: var(--theme-primary-light);
    font-size: 22px;
    font-weight: normal;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin: 30px 0;
}

blockquote:before {
    content: "\e811";
    font-family: unicons;
    font-size: 40px;
    font-style: normal;
    position: absolute;
    top: 7px;
    left: 25px;
    color: var(--theme-gray);
}

blockquote p:last-of-type {
    margin-bottom: 0;
}