.SAIB {
  grid-column: span 2;

  aspect-ratio: 1/1;
  border: 0.1rem solid #0000000a;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, #f8f7f9, #f8f7f9);
  box-shadow: 0px 0.4rem 0.8rem 0px #0000000a;
  border-radius: 3.2rem;
  position: relative;
}

.SAIB > img.logo {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(0deg);
  transform-origin: center center;
  width: 9rem;
  opacity: 0;

  will-change: opacity, transform, width, right, top;
  transition: opacity 0.5s ease, transform 0.5s ease, width 0.5s ease,
    right 0.5s ease, top 0.5s ease;
}

.SAIB > h6{
  filter: drop-shadow(rgba(15, 15, 18, 0.25) 0px 20px 17px);
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
  
    aspect-ratio: 1/1;
    opacity: 0;
    z-index: -3;
    will-change: bottom, right, transform, width, opacity;
    transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out, transform 0.5s ease-in-out, width 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.SAIB:hover > h6{
  opacity: 1;
  transform: translate(0, 0) rotate(8deg);
  width: auto;
  right: 10.3rem;
  top: 22.5rem;
  z-index: 2;
  font-size: 2.7rem;
}

.SAIB:hover > img.logo {
  opacity: 1;
  transform: translate(0, 0) rotate(8deg);
  width: 18.5rem;
  right: 2.7rem;
  top: 4.5rem;
  z-index: 2;
}

.SAIB > .bulb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 23.7rem;
  aspect-ratio: 1/1;

  will-change: transform, width, left, top;
  transition: transform 0.5s ease, width 0.5s ease, left 0.5s ease,
    top 0.5s ease;
}

.SAIB:hover > .bulb {
  top: 4.1rem;
  left: -3.2rem;
  transform: translate(0, 0%) rotate(-15deg);
  width: 22.5rem;

  z-index: 1;
}

.SAIB > .bulb > img {
  width: 100%;
  position: relative;
  z-index: 3;
  
}

.SAIB > .bulb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    28.1% 30.8% at 50% 42.7%,
    rgb(255, 254, 201) 0%,
    rgba(255, 254, 201, 0) 100%
  );
  filter: blur(0.8rem);
  z-index: 2;
  animation: bulb-pulse 1s linear infinite alternate-reverse;
}

@keyframes bulb-pulse {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(2);
  }
}

@media screen and (max-width: 1200px) {
  .SAIB {
    grid-column: span 3;
    aspect-ratio: auto;
    height: 32rem;
  }

  .SAIB > img.logo {
    top: 4.2rem;
    right: 30%;
    transform: translate(50%, 0) rotate(15deg);
    width: 17.4rem;
    opacity: 1;

    will-change: unset;
    transition: unset;
  }

  .SAIB:hover > img.logo {
    top: 4.2rem;
    right: 30%;
    transform: translate(50%, 0) rotate(15deg);
    width: 17.4rem;
    opacity: 1;
  }

  .SAIB > .bulb {
    position: absolute;
    top: 1.2rem;
    left: 37%;
    transform: translate(-50%, 0) rotate(-15deg);
    width: 23.4rem;

    will-change: unset;
    transition: unset;
  }

  .SAIB:hover > .bulb {
    top: 1.2rem;
    left: 37%;
    transform: translate(-50%, 0) rotate(-15deg);
    width: 23.4rem;
  }
}
