﻿/* Grid styles -------------------------------------------------*/
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 0px;
}


/* Grid image styles ----------------------------------------------*/

/* article-img   is the image put into each grid and the article-title is the explanatory text shown at the bottom of each image.*/


.cards {
    max-width: 1250px;
    margin: 0 auto 30px;
}

article {
    position: relative;
}

.article-img {
    height: 100%;
    width: 100%;
}

.article-imgJACBRANCHTIMETABLE {
    height: 100%;
    width: 200%;
}

.article-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}
