.filmguests-container {
  display: inline-flex;
  width: 100%;
  flex-flow: row wrap;
}

.filmguests-container > div {
  flex: 1;
  max-width: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
  float: left;
  position: relative;
  margin-top: 20px;
}

.filmguests-container > div:nth-of-type(odd) {
  margin-right: 10px;
}

.filmguests-container > div:nth-of-type(even) {
  margin-left: 10px;
}

.filmguests-container div {
  float: left;
  display: inline-block;
}

.guest-name {
  width: calc(100% - 20px);
  padding: 0 10px;
  text-align: center;
}

.guest-picture {
  width: 100%;
  height: calc(515px * 9 / 16);
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.guest-screenings {
  padding: 20px 10px;
  width: calc(100% - 20px);
}

.guest-screenings .guest-screenings-film-picture:last-of-type {
  display: none;
}

.guest-screenings-film-picture {
  float: right !important;
  width: 200px;
  height: calc(200px * 9 / 16);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.guest-film-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media(max-width: 1099px) {
  .guest-picture {
    height: calc((50vw - 60px) * 9 / 16);
  }
}

@media(max-width: 899px) {
  .guest-screenings .guest-screenings-film-picture:first-of-type {
    display: none;
  }

  .guest-screenings .guest-screenings-film-picture:last-of-type {
    display: inline-block;
  }

  .guest-screenings-film-picture  {
    width: 100%;
    height: calc((50vw - 40px) * 9 / 16);
  }
}

@media(max-width: 699px) {
  .guest {
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .guest-picture {
    height: calc((100vw - 20px) * 9 / 16);
  }

  .guest-screenings-film-picture  {
    width: 100%;
    height: calc((100vw - 40px) * 9 / 16);
  }
}
