﻿/* Partnerseite */
.partner-section {
    padding: 40px;
    text-align: center;
}

.partner-section h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #6E001F; /* Rote Farbe für die Überschrift */
}

.partner-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333;
}

/* Partner Banner */
.partner-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten */
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.partner-item {
    text-align: center;
}

.partner-banner {
    width: 100%;
    height: auto;
    max-width: 500px; /* Maximale Breite der Banner */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-banner:hover {
    transform: scale(1.05); /* Leichter Hover-Effekt für die Banner */
}

.partner-item p {
    font-size: 1.1em;
    margin-top: 10px;
}

.partner-item a {
    text-decoration: none;
    color: #6E001F;
    font-weight: bold;
}

.partner-item a:hover {
    color: #FF0080;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
    .partner-content {
        grid-template-columns: repeat(1, 1fr); /* Auf kleineren Geräten wird es nur eine Spalte */
    }
}
