/* CSS für Partnerübersicht - Kompakt & grafisch hochwertig */

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
}

.card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
} /* <<< HIER hat die Klammer gefehlt! */

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-link {
    display: inline-block;
    font-size: 0.9em;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: auto; /* immer unten! */
    align-self: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-link:hover {
    background-color: #3498db;
    color: #fff;
}
