﻿.card {
    border-radius: 20px;
    overflow: hidden;
    border: 0;
    position: relative;
}

.standard-card {
    display: flex;
    justify-content: center;
}

.rowGap {
    row-gap: 20px !important;
}

.card.card-standard-card {
    margin-bottom: 2rem;
    padding: 35px;
}

.card figure {
    margin: 0;
}

.card .card-body {
    position: relative;
}

    .card .card-body.card-padding {
        padding-bottom: 50px;
    }

.card p.card-category {
    margin-bottom: 1px;
    padding-bottom: 1px;
    text-transform: capitalize;
}

.card-style-article .card .card-body {
    display: flex;
    flex-direction: column;
}

.card .card-body .card-body-link {
    font-family: var(--Header-Font);
    position: absolute;
    bottom: 10px;
}

a.card-link:hover {
    text-decoration: underline;
}

a.card-link:after {
    content: "\e803";
    font-family: "gcicons";
    position: absolute;
    bottom: 15px;
    right: -25px;
    transition: all 0.3s ease-in-out;
}

.card p.card-category a,
a.card-link {
    color: var(--bgh-light-blue);
}

    a.arrow-right:hover:after, a.card-link:hover:after {
        transition: all 0.3s ease-in-out;
        right: -30px;
    }

.card .card-footer {
    padding: 20px;
    background-color: var(--GC-White);
}

    .card .card-footer ul {
        margin: 0;
    }

.card.card-shadow {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.card.card-article-margin, .card-article-margin {
    margin-bottom: 35px;
}

.card-article .card-footer ul {
    display: flex;
    flex-wrap: wrap;
}

    .card-article .card-footer ul li {
        padding-right: 1rem;
        margin-right: 1rem;
        position: relative;
    }

        .card-article .card-footer ul li:before {
            position: absolute;
            content: '|';
            right: 0;
            top: 0;
            color: var(--GC-Light-Grey);
        }


        .card-article .card-footer ul li:last-child {
            margin-right: 0;
        }

            .card-article .card-footer ul li:last-child:before {
                content: none;
            }

        .card-article .card-footer ul li, .card-article .card-footer ul li a {
            color: var(--GC-Mid-Grey);
        }


.card-style-article .card-article {
    margin-bottom: 2rem;
}

.card .card-image {
    overflow: hidden;
}

    .card .card-image a img {
        transition: transform .25s, visibility .25s ease-in;
    }

    .card .card-image.news a img:hover {
        opacity: .9;
    }

.card-body h4 a, .card-body h5 a, .search-result h3 a, .twitter-list a, .twitter-feed a {
    color: var(--GC-Navy);
}

    .card-body h4 a:hover, .card-body h5 a:hover, .twitter-list a:hover, .twitter-feed a:hover, a:hover .contentpanel p, .input-group-light span {
        color: var(--bgh-light-blue);
    }

.card-body.no-image {
    margin-top: 90px;
}

.card-event-date {
    display: block;
    float: right;
    position: absolute;
    text-align: center;
    left: 15px;
    top: 15px;
    min-width: 60px;
    padding: 5px;
    background: var(--GC-Navy);
}

    .card-event-date h4 {
        color: var(--GC-White);
        font-size: 30px;
        font-weight: 400;
        letter-spacing: 2px;
        border-bottom: 1px solid var(--GC-Light-Grey);
        margin-bottom: 5px;
    }

    .card-event-date p {
        color: var(--GC-White);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 0px;
    }

/*ADD STYLES FOR ODD / EVEN CARDS*/
/*.even .card .card-body, .odd .card .card-body {
    position: relative;
    z-index: 10;
}*/

.card-bg-light-blue {
    background: var(--bgh-light-blue);
}

.card-bg-white {
    background: var(--GC-White);
}

.card-bg-navy {
    background: var(--GC-Navy);
    color: var(--GC-White);
}

    .card-bg-navy h1 {
        color: var(--bgh-light-blue);
    }

    .card-bg-navy .btn-light-blue:hover {
        background: var(--GC-White);
        color: var(--GC-Navy);
        border-color: var(--GC-White);
    }

.card-article .card-image {
    height: 180px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

.card-article .card-body h4 {
    padding-bottom: 20px;
}

.card-article .card-body .card-link {
    justify-content: flex-end;
}

.card-article .article-category {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 20px;
    padding: 5px 10px;
    color: #002856;
    font-weight: bold;
}

.removePadding {
    padding: 0px !important;
}

.addBorderRadius {
    border-radius: 20px;
}