.round_img {
  display: flex;
  position: relative;
}

.round_img > div:first-child {
  flex: 0 0 70%;
}

.round_img > div:last-child {
  flex: 0 0 30%;
}

.galerie-block .round_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.galerie-block .round_img figure {
  position: relative;
  margin-bottom: 3rem !important;
}

.galerie-block .round_img span {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

@media (min-width: 768px) {
  .galerie-block .round_img span {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 991px) {
  .galerie-block .round_img span {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 992px) {
  .galerie-block .round_img span {
    width: 170px;
    height: 170px;
  }
}

/* Galerie */
.default_gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.default_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 600px) {
  .default_gallery {
    gap: 1rem;
  }
}
