/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 11 2026 | 08:07:05 */
.partner-liste {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
}

.partner-liste li {
    width: 170px;
    height: 180px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.partner-liste li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.partner-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 15px; /* Hier das Padding des Links */
    text-decoration: none;
    color: inherit;
    position: relative;
}

.partner-card-link img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: auto;
}

.partner-card-link span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}