.v2image {
  position: relative;

  overflow: hidden;
  display: block;

  aspect-ratio: var(--image-aspect-ratio, 3 / 2);
  width: 100%;

  .typography {
    margin-bottom: 0;
  }
}

.v2image--responsive {
  aspect-ratio: auto;
}

.v2image--sm {
  width: 130px;
}

.v2image--md {
  width: 220px;
}

.v2image--lg {
  width: 440px;
}

.v2image--full {
  width: 100%;
}

.v2image__img {
  display: block;
  width: 100%;
  height: 100%;
}

.v2image__img--contain {
  object-fit: contain;
}

.v2image__img--cover {
  object-fit: cover;
}

.v2image__fallback {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  gap: var(--gap--xxs);
  align-items: center;
  justify-content: center;
}
