.paragraph-imagen {

  &.size-default {
    .paragraph-image-content {
      .cmp-image {
        height: auto;

        .cmp-image__image {
          height: auto;
          -o-object-fit: cover;
          object-fit: cover;
          width: 100%;
        }
      }
    }
  }

  &.size-small {
    .paragraph-image-content {
      display: flex;
      justify-content: center;

      .cmp-image {
        height: 250px;
        width: 250px;

        .cmp-image__image {
          /* height: 100%; */
          -o-object-fit: contain;
          object-fit: contain;
          width: 100%;
        }
      }
    }
  }
}