.info-tile{
 /* background-color: yellow; */
 box-sizing: border-box;
 width: calc(var(--tile-size) * 3 + var(--gap-size) * 2);
 /* height: var(--tile-size); */
 position: relative;
 border: var(--border);
 margin-bottom: var(--agenda-tile-gap);

 display: flex;
 flex-direction: row;
}

.info-text h1{
    font-family: Gadner, Helvetica, sans-serif;
    text-align: left;
    text-transform: uppercase;
    font-size: 40px;
}

.info-text{
    box-sizing: border-box;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 25px;
    /* overflow: hidden; */

    box-sizing: border-box;
    font-family: FeatureMonoLight, sans-serif;
    width: 100%;
    text-align: left;
    font-size: 25px;
}


#signatures{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 200px;
}

.signature-text{
    text-align: center;
}

.signature img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: saturate(80%);
}



@media only screen and (max-width: 700px){
    #agenda-grid{
        width: 90vw;
    }
    
    .info-tile{
        width: 90vw;
        flex-direction: column;
        padding-bottom: 50px;
    }

    .info-text{
        font-size: 20px;
    }


 

}

@media only screen and (min-width: 701px) and (max-width: 1000px){
  
   
    
    .info-tile{
        box-sizing: border-box;
        width: calc(var(--tile-size) * 2 + var(--gap-size));
    }


}


@media only screen and (min-width: 1001px){
 


}

@media only screen and (min-width: 1601px){
    /* Wenn viertes also letztes Element dann über zwei Vertikale columns, ansonsten horizontal über zwei spalten */
/* für andere bildschrimgrössen siehe unten in media queries */





}