.zoom-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}
.zoom-wrapper:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.gallery,
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-item {
  margin-bottom: 0;
}

.gallery-item a {
  display: block;
  background-color: #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  display: block;
  aspect-ratio: 1.9;
  object-fit: cover;
  object-position: center;
  background-color: #f1f5f9;
  margin: 0 !important;
}

.gallery.gallery-columns-2 .gallery-item {
  max-width: calc((100% - 16px) / 2);
}

.gallery.gallery-columns-3 .gallery-item {
  max-width: calc((100% - 32px) / 3);
}

.gallery.gallery-columns-4 .gallery-item {
  max-width: calc((100% - 48px) / 4);
}

.gallery.gallery-columns-5 .gallery-item {
  max-width: calc((100% - 64px) / 5);
}

.gallery .gallery-item:first-child {
  max-width: 100%;
  position: relative;
}

.gallery.gallery .gallery-item:first-child a::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 11.5H16.25M11.5 16.25V6.75M22 22L20 20M21 11.5C21 16.7467 16.7467 21 11.5 21C6.25329 21 2 16.7467 2 11.5C2 6.25329 6.25329 2 11.5 2C16.7467 2 21 6.25329 21 11.5Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: #000;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  opacity: 0.5;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
