.blocks__popular-episodes {
  background-color: #eeeeee;
  padding: 30px 0 40px 0;
  .container {
    width: 100%;
  }
  h3 {
    font-family: "Roboto";
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.25px;
    color: #111111;
    margin: 0 0 20px 0;
  }
  .popular_episodes {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 851px;
    margin: 0 auto;
    .episode {
      flex-basis: 273px;
      -webkit-transition: all 0.5s cubic-bezier(0, 2, 0.6, 1);
      -o-transition: all 0.5s cubic-bezier(0, 2, 0.6, 1);
      -moz-transition: all 0.5s cubic-bezier(0, 2, 0.6, 1);
      transition: all 0.5s cubic-bezier(0, 2, 0.6, 1);
      &:hover {
        .episode__title {
          h4 {
            color: #666;
          }
        }
      }
      .episode_image {
        width: 100%;
        height: 183px;
        background-size: cover !important;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
      }
      .episode__title {
        h4 {
          margin: 20px 0 0 0;
          font-family: "Roboto";
          font-size: 16px;
          font-weight: 500;
          line-height: normal;
          letter-spacing: 0.25px;
          color: #111111;
        }
      }
    }
  }
  .view__all-posts {
    position: relative;
    display: block;
    margin-top: 30px;
    text-align: center;
    a {
      font-family: Roboto;
      font-size: 16px;
      font-weight: bold;
      line-height: normal;
      letter-spacing: 0.25px;
      color: #006482;
      text-decoration: underline;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      &:hover {
        text-decoration-thickness: 2px;
      }
    }
  }
}
@media screen and (max-width: 881px) {
  .blocks__popular-episodes {
    .container {
      width: 100%;
    }
    .popular_episodes {
      .episode {
        flex-basis: 100%;
        margin-bottom: 30px;
        &:last-child {
          margin-bottom: 0;
        }
        .episode_image {
          height: 188px;
        }
      }
    }
  }
}
