﻿
.newsRow {
    margin-bottom: 40px;
}

.newsBild {
    margin-top:5px;
}

.newsDatum {
    font-size: .9em;
    font-weight: 400;
}

.newsTitel {
    font-size: 1.4em;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #252525;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 5px;
}

.newsUntertitel {
    font-size: 1.2em;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #252525;
    margin: 0;
    font-weight: 500;
    padding-top: 10px;
    letter-spacing: 0px;
}

.newsText {
    font-size: 1em;
    
    color: #252525;
    margin: 0;
    font-weight: 300;
    padding-top: 15px;
}

.newsInfo {
    /*font-size: 1.3em;
    font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
    color: #252525;
    margin: 0;
    font-weight: 300;*/
    padding-top: 15px;
}

a.newsLink {
    color:gray !important;
    font-family: Roboto;
}
a.newsLink:hover {
    color: purple !important;
    
}


.flex-container {
    /* We first create a flex layout context */
    display: flex;
    /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
    flex-flow: row wrap;
    /* Then we define how is distributed the remaining space */
    justify-content: space-around;
    margin-top:15px;
    padding:10px;
    border-top: 2px #efefef solid;
}





