:root {
    --pure-black: #000;
    --black: #111;
    --white: #FFF;
    --red: #ec2024;
    --red-for-with-white: #DD1317;
    --dark-gray: #2c2c2c;
    --accent: #ec2024;
    --light-gray: #f8f8f8;
}

html {
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

input[type="text"] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
}

body, html {
    font-size: 100%;
    font-weight:normal;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family:  Roboto, sans-serif;
    letter-spacing: 0.015em;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    font-weight: bold;
}

    a:active, a:focus, a:hover {
        color: inherit;
        text-decoration: underline;
        text-decoration-color: var(--accent);
        text-decoration-thickness: 3px;
    }

    a.no-a, a.no-a:hover, a.no-a:active, a.no-a:focus {
        color: inherit;
        text-decoration: inherit;
        font-weight: inherit;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: Jost, sans-serif;
    font-weight: 700;
    color: var(--red);
    margin-top: 1em;
}

h1 {
    font-size: 2.25em;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.btn {
    border-radius: 0;
    border: 0 none;
    padding: 0.5em;
    font-weight: 700;
    text-decoration: none;
    text-align:center;
}

    .btn:active, .btn:focus, .btn:hover {
        text-decoration: none;
    }

    .btn.btn-primary {
        background-color: var(--red-for-with-white);
        text-transform: uppercase;
        color: var(--white);
    }


        .btn.btn-primary:active {
            background-color: var(--red);
        }

    .btn.btn-black {
        background-color: var(--pure-black);
        text-transform: uppercase;
        color: #fff;
    }

        .btn.btn-black:active {
            background-color: var(--black);
        }

    footer .m-logo {
        display: block;
        width: 300px;
        max-width: 100%;
        margin-bottom: 2em;
    }

    footer p {
        font-size: 0.85em;
        margin-bottom: 1.5em;
    }


img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .featured-article-image {
        width: 100%;
        height: 18vw;
        min-height: 200px;
        max-height: 300px;
        object-fit: cover;
    }
}

.border-left-gray {
    border-left: 4px solid #4e4f4f;
}

.c-white {
    color: var(--white);
}

.bg-dark-gray {
    background: var(--dark-gray);
    color: var(--white);
}


.bg-light-gray {
    background: var(--light-gray);
    color: var(--pure-black);
}

.bg-black {
    background: var(--black);
    color: var(--white);
}

.bg-red {
    background: var(--red-for-with-white);
    color: var(--white);
}

.bg-white {
    background: var(--white);
    color: var(--black);
}

    .bg-red a, .bg-red h1, .bg-red h2, .bg-red h3, .bg-red h4 {
        color: var(--white);
    }

        .bg-red a:active, .bg-red a:hover, .bg-red a:focus {
            color: var(--light-gray);
        }

.bg-feature {
    background-image: linear-gradient(180deg, #a71e28c4, #000000cc 75%, #3e1e21c4), url(/assets/NYSE-after-market-closes-sundown.jpg);
    background-size: cover;
    color: #fff;
    background-position: bottom;
    margin-bottom: -1px;
}



.styled-table td, th {
    padding: .5em .6em;
}

.styled-table th {
    background: var(--red-for-with-white);
    color: #fff;
    font-family: Jost;
    font-weight: 700;
}

.styled-table tr:nth-child(even) {
    background: var(--light-gray);
}

.narrow-container {
    max-width: 700px;
}

.article-image-one {
    width: 100%;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 1em;
}

    ul li::before {
        content: "\2022";
        color: #ec2024;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }