.image {
  @apply overflow-hidden;
  &.is-rounded {
    @apply rounded;
  }
  &.is-circle {
    @apply rounded-full;
  }
  &.is-shadow {
    @apply shadow-md;
  }
  figcaption {
    @apply px-2 pt-1;
  }
  &.float-caption {
    @apply relative;
    figcaption {
      @apply absolute left-0 right-0 bottom-0 z-10 p-4 bg-black/60 text-white;
    }
  }
}