
.card.article {
    width: 100%;
    max-width: var(--cards-max-size);
    margin: 20px;
    margin-bottom: 3rem;
}

.card.article > a {
    display: block;
    height: 100%;
    background: #fff;
    box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.2), 0px 3px 4px 0px rgba(0,0,0,0.14), 0px 1px 8px 0px rgba(0,0,0,0.12);
    position: relative;
    padding: 10px;
    text-decoration: none;
    transition: all .3s ease 0s;
}

.card.article > a:hover {
    -webkit-transform: scale(0.99);
    -ms-transform: scale(0.99);
    -o-transform: scale(0.99);
    transform: scale(0.99);
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
    transition: all .3s ease 0s;
}

.card.article > a::before {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    top: 10px;
    left: 10px;
    border: 1px solid rgba(46,44,42,0.2);
}

.card.article .post-thumb {
    height: 0;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
}

.card.article .post-thumb span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.card.article .post-text {
    padding: 35px 25px 0px 25px;
    font-size: 1em;
    color: #777777;
    font-weight: 400;
    position: relative;
}

.card.article .post-infos {
    left: 25px;
    justify-content: flex-start;
}

.card.article .post-time {
    height: 43px;
    width: 40px;
    border: 1px solid rgba(46,44,42,0.2);
    background: #fff;
}

.card.article .post-time time {
    height: 100%;
    width: 100%;
    display: flex;
    -webkit-flex-flow: column;
    -moz-flex-flow: column;
    -ms-flex-flow: column;
    -o-flex-flow: column;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    text-transform: uppercase;
    color: #777777;
}

.card.article .post-time time .day {
    font-size: 1.3em;
}

.card.article .post-time time .month {
    font-family: "Spartan", sans-serif;
    font-size: 0.8em;
    margin-top: 2px;
}

.card.article .post-time time .year {
    font-family: "Spartan", sans-serif;
    font-size: 0.6em;
    margin-top: 2px;
    margin-bottom: 3px;
}

.card.article .post-text .post-icon {
    height: 40px;
    width: 40px;
    background: #d85d0f;
    color: #fff;
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.card.article .post-text .post-title {
    color: #000;
    font-family: "Spartan", sans-serif;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-size: 1em;
    white-space: normal;
}
