button,
.button,
.wp-element-button {
  position: relative;
  overflow: hidden;
}

button::after,
.button::after,
.wp-element-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);        /* fallback */
  background: rgba(255, 255, 255, 0.12); /* translucent white highlight */
  opacity: 0;
  transition: opacity 0.2s ease;
}

button:hover::after,
.button:hover::after,
.wp-element-button:hover::after {
  opacity: 1;
}

.home .wp-block-media-text {
    box-shadow: 
        -10px 10px 15px rgba(0, 0, 0, 0.3),  /* bottom-left */
        10px 10px 15px rgba(0, 0, 0, 0.3),   /* bottom-right */
        10px 0 15px rgba(0, 0, 0, 0.3);      /* right side */
    border-radius: 10px;
    overflow: hidden;
}



.wp-block-social-links .wp-social-link-instagram {
    background-color: #E4405F; /* Instagram pink */
    color: #ffffff; /* icon color */
}

/* Email icon */
.wp-block-social-links .wp-social-link-mail {
    background-color: #0073AA; /* blue (you can change) */
    color: #ffffff;
}