_editorial.css 991 Bytes
.editorial-container {
    $bigImgWidth: 395px;
    $smallImgWidth: 360px;
    $smallImgHeight: 240px;
    $space: 10px;

    @extend .resource-container;

    .news-container {
        height: calc($smallImgHeight*2+$space+2px);
    }

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

        .bottom-space {
            margin-bottom: $space;
        }

        .right-space {
            margin-right: $space;
        }

        img {
            @extend .cursor-pointer;
            display: inline-block;
        }

        &.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;
            }
        }
    }
}