#blocks .block .image img {
    width: 100%;
}
#blocks .block .name {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
}
#blocks .block .text strong {
    display: block;
    font-size: var(--default-font-size);
    font-family: var(--title-font-family);
    line-height: normal;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
}
#blocks .block.large .image {
    margin-bottom: var(--default-spacing);
}
#blocks .block.image .name {
    display: none;
}
#blocks .block.compact .text {
    height: 110px;
    overflow: hidden;
}
#blocks .block.compact.expanded .text {
    height: auto;
}
#blocks .block.compact .more {
    width: 16px;
    height: 16px;
    background: url('../img/more.svg') no-repeat;
    background-size: 100%;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}
#blocks .block.compact.expanded .more {
    background: url('../img/less.svg') no-repeat;
    background-size: 100%;
}

@media only screen and (min-width: 768px) {
    #blocks .block {
        width: 49.99%;
        box-sizing: border-box;
        padding-right: 30px;
    }
    #blocks .block.image {
        padding-right: 0;
    }
    #blocks ul {
    }
}
@media only screen and (min-width: 1024px) {
    #blocks .block {
        padding-right: 50px;
    }
}