.showcase {
    position: relative;
    max-width: 1285px;
    margin: 0 auto 50px;
    padding: 0 15px
}

.showcase .cols {
    display: block;
}

.showcase .cols .slide {
    margin-bottom: 20px;
    position: relative;
}

.showcase .img-cont { position: relative; overflow: hidden;margin-bottom: 15px;}

.showcase .img-cont img {
	display: block;
	width: 100%;
    transform: scale(1);
    transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 30s;
    aspect-ratio: 470/320;
}

.showcase .img-cont:hover img {
    transform: scale(1.4);
}

.showcase .mini-date-container {
    position: absolute;
    top: -10px;
    right: 35px;
}

.showcase .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;
}

.showcase .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;
}

.showcase .content-section {
    padding: 0 15px;
    display: flex;
}

.showcase .content-section button {
    background-color: transparent;
    padding: 5px 10px;
    margin-bottom: 0;
}

.showcase .content-section button i {
    font-size: 20px;
}

.showcase .content-section i {
    color: #faa31b;
    margin-right: 5px;
}

.showcase .content-section h4,
.showcase .content-section h4 a {
	color: #242f44;
    font-family: 'ITC Caslon No. 224 W01';
    font-weight: 700;
    font-size: 22px;
    line-height: 1em;
}

.showcase .content-section .date-cont {
    color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}

.showcase .content-section p {
	color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}

.showcase .shared-play-button {
    width: 80px;
    height: 80px;
}

@media (min-width: 40em) {
    .showcase .cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-column-gap: 50px;
        grid-row-gap: 30px;
    }

    .showcase .cols .slide {
        /* margin-bottom: 0px; */
    }

    .showcase .content-section button {
        background-color: transparent;
        padding: 10px;
        margin-bottom: 0;
    }
    
    .showcase .content-section button i {
        font-size: 24px;
    }
    
    .showcase .content-section h4,
    .showcase .content-section h4 a {
        font-size: 36px;
    }

    .showcase .content-section .date-cont {
        font-size: 15px;
        display: inline;
        margin-right: 10px;
    }
    
    .showcase .content-section p {
        font-size: 15px;
        display: inline;
    }

    .showcase .img-cont img {
        aspect-ratio: 658/448;
    }
}

@media (min-width: 40em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .showcase {
        padding: 0;
    }

    .showcase .cols {
        display: flex;
        flex-wrap: wrap;
    }

    .showcase .cols .slide {
        width: calc(50% - 50px);
        margin: 25px
    }
}

@media (min-width:64em) {
    .showcase .img-cont img {
        aspect-ratio: 843/574;
    }
}