.sprekers-section {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.sprekers-section h1 {
  text-align: start;
  margin-bottom: 4rem;
}

.sprekers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 4rem;
  justify-items: center;
  max-width: 1080px;
}

@media (max-width: 768px) {
  .sprekers-grid {
    grid-template-columns: 1fr;
  }
}

.spreker {
  width: 80%;
}

.spreker h2 {
  margin-top: 1rem;
  text-wrap: wrap;
  text-align: start;
}

.spreker h3 {
  margin-top: 0.5rem;
  text-wrap: wrap;
  text-align: start;
}

.no-link {
  cursor: default;
}

.img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.img-wrapper .pink-bg {
  background-color: #ff00b8;
  width: 100%;
  height: 60%;
  border-radius: 0;
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: 1;
}

.img-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.img-wrapper:hover img {
  transform: scale(1.08);
}

.centered-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 300px;
}
