.aspect-ratio {
  position: relative;
  display: inline-block;
  background-color: inherit;
  line-height: 1;
  overflow: hidden;

  // ***************************
  // #Content
  // ***************************/
  &__content { //** Fallback
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    max-width: 100%;
    width: 100%;
    transform: translate(-50%, -50%);

    @supports (object-fit: cover) {
      &--cover { // cover
        position: static;
        width: 100%;
        height: 100%;
        padding: 0;
        object-fit: cover;
        transform: none;
      }
    }
  }
}
