
.is-style-smallest-icon .wp-block-button__link {
  position: relative;
  width: 30px;
  height: 30px;
  font-size: 0;
  border: 1px dashed var(--wp--preset--color--dark-black);
  background: transparent !important;
  overflow: hidden; 
  z-index: 0;
}


.is-style-smallest-icon .wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wp--preset--color--blue-main) !important;
  transform: translateX(-110%);
  transition: transform 0.4s ease;
  z-index: -1; 
  border-radius: 100px;
}


.is-style-smallest-icon .wp-block-button__link:hover::before {
  transform: translateX(0);
}

.is-style-smallest-icon .wp-block-button__link:hover {
  border: 1px dashed var(--wp--preset--color--dark-black);
}

.is-style-smallest-icon .wp-block-button__link img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  position: relative;
  z-index: 1; 
  transition: filter 0.3s ease;
}

.is-style-smallest-icon .wp-block-button__link:hover img {
  filter: brightness(0) invert(1);
}
