.qube_membergrid{
    display:grid;
    gap:20px;
    grid-template-columns: repeat(8, 1fr);
    /* grid-template-rows: repeat(8, 1fr); */

    margin-top: 15px;
    margin-bottom:15px;
    margin-left:15px;
    grid-auto-rows: minmax(100px, 800px);
}
.qube_vereingrid{
    display:grid;
    /* gap:20px; */
    grid-template-columns: repeat(17, 1fr);
    /* grid-template-rows: repeat(8, 1fr); */

    margin-top: 15px;
    margin-bottom:15px;
    margin-left:15px;
    /* grid-auto-rows: minmax(150px, auto); */
}
.qube_teamgrid{
    display:grid;
    /* gap:180px; */
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    margin-top: 15px;
    margin-bottom:15px;
    margin-left:15px;
    margin-right:10px;
    /* grid-auto-rows: minmax(100px, 800px); */
}
.vereinbild{
    grid-column: span 8;
    /* margin-right:10px; */
    /* gap:10px; */

}
.verein_facts{
    grid-column: span 5;
    /* margin-right:10px; */
    /* gap:100px; */
    /* outline: 1px solid red; */


}
.verein_stats{
    grid-column: span 4;
    
    /* outline: 1px solid red; */
}
.verein_biography{
    grid-column: span 17;
}

.team1{
    grid-column: span 2;
    margin-right:10px;
    gap:100px;

}
.member_bild{
    grid-column: span 3;

}
.box_fakten{
    grid-column: span 3;
}
.box_stats{
    grid-column: span 2;
}
.qube_membergrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.vereinbild img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.verein_socialgrid{
    display:grid;
    /* gap:180px; */
    width:100%;
    grid-template-columns: repeat(7, 1fr);
    /* grid-template-rows: repeat(auto, 1fr); */
    margin-top: 15px;
    margin-bottom:15px;
    margin-left:15px;
    margin-right:10px;
    gap:10px;
}
.verein_social_fb{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px; */
    /* outline: 1px solid red; */
    /* align-content: center;
    object-position: center; */
}
.verein_social_tw{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_social_tt{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_social_yt{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_social_ma{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_social_insta{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_social_web{
    grid-column: span 1;
    margin-right:10px;
    /* gap:100px */
    /* outline: 1px solid red; */
}
.verein_socialgrid img{
    width:50px;
    object-position: center;

}

/* VEREINE ÜBERSICHT */
/* ================= */
.vereine_overview{
    min-height:800px;
    /* width:100%; */
    max-height:fit-content;
    /* background-color: aliceblue; */
    background-color:coral;
    width:100%;
    height:max-content;
}
.qube_verein_ov_grid{
    display:grid;
    width:100%;
    gap:10px;
    /* gap:180px; */
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    margin-top: 15px;
    margin-bottom:15px;
    margin-left:10px;
    margin-right:10px;
    /* grid-auto-rows: minmax(100px, 800px); */
}
.vereine_ov{
    grid-column: span 1;
    /* margin-right:10px; */
    /* outline: 1px solid red; */
    margin:10px;
    margin-left:10px;
    /* margin-right:10px; */
}
.vereine_ov img{
    width:100%;
    object-position: center;
}

/* HOVER IMAGE TEXT  */

/* .p_image {
    width: 100%;
    position: absolute;
    top: 0%;
    left: 50%;
    background-color: rgb(0, 0, 0, .5);
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 5% 0;
    color: aliceblue;
    opacity: 0;
    transition: all 1000ms linear;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: linear;
}
.p_caption{
    width:100%;
    background-color:white;
    position:absolute;
    bottom:3%;
    left:10%;
    color:white;
    text-align:center;
}

.vereine_ov img:hover + p_image {
    opacity: 1;
} */




.example{
    position: relative;
    width: 100%;
    display: inline-block;
    margin: 10px;
    margin-left:10px;
  }
  .image {
    width: 100%;
    height: auto;
  }
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:80%;
    text-align: center;
  }
  .overlaxy{
    position: absolute; 
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .5s ease-in-out;
    width: 100%;
  }
  .overlay-1{
    top: 0;
    bottom: 0;
    height: 100%;
    opacity: 0;
  }
  .example:hover .overlay-1 {
    opacity: 1;
  }
  .overlay-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
  }
  .overlay-3 {
    left: 0;
    bottom: 100%;
    height: 0;
    overflow: hidden;
    backdrop-filter: blur(8px) brightness(80%);
  }
  .example:hover .overlay-3 {
    bottom: 0;
    height: 100%;
  }