.landing_speakers-form__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  row-gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
  justify-items: center;
}

.landing_speakers-form-speaker {
  padding: 1rem;
  align-items: center;
}

.landing_speakers-form-speaker__image {
  margin-bottom: 1rem;
  height: 200px;
  width: 200px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 1rem;
  box-shadow: 0 0 5px var(--color-linline-smoke);
}

.landing_speakers-form-speaker__image__img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  min-width: 150px;
  object-fit: cover;
  object-position: top;
}

.landing_speakers-form-speaker__name {
  color: #001B70;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem;
}

.landing_speakers-form-speaker__title {
  font-weight: 200;
  color: #001B70;
}

@media (min-width: 768px) {
  .landing_speakers-form__wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}

@media (min-width: 1200px) {
  .landing_speakers-form__wrapper {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 4rem;
  }
}
