.pitch {
  text-align: center;
  padding: 10px 0px 10px 0px;
}

.pitch div {
  display: list-item;
  justify-content: center;
  gap: 4rem; /* optional spacing between lines */
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.pitch p {
  margin: 0;
  font-size: 2rem;
}

.pitch a {
  text-decoration: none;
  color: inherit;
}

/* Card Row */
.card-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.card {
  position: relative;
  width: 220px;
  height: 300px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--txtclr);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.card:hover img {
  filter: brightness(1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 12px 0px 12px 0px;
}

.card-overlay h2 {
  margin: 0;
  font-size: 2rem;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  color: var(--txtclr);
}

.sponsors {
  padding: 80px 20px;
  text-align: center;
}

.sponsors h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--txtclr);
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.sponsor-logos img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
}

.sponsor-logos img:hover {
  filter: none;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--txtclr);
  border-top: 1px solid #222;
  margin-top: 4rem;
}

.text {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--txtclr);
}

.text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: center;
}

.pitch {
  background: none;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 60px 20px 20px 20px;
  color: var(--txtclr);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: var(--red); /* or a bold red */
  font-style: italic;
}
