.plt-restaurant-admin__gallery {
  margin: 1.5rem 0;
  padding: 1.25rem;
  max-width: 960px;
  border: 1px solid #c3c4c7;
  background: #fff;
}

.plt-restaurant-admin__gallery h2 {
  margin-top: 0;
}

.plt-restaurant-admin__images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  min-height: 40px;
}

.plt-restaurant-admin__image {
  position: relative;
  margin: 0;
  padding: 6px;
  border: 1px solid #dcdcde;
  background: #f6f7f7;
  cursor: move;
}

.plt-restaurant-admin__image img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.plt-restaurant-admin__image .button-link-delete {
  position: absolute;
  top: 2px;
  right: 5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #b32d2e;
  font-size: 22px;
  line-height: 1;
}

