/* 20170306 http://leo-webredaktion-muenchen.de */
/* Original css by http://w3bits.com/css-masonry/ */

img, iframe {
max-width: 100%;
height: auto;
display: block;
}

.wrapper {
    width: 90%;
    margin: 0.5em auto;
}

.masonry {
    margin: 0.5em 0;
    padding: 0;
    -moz-column-gap: 0.5em;
    -webkit-column-gap: 0.5em;
    column-gap: 0.5em;
     font-size: .85em;
}

.item {
    display: inline-block;
    background: #fff;
    padding: 0.5em;
    margin: 0 0 0.5em;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.title  {
text-align: center;
font-size: 0.8em;
margin: .25em 0;
/*color: #666;*/
}



@media only screen and (min-width: 700px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 900px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 1100px) {
    .masonry {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media only screen and (min-width: 1280px) {
    .wrapper {
        width: 1260px;
    }
}