.c-card {
    margin-bottom: 32px;
}

.c-card__wrapper:hover .c-info li span {
    opacity: 1;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
}

.c-card__wrapper:hover .c-card__body {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.c-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.c-card__body {
    margin-top: auto;
    color: #fff;
    -webkit-transform: translateY(calc(96px + 3.2rem));
    transform: translateY(calc(96px + 3.2rem));
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-card__content {
    padding: 1em;
    position: relative;
    z-index: 1;
}

.c-card__author {
    font-size: 14px;
    margin-bottom: 8px;
}

.c-card__title {
    font-weight: 300;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.c-card__title a {
    color: #fff;
}

.c-card__title a:hover {
    text-decoration: none;
}

.c-card__desc {
    height: 96px;
    overflow: hidden;
}

.c-card__more {
    display: inline-block;
    margin: 1rem auto 0.5rem;
    text-align: center;
    color: #fff;
    line-height: 1;
    position: relative;
    font-weight: 300;
}

.c-card__more:hover {
    color: #fff;
    text-decoration: none;
}

.c-card__more:hover::after {
    -webkit-transform: translate(20px, -50%);
    transform: translate(20px, -50%);
    opacity: 1;
}

.c-card__more::after {
    content: '\2192';
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.c-date {
    color: #fff;
    font-size: 14px;
}

.c-info {
    list-style: none;
    margin: 0;
}

.c-info li {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 4px;
}

.c-info li a {
    color: #ffffff;
}

.c-info li a:hover {
    text-decoration: none;
}

.c-info li span {
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: -4px;
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
}