.pl_support {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px; /* Abstand innen – verhindert, dass Kästen bis zum Rand gehen */
    max-width: 1200px; /* Optional: maximale Breite */
    margin: 0 auto; /* Zentriert das Ganze */
}

.pl_support_block {
    flex: 0 0 auto;
    width: 190px;
    margin: 0 10px 10px 0;
    position: relative;
}

.pl_support_admin {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    font-size: 11px;
    padding: 2px 6px;
    z-index: 10;
}


.pl_support_issue {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.pl_support_link{
    flex: 0 0 auto; /* ← wichtig */
    width: 190px;
    display: block;
    text-decoration: none;
}

.pl_support_item {
   
    aspect-ratio: 1 / 1;
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 5px 5px -5px black;
    border: 1px #c2c2c2 solid;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
}

.pl_support_item_date {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(234, 234, 234, 1);
    padding: 3px 10px 5px 10px;
    text-align: center;
    font-weight: 400;
    transition: all 0.2s ease;
    display: table;
}

.pl_support_item:hover .pl_support_item_date {
    bottom: 0;
}

/* Optional: Leere Platzhalter-Kacheln */
.item-empty {
    visibility: hidden;
}

/* Responsiv (kleinere Bildgrößen) */
@media screen and (max-width: 999px) {
    .pl_support_link {
        width: 160px;
    }
}

@media screen and (max-width: 700px) {
    .pl_support_issue {
        justify-content: center;
    }

    .pl_support_link {
        width: 120px;
    }
}
   
    
   
    

    
