﻿
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900|Open Sans:400,600,800');


.post-card-container {
    max-width: 400px;
    min-width: 300px;
    background-color: rgba(59, 97, 113, 0.05);
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    font-family: "Open Sans";
}

.post-name-under-card {
    font-size: 15px;
    font-weight: bold;
    align-items: center;
}

.post-rate-under-card {
    font-size: 13px;
    font-weight: bold;
    align-items: end;
}

.post-feed-card {
    max-width: 400px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

    .post-feed-card img {
        transition: all 0.15s linear;
        width: 100%;
        height: 100%;
    }

    .post-feed-card .post-name {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 25px;
        font-weight: bold;
        color: #FFF;
        padding: 15px 20px;
        background: linear-gradient(140deg, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 0, 0) 50%);
        transition: all 0.15s linear;
        display: none;
    }

    .post-feed-card .post-description {
        position: absolute;
        color: rgba(255, 255, 255, 0.63);
        left: 30px;
        top: 10px;
        margin-right:7px;
        transition: all 0.15s linear;
        display: none;
    }

    .post-feed-card .post-overview {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 0, 0));
        color: #FFF;
        padding: 50px 0px 20px 0px;
        transition: all 0.15s linear;
        display: none;
    }

        .post-feed-card .post-overview h3 {
            font-weight: bold;
        }

        .post-feed-card .post-overview p {
            color: rgba(255, 255, 255, 0.7);
            font-size: small;
        }

    .post-feed-card:hover img {
        filter: brightness(15%);
    }

    .post-feed-card:hover .post-name {
        padding-left: 25px;
        padding-top: 20px;
        display: block;
    }

    .post-feed-card:hover .post-description {
        left: 40px;
        display: block;
    }

    .post-feed-card:hover .post-overview {
        padding-bottom: 25px;
        display: block;
    }
