.media-button {
    height: 240px;
    width: 280px;
    position: relative;
    z-index: 10;
}

.media-button-frame {

    /* Generic data just copy and pasted from general.css for now */
    /* background-color: rgb(50, 50, 50);
    box-shadow: 0px 3px 10px -3px rgba(10, 10, 10, 0.8);
    border-radius: 8px;

    border-style: solid;
    border-color: rgba(70, 70, 70, 0.9);
    border-width: 1px; */

    overflow: hidden;

    display: flex;
    justify-content: top;
    align-items: left;
    flex-direction: column;

    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: -1;
    transition:
        height 0.2s,
        width 0.2s,
        background-color 0.2s,
        top 0.2s;
}

.media-button-thumbnail {
    flex: 1;
    width: 100%;
    background-color: rgb(53, 53, 53);
    filter: grayscale(20%);
    transition: filter 0.1s;
    object-fit: cover;
}

.media-button-content{
    flex: 1;
    position: relative;

    margin: 10px 8px 0px 8px;

    display: flex;
    justify-content: top;
    align-items: left;
    flex-direction: column;
}

.media-button-title{
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
}

.media-button-sub-title{
    margin-top: 2px;
    font-size: 13px;
    color: rgb(230, 230, 230);
}

.media-button-reveal-clipping {
    flex: 1;
    margin: 10px 8px;
    position: relative;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0;
}

.media-button-reveal-content {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow:hidden;
}

.media-button-date{
    font-size: 12px;
    opacity: 0.7;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 8px;
    z-index: 2;
}

@media screen and (max-width: 1100px) {
    .media-button {
       height: 360px;
       width: 430px;
    }

    .media-button-frame {
        border-radius: 14px;
    }

    .media-button-title{
        font-size: 20px;
    }

    .media-button-sub-title{
        font-size: 20px;
    }

    .media-button-reveal-clipping {
        font-size: 16px;
    }

    .media-button-date{
        font-size: 16px;
    }

}