/* Fix for avatar position to show full shoes */

/* Desktop styles */
.resources-avatar {
  top: -120px !important; /* Move avatar higher to show full shoes */
}

@media (max-width: 1024px) {
  .resources-avatar {
    top: -110px !important;
  }
}

/* Mobile styles - completely reposition avatar */
@media (max-width: 768px) {
  /* Reset position to be properly under title and next to buttons */
  .resources-avatar {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 180px !important;
    margin: 0 auto 10px !important;
    display: block !important;
  }
  
  /* Reset transform to avoid translation issues */
  .resources-avatar.emerge-from-left {
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Adjust content layout to accommodate repositioned avatar */
  .resources-content {
    flex-direction: column !important;
    align-items: center !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  /* Fix text alignment to be centered under avatar */
  .resources-text {
    margin-left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* Ensure the resources content has enough padding to accommodate the higher avatar on desktop */
.resources-content {
  padding-top: 40px !important;
}
