/* RESET default spacing */
.wp-block-columns {
  margin: 0 !important;
  padding: 0 !important;
}

/* USE GRID (stable layout) */
.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  width: 100%;
}

/* Columns */
.wp-block-column {
  text-align: center;
}

/* Image */
.wp-block-column img {
  width: 100% !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 50% !important;
}

/* Prevent scroll */
html, body {
  overflow-x: hidden;
}




.name-pop {
  display: inline-block;
  transform-origin: center;
  animation: slowPop 1s ease-out;
}

@keyframes slowPop {
  0% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}





/* Image slide up animation */
.img-up {
  opacity: 0;
  transform: translateY(40px);
  animation: imgUp 0.8s ease-out forwards;
}

@keyframes imgUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}