///*------------------------------------*\
//    #BASE-PARAGRAPH
//\*------------------------------------*/

// Paragraph base styles
.paragraph,
%paragraph {
    h1, h2, h3, h4, h5, h6,
    ul, ol, dl,
    blockquote, p, address,
    table,
    fieldset, figure,
    pre {
        margin-bottom: $base-spacing-unit * 3;
    }

    ul, ol, dd {
        margin-left: $base-spacing-unit * 6;
    }

    p:last-child,
    ul:last-child {
        margin-bottom: 0;
    }

    a {
        color: $primary-color-1;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }
}