.blocks .block {
    transition: all 0.2s ease-in-out;
}

.blocks .block .block-image {
    position: relative;
    z-index: 1;
    width: 100%;
}

.blocks .block .block-content {
    display: none;
    width: 0;
}

.blocks .block.expanded {
    transition: all 0.2s ease-in-out;
}

.blocks .block.expanded .block-image {
    width: 50%;
}

.blocks .block.expanded .block-content {
    display: block;
    width: 48%;
    padding-left: 2%;
}

.pinterest-block {
    overflow: hidden;
}

.pinterest-block .image-body {
    transition: top 0.4s;
    background-color: #e8e7e8;
    position: absolute;
    top: 100%;
    height: 100%;
    width: calc(100% - 30px);
    padding: 15px;
}

.pinterest-block:hover .image-body {
    top: 0px;
}