﻿.spotlightContainer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 2em 1em;
   /* background: rgba(0 0 0/.1);*/
}

    .spotlightContainer h3:first-child {
        transition: transform 0.3s ease;
    }

    .spotlightContainer a.spotlightInfo {
        display: block;
        height: 25em;
        padding-bottom: 0.5em;
        margin: 1em;
        border-radius: 3px;
        color: #333;
        background: #fff;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        flex: 0 0 30%;
        min-width: 15em;
    }

        .spotlightContainer a.spotlightInfo:hover,
        .spotlightContainer a.spotlightInfo:focus {
            text-decoration: none;
            box-shadow: none;
            border: 1px solid #ccc;
            background: #fefefe;
        }

    .spotlightContainer .spotlightInfo .spotlightImg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 14em;
        text-align: end;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        /* padding: .25em; */
    }

        .spotlightContainer .spotlightInfo .spotlightImg .spotDate {
            color: rgb(255, 255, 255);
            font-size: .75rem;
            background: rgba(0, 0, 0, 0.8);
            padding: 5px 5px 0px 5px;
            margin: .75em 0;
            border-radius: 3px;
        }

    .spotlightContainer .spotlightInfo h3 {
        font-size: 1.25em !important;
    }

    .spotlightContainer .spotlightInfo .spotText {
        display: block;
        /* font-size: .9em !important; */
        padding: 0 .5em .5em .5em;
    }

    .spotlightContainer .spotlightInfo ul {
        list-style: none;
        padding-left: 0.5em;
    }

        .spotlightContainer .spotlightInfo ul li {
            padding: 0.25em 0 0.25em 0.25em;
            border-left: 1px solid transparent;
        }

    .spotlightContainer .spotlightInfo li:hover {
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
