/* Center the widget regardless of parent layout */
#episode .gif-btn {
  display: grid !important;
  place-items: center !important; /* centers its only child */
  margin: 1rem 0 !important;
}

/* Keep the button simple */
#episode .gif-btn__button {
  all: unset;
  display: block !important;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

/* 🎯 Center the image itself */
#episode .gif-btn__img {
  display: block !important;
  max-width: 60%;        /* your chosen size */
  height: auto;
  margin-left: auto !important;
  margin-right: auto !important; /* centers the image within the button */
}
