.design-card {
    opacity: 0;
    box-shadow: 0 1px 8px rgba(0,0,0,0.2);
    margin: 0 8px 26px;
    border-radius: 8px;
}
.design-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.design-card.loaded {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}
.design-card__wrapper { }

.design-card__image {
    position: relative;
}

.design-card__img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.design-card__type {
    position: absolute;
    padding: 3px 8px 2px 8px;
    margin: -12px 20px -6px 16px;
    font-size: 10px;
    color: #555;
    background: #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    border-radius: 20px;
    left: -5px;
    top: 1px;
}

.design-card__metadata {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.design-card__info {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 9px 15px;
    width: 100%;
    position: relative;
}

.design-card__title {
    font-size: 14px;
    line-height: 20px;
    color: #555;
    font-weight: 700;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    border-bottom: 1px dashed #DDD;
    padding: 6px 0 13px;
}
.design-card__board {
    font-size: 12px;
    color: #555;
    font-weight: 400;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    position: relative;
    padding-left: : 0 0 5px 8px;
}

.design-card__options {
    position: relative;
    top: 8px;
    right: 2px;
}

.design-card__overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.03);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px 8px 0 0;
    padding: 15px;
    /*display: none;*/
    cursor: zoom-in;
}
.design-card__wrapper .design-card__overlay > * {
    display: none;
}
/*.design-card__wrapper:hover { background-color: rgba(0, 0, 0, 0.05); border-radius: 8px 8px 0 0; }*/
.design-card__wrapper:hover .design-card__overlay {
    /*display: block;*/
    background-color: rgba(0,0,0,.25);
}
.design-card__wrapper:hover .design-card__overlay > * {
    display: block;
}


.design-card__engagement {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px dashed #DDD;
    justify-content: space-around;
    padding: 10px 0;
}

.design-card__engagement-item {
    position: relative;
    display: inline-block;
    border-right: 1px dashed #DDD;
    vertical-align: middle;
    color: #888;
    font-weight: 300;
    font-size: 13px;
    opacity: 0.9;
    cursor: pointer;
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
}

..design-card__engagement-item:hover {
    color: #F09;
}

.design-card__engagement-item:last-of-type {
    border-right: 0;
}
.design-card__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 10px;
    margin-top: 8px;
}
.design-card__author:hover {
    cursor: pointer;
    color: #f09;
}

.design-card__author .avatar { margin-right: 5px; }