.cards {
    position: relative;
    max-width: 1285px;
    margin: 0 auto 50px;
    padding: 0 15px
}

.cards .cols {
    display: block;
}

.cards .cols .slide {
    border-top: 1px solid #e4e4e4;
}

.cards .img-cont { position: relative;}

.cards .img-cont img {
	display: block;
	width: 100%;
	margin-bottom: 15px;
    aspect-ratio: 470/370;
}

.cards .img-cont .mini-date-container {
    position: absolute;
    top: -18px;
    right: 20px;
}

.cards .img-cont .mini-date-container .inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #faa31b;
    color: #242f44;
    font-family: 'Bee W01';
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 30px;
    padding: 10px;
}

.cards .img-cont .mini-date-container .inner:before {
    position: absolute;
    content: "";
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border-top: 2px solid #faa31b;
    border-right: 2px solid #faa31b;
}

.cards .content-section {
    padding: 52px 15px 30px;
    display: flex;
}

.cards .content-section button {
    background-color: transparent;
    padding: 5px 10px;
    margin-bottom: 0;
}

.cards .content-section button i {
    font-size: 20px;
}

.cards .content-section i {
    color: #faa31b;
    margin-right: 5px;
}

.cards .content-section h4,
.cards .content-section h4 a {
	color: #242f44;
    font-family: 'ITC Caslon No. 224 W01';
    font-weight: 700;
    font-size: 22px;
    line-height: 1em;
}

.cards .content-section .date-cont {
    color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}

.cards .content-section p {
	color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}

.cards .shared-play-button {
    width: 80px;
    height: 80px;
}

.cards .links-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cards .links-cont .featured-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #242f44;
    padding: 30px 15px;
    width: 100%;
}

.cards .links-cont .featured-link h4 {
    color: #fff;
    font-family: urw-din, sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.cards .links-cont .featured-link span {
    color: #faa31b;
    font-family: 'ITC Caslon No. 224 W01';
    font-weight: 500;
    font-size: 18px;
    font-style: italic;
    line-height: 1em;
    text-align: center;
}

.cards .links-cont .featured-link span i {
    color: #faa31b;
    margin-left: 5px;
}

.cards .links-cont .view-all-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #e4e4e4;
    padding: 30px 15px;
    width: 100%;
}

.cards .links-cont .view-all-link a {
    color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.cards .links-cont .view-all-link a i {
    color: #faa31b;
    margin-left: 5px;
}

@media (min-width: 40em) {
    .cards {
        margin: 0 auto 100px;
    }

    .cards .cols {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }

    .cards .cols .slide {
        margin-bottom: 0px;
        border-bottom: 1px solid #e4e4e4;
        border-right: 1px solid #e4e4e4;
        border-top: none;
    }
    
    .cards .cols .slide:nth-child(1),
    .cards .cols .slide:nth-child(2),
    .cards .cols .slide:nth-child(3) {
        border-top: 1px solid #e4e4e4;
    }

    .cards .cols .slide:nth-child(3n) {
        border-right: none;
    }

    .cards .content-section {
        padding: 55px 15px;
    }

    .cards .content-section button {
        background-color: transparent;
        padding: 10px;
        margin-bottom: 0;
    }
    
    .cards .content-section button i {
        font-size: 24px;
    }
    
    .cards .content-section h4,
    .cards .content-section h4 a {
        font-size: 26px;
    }

    .cards .content-section .date-cont {
        font-size: 15px;
        display: inline;
        margin-right: 10px;
    }
    
    .cards .content-section p {
        font-size: 15px;
        display: inline;
    }

    .cards .links-cont {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    
    .cards .links-cont .featured-link {
        padding: 15px;
        padding-bottom: 20px
    }
    
    .cards .links-cont .featured-link h4 {
        font-size: 24px;
    }
    
    .cards .links-cont .featured-link span {
        font-size: 26px;
    }
    
    .cards .links-cont .view-all-link {
        border-bottom: 1px solid #e4e4e4;
        border-top: 1px solid #e4e4e4;
    }
    
    .cards .links-cont .view-all-link a {
        font-size: 24px;
    }
}

@media (min-width: 40em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .cards {
        padding: 0;
    }

    .cards .cols {
        display: flex;
        flex-wrap: wrap;
    }

    .cards .cols .slide {
        width: 33.33%;
    }
}