a.wrapper {
  display: block;
}

.wrapper {
  &.shape-square {
    aspect-ratio: 1 / 1;
  }

  &.shape-circle {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  &.shape-16-9 {
    aspect-ratio: 16 / 9;
  }

  &.shape-4-3 {
    aspect-ratio: 4 / 3;
  }

  &.shape-3-2 {
    aspect-ratio: 3 / 2;
  }

  &.shape-2-1 {
    aspect-ratio: 2 / 1;
  }

  &.shape-3-1 {
    aspect-ratio: 3 / 1;
  }

  &.shape-9-16 {
    aspect-ratio: 9 / 16;
  }

  &.shape-3-4 {
    aspect-ratio: 3 / 4;
  }

  &.shape-2-3 {
    aspect-ratio: 2 / 3;
  }

  &.shape-1-2 {
    aspect-ratio: 1 / 2;
  }

  &.shape-1-3 {
    aspect-ratio: 1 / 3;
  }

  &.h-100 {
    width: 100%;
    height: 100%;
    max-width: unset;
  }

  &.center-vertically {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
