:root {
  /* Startseiten-Rot statt des von band.css geerbten gedeckteren Rots — passt besser zu dieser Seite */
  --red: #e03344;
}

.sponsor-main {
  /* Kein Hero-Bild auf dieser Seite — zusätzlicher Abstand, damit die Headline nicht unter der fixierten Nav liegt */
  padding-top: 11rem;
}

.sponsor-header {
  margin-bottom: 5rem;
}

.page-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-label::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--red); }

.sponsor-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--off-white);
}
.sponsor-title em {
  font-style: normal;
  color: var(--red);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .sponsor-main { padding-top: 6rem; }
  .sponsor-header { margin-bottom: 3.5rem; }
}

.sponsor-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sponsor-card {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sponsor-card-img {
  display: block;
  flex: 0 0 50%;
  width: 50%;
  height: auto;
  padding: 24px 0;
}

.sponsor-card-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sponsor-card-divider {
  align-self: stretch;
  width: 1px;
  flex-shrink: 0;
  background: rgba(232,64,78,0.15);
}

.sponsor-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 24px 0;
}

.sponsor-card-name {
  font-size: clamp(1rem, 0.7rem + 1.2vw, 1.6rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.35;
}

.sponsor-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  transition: background 0.2s ease, color 0.2s ease;
}

.sponsor-card-link:hover {
  background: var(--red);
  color: var(--off-white);
}

.sponsor-card-link svg { flex-shrink: 0; }

.sponsor-intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
}

.sponsor-cta {
  margin-top: 9rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sponsor-cta p {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .sponsor-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .sponsor-card-img {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .sponsor-card-divider {
    align-self: auto;
    width: 100%;
    height: 1px;
  }

  .sponsor-card-info {
    align-self: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    gap: 1rem;
  }

  .sponsor-card-link {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
  }

  .sponsor-card-link svg {
    width: 13px;
    height: 13px;
  }
}
