/* Sponsors Page Styles - Clean and Light */
#sponsorContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

/* Simple Page Title */
.content::before {
  content: '🤝 Unsere Sponsoren';
  display: block;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Clean Sponsor Cards */
.sponsorBlock {
  width: 300px;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 2rem;
  margin: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  color: #1f2937;
}

.sponsorBlock:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.sponsorBlock img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: contain;
  border: 3px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.sponsorBlock h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  word-break: break-word;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 0.5rem;
}

.sponsorBlock a {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
}

.sponsorBlock a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.sponsorBlock a::after {
  content: '🔗';
  font-size: 1rem;
}

/* Simple Empty State */
.noSponsorMsg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(248, 250, 252, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px dashed rgba(59, 130, 246, 0.3);
  color: #1f2937;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.noSponsorMsg::after {
  content: '🤝';
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.noSponsorMsg h2 {
  color: #1e40af;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.noSponsorMsg p {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  #sponsorContainer {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .sponsorBlock {
    width: 100%;
    max-width: 400px;
    min-height: 350px;
    padding: 2rem;
  }
  
  .sponsorBlock img {
    width: 150px;
    height: 150px;
  }
  
  .content::before {
    font-size: 2rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .sponsorBlock {
    padding: 1.5rem;
    min-height: 300px;
  }
  
  .sponsorBlock img {
    width: 120px;
    height: 120px;
  }
  
  .sponsorBlock h3 {
    font-size: 1.3rem;
  }
  
  .content::before {
    font-size: 1.8rem;
    padding: 1rem 0;
  }
  
  .sponsorBlock a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}