.main-body {
  background: white;
  padding: 20px 20px 50px 20px;

  @media (max-width: 768px) {
    padding: 16px;
  }
}

.main-body__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.main-body-content {
  max-width: 680px;
  width: 100%;
}

.movie-title {
  color: #000;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;

  @media (max-width: 660px) {
    font-size: 22px;
    line-height: 24px;
  }
}

.movie-title-translated {
  color: #777;
  display: block;
  font-size: 18px;
  font-weight: normal;
  line-height: 18px;
  margin: 10px 0 20px;

  @media (max-width: 660px) {
    font-size: 16px;
  }
}

.movies-wrapper {
  max-width: 680px;
  width: 100%;

  display: flex;
  flex-direction: column;
}

.movie-container {
  padding-bottom: 40px;
}

.movies-banner {
  @media (max-width: 960px) {
    width: 150px;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.movies-banner img {
  @media (max-width: 960px) {
    width: 100%;
    height: auto;
  }
}

.movie-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
}

.movies-list {
  display: grid;
  grid-template-columns: 16.8% 16.8% 16.8% 16.8% 16.8% 16.8%;
  width: 100%;
  gap: 10px 0;

  @media (max-width: 960px) {
    grid-template-columns: 20% 20% 20% 20% 20%;
  }

  @media (max-width: 768px) {
    grid-template-columns: 25% 25% 25% 25%;
  }
}

.movie-section-title {
  color: #000;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
}

.movie-section-text {
  color: #777;
  display: block;
  font-size: 14px;
  line-height: 16px;
}

.actor-biography__wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.actor-biography__image-wrapper {
  margin-right: 20px;
  cursor: pointer;

  @media (max-width: 960px) {
    margin-right: 10px;
  }
}

.actor-biography__image {
  border-radius: 2px;
  background: #fff;
  border: 1px solid #ddd;

  padding: 2px;
  width: 150px;

  cursor: pointer;

  @media (max-width: 960px) {
    width: 115px;
  }
}

.actor-biography__details {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.actor-biography__item {
  display: grid;
  grid-template-columns: 30% 70%;

  color: #444;

  margin: 5px 0;

  @media (max-width: 768px) {
    font-size: 13px;
  }

  @media (max-width: 660px) {
    font-size: 12px;
  }
}

.actor-biography__item-text {
  display: block;
  font-weight: bold;

  color: black;

  padding-right: 2px;
}

.type-movie-link {
  color: #00a0b0;
  margin-right: 3px;
}

.button-more {
  transition: all 0.2s;
  background-color: #f9f9f9;
  color: #878586;
  cursor: pointer;
  display: block;
  padding: 10px 0;
  text-align: center;
  width: 100%;

  margin-top: 10px;

  font-size: 14px;
  text-decoration: underline;
}

.button-more:hover {
  transition: all 0.2s;
  background-color: #e0e0e0;
  text-decoration: none;
}

.breadcrumbs {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumbs-link {
  color: #2e859e;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
}

.breadcrumbs-link.inactive {
  color: #777;
}

.breadcrumbs-link:hover {
  text-decoration: underline;
}

.breadcrumbs-link.inactive:hover {
  text-decoration: none;
  cursor: default;
}

@media (max-width: 768px) {
  .movies-banner {
    display: none;
  }
}
