.gallery-buttons-block {
  --gallery-buttons-text-color: #737B5C;
  --gallery-buttons-bg-color: #E8E2D980;
  width: 100%;
  max-width: 100%;
}

.gallery-buttons-block,
.gallery-buttons-block * {
  box-sizing: border-box;
}

.gallery-buttons-block__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.gallery-buttons-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 0;
  border-radius: 99px;
  background: var(--gallery-buttons-bg-color);
  color: var(--gallery-buttons-text-color);
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: var(--wp--preset--font-size--text-xs);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-buttons-block__button:hover,
.gallery-buttons-block__button:focus-visible,
.gallery-buttons-block__button.is-active {
  outline: none;
  box-shadow: inset 0 0 0 1px currentColor;
}

.gallery-buttons-block__button:active {
  transform: translateY(1px);
}

.gallery-buttons-block__label {
  display: block;
}

.gallery-buttons-block__empty {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 24px;
  border: 1px dashed rgba(115, 123, 92, 0.32);
  color: var(--wp--preset--color--grey);
  text-align: center;
}

.gallery-buttons-block__empty p {
  margin: 0;
}
