/***** Header styling *****/
.shows-header {
    text-align: center;
    background: gray;
    color: white;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
}

.shows-header-flex {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 75px 0 50px;
    align-items: center;
}

.check-for-new {
    width: 100%;
    padding: 15px 0;
    color: #f7cd0d;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.previous-shows-wrapper {
    padding: 50px 0;
}

@media (min-width:768px) {
    .shows-header-flex {
        align-items: flex-start;
        margin-top: 20vh;
    }
}

/***** Single show styling *****/
.shows-singles-wrapper {
    width: 90%;
    margin: 35px auto 0;
}

.single-show-wrapper {
    background: rgba(0,0,0,.5);
    color: white;
    margin: 15px 0 0;
    text-align: center;
    transition: all .5s;
}
.single-show-wrapper:hover {
    background: rgba(0,0,0,.9);
}

.single-show-content {
    padding: 13%;
}

.single-show-link {
    color: white;
    text-decoration: none;
    transition: all .5s;
}

.single-show-date {
    font-size: 1.5em;
    text-transform: uppercase;
}
.single-show-title {
    font-weight: 800;
    padding: 10px 0 0;
}
.single-show-location,
.single-show-featured {
    padding: 10px 0 0;
    font-weight: 200;
    font-size: .8em;
}

@media (min-width:768px){
    .shows-singles-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .single-show-wrapper {
        width: calc((100% - 90px) / 3);
        margin: 15px;
    }
}