﻿:root {
    --border-blue: #0060A9;
    --typography-heading: #0462a5;
    --brand-primary-medium: #146eb2;
    --brand-tertiary: #F0F0F0;
    --EngCDarkBlue: #0462a5;
    --EngCLightBlue: #009fe3;
    --brand-primary-light: #c7e0f2;
}

body {
    background: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin: 0 0 60px 0;
}

h3 {
    font-size: 1.188rem;
}

h4 {
    font-size: 1.125rem;
}

.heading, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--typography-heading);
}

.content {
    max-width: 1306px;
    margin: 0 auto;
}

/* Course Search Results styling */

.search-results {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ol.search-results > li + li {
    margin-top: 1em;
}

.search-result-header {
    display: block;
    position: relative;
}

    .search-result-header a {
        display: block;
        height: 100%;
        background-color: var(--EngCDarkBlue);
        color: #fff;
        padding: 0.5em;
        text-decoration: none;
    }

        .search-result-header a:hover {
            text-decoration: underline;
        }

        .search-result-header a h3 {
            color: #fff;
            margin: 0;
            padding: 0;
        }

    .search-result-header .course-reference {
        text-align: right;
    }


.search-result-body {
    background-color: var(--brand-primary-light);
    padding: 0.5em;
}

    .search-result-body h4:first-of-type {
        margin-top: 0;
    }

    .search-result-body h4 {
        color: #000;
        font-size: 1em;
        line-height: 1.33;
    }

    .search-result-body summary {
        list-style-type: '▼ ';
        text-align: right;
    }

        .search-result-body summary::after {
            content: "Show more..."
        }

    .search-result-body details[open] summary {
        list-style-type: '▲ ';
    }

        .search-result-body details[open] summary::after {
            content: "Show less..."
        }

    .search-result-body ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

.footer-disclaimer {
    text-align: right;
    color: var(--EngCDarkBlue);
}

.list-presentation h4 {
    margin-bottom: 0.5em;
    line-height: 1;
}

.list-presentation ul {
    margin-bottom: 1em;
}

.inline-presentation h4 {
    margin-bottom: 0.5em;
    display: inline;
}

.inline-presentation ul {
    display: inline-block;
}

    .inline-presentation ul li {
        display: inline-block;
    }

        .inline-presentation ul li:not(:last-of-type)::after {
            content: ", ";
        }
