/*  Scalable heading w/ disc accent
    Scales based on font-size on heading text.
*/
.re-heading {
    color: #444;
    font-family: 'GothamMedium', sans-serif;
    font-weight: normal;
    font-size: 40px;
    white-space: nowrap;
}

.re-heading b,
.re-heading-disc:before {
    font-size: 1.3em;
    font-weight: normal;
    box-sizing: content-box;
    font-family: 'GothamBold', sans-serif;

    display: inline-block;
    height: 2.4em;
    width: 2.4em;
    line-height: 2.4;
    border-radius: 50%;

    text-align: right;

    border-style: solid;
    border-width: 0.3em;
    padding: .1em;
    margin-right: .1em;

    background-color: #788587;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 3.2em;
}

.re-heading-disc:before {
    content: 're';
}