.illustrated-article {
  display: table;
  table-layout: fixed;
  width: 100%;
  > .illustration {
    position: relative;
    display: table-cell;
    width: 100px;
    .image {
      overflow: hidden;
      height: 100px;
      width: 100px;
      margin-right: 15px;
      position: relative;
      img {
        @include absolute;
      }
    }
    legend {
      min-height: 55px;
      width: 100px;
      margin-right: 15px;
      box-sizing: border-box;
      padding: 6px 6px 6px 10px;
      a {
        color: #fff;
        font-size: 14px;
      }
    }
  }
  .illustrated-text {
    display: table-cell;
    vertical-align: top;
    position: relative;
    .bottom-locked {
      left: 0;
    }
  }
}
