.presenters {
  display: flex;
  gap: 1.5rem;
}

.presenters__item {
  flex: 1 1 50%;
}

.presenters__pic {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  border-radius: 16px;
}

.presenters__pic img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.presenters__about {
  padding-right: 1rem;
}

.presenters__item:only-of-type .presenters__pic {
  padding-bottom: 48.133%;
}

@media (max-width: 768px) {
  .presenters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }
}

@media (max-width: 575px) {
  .presenters__about {
    padding-right: 0;
  }
}

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