/* Sponsoren Sektion Styling */
.modern-sponsors-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Leichter Hintergrund zur Abhebung */
}

/* Titel Styling */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: #e74c3c; /* Deine Hauptfarbe hier einsetzen */
    margin: 0 auto 30px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.call-to-action {
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

/* Grid System */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Die Karten */
.sponsor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Logo Bereich in der Karte */
.sponsor-logo-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.sponsor-logo-wrapper img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo-wrapper img {
    filter: grayscale(0%);
}

/* Text Bereich in der Karte */
.sponsor-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sponsor-content h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.sponsor-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    text-align: left; /* Moderner als justify */
    margin-bottom: 0;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr; /* Eine Spalte auf kleinen Handys */
    }
    
    .section-title {
        font-size: 28px;
    }
}