/* Fix: Ensure hero right column avatar is visible */
.lg\:col-span-4 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 400px !important;
}

/* Fix: Ensure 3D card renders properly */
.lg\:col-span-4 > div {
  width: 300px !important;
  height: 400px !important;
  position: relative !important;
}

/* Fix: Ensure avatar image loads */
.lg\:col-span-4 img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix: Ensure perspective doesn't break rendering */
@media (min-width: 1024px) {
  .lg\:col-span-4 {
    perspective: none !important;
    transform: none !important;
  }
}
