_editorial.css 811 Bytes
.editorial-container {
    $bigImgWidth: 290px;
    $smallImgWidth: 268px;
    $smallImgHeight: 176px;
    $space: 10px;

    @extend .resource-container;

    .news {
        display: inline-block;
        box-sizing: border-box;

        .bottomSpace {
            margin-bottom: $space;
        }

        .rightSpace {
            margin-right: $space;
        }

        &.left {
            width: $bigImgWidth;
            float: left;

            img {
                width: $bigImgWidth;
                height: calc($smallImgHeight*2+$space+2px);
            }
        }

        &.right {
            width: calc($smallImgWidth*2+$space*2);
            float: right;

            img {
                width: $smallImgWidth;
                height: $smallImgHeight;
            }
        }
    }
}