﻿


/*--------------------------------------------*/

.modMiniNewsBar h2 {
    margin-top: 0px;
    margin-bottom: 10px;
}

.modMiniNewsBar h3 {
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.resource-categories {
    background: #eee;
    padding: 1.5em;
    margin-top: .5em;
}

    .resource-categories .checkboxes {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

        .resource-categories .checkboxes li {
            flex-basis: 33%;
            margin-bottom: .5em;
        }

.resource {
    --file: "\f47b";
    padding: 15px 20px;
    margin: 10px;
    background: #f1eef3;
}

    .resource .resource_title {
        display: flex;
        gap: 5px;
    }

        .resource .resource_title h4 {
            margin-right: 5px;
            margin-bottom: 0;
            font-weight: 500;
            line-height: 1.2em;
            font-size: 1.2em;
        }

        .resource .resource_title span {
            line-height: 1em;
            height: 100%;
            color: var(--pink);
            margin-top: 5px;
            font-weight: 500;
            font-size: .9em;
            letter-spacing: -.5px;
        }

            .resource .resource_title span a {
                color: var(--pink);
            }

                .resource .resource_title span a:hover {
                    color: var(--pink-light);
                }

    .resource .resource_image {
        content: "\f47b";
        content: var(--icon);
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -.125em;
        -webkit-font-smoothing: antialiased;
        height: 100%;
        background: var(--sec);
    }


        .resource .resource_image.bi {
            margin-top: -2px;
            margin-left: auto;
            margin-top: 3px;
            /*background: none;
            font-size: 1.5em;
            line-height: 0;
            margin-right: 5px;*/
        }

    .resource .subtitle {
        display: flex;
        align-items: center;
    }

        .resource .subtitle span {
            padding: 0 1em;
            line-height: 1em;
            font-style: italic;
        }

            .resource .subtitle span:first-of-type {
                padding-left: 0;
            }

            .resource .subtitle span + span {
                border-left: 1px solid var(--pri);
            }

    .resource .tags {
        font-weight: 400;
        color: var(--purple);
    }

.resource-search {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
}

    .resource-search .input {
        --spacer: .5em;
        display: flex;
        align-items: center;
        margin-right: var(--spacer);
        gap: var(--spacer);
    }

        .resource-search .input:first-of-type {
            flex-grow: 1;
        }

        .resource-search .input .btn {
            font-size: .9em;
        }

        .resource-search .input input {
            flex-grow: 1;
        }

.resource_grid {
    --cols: 3;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
}

    .resource_grid.inline {
        --cols: 2;
    }
/*--------------------------------------------*/
.filter_highlight {
    padding: 15px;
    background: linear-gradient(0deg, #005764, #00a7c1);
    color: #fff;
    margin: 0 0 15px;
}

    .filter_highlight span {
        display: block;
        line-height: 1.3em;
    }

        .filter_highlight span.first {
            font-size: 2.2em;
            color: #63e1f5;
        }

        .filter_highlight span.second {
            font-size: 1.85em;
        }

        .filter_highlight span.third {
            margin: 5px 0 0;
            text-align: right;
        }

    .filter_highlight a {
        color: #fff;
        text-decoration: none;
    }
