.episode {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--white);
  margin-bottom: 10px;
  border-radius: 10px;
}

.episode__image {
  flex: 0 0 250px;
  overflow: hidden;
}

.episode__image img {
  max-width: 100%;
  height: auto;
}

.episode__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.episode__link {
  align-self: flex-start;
}

.episodes__form {
  margin-bottom: 16px;
}

.episodes__label {
  display: none;
}

#episodes__category {
  border-radius: 10px;
  background: var(--antiFlashWhite);
  font-size: 14px;
}

#episodes__category option {
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .episode {
    flex-direction: column;
  }

  .episode__image {
    flex: none;
    width: 100%;
  }
}