.figure {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0;
}

.figure-image {
  display: contents;
}

.figure-image img {
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.figure-caption {
  font-style: italic;
  text-align: center;
}

figure.figure {
  width: 220px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

figure.figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/*# sourceMappingURL=figure.css.map */