/* Mobile view: icon-only grid like Homarr */
@media (max-width: 768px) {
  /* Force 3-column grid on mobile - override Tailwind */
  .services-list,
  ul.services-list,
  #services .services-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Hide top information widgets */
  #information-widgets {
    display: none !important;
  }

  /* Hide service descriptions */
  .service-description {
    display: none !important;
  }

  /* Hide service widget data */
  .service-container {
    display: none !important;
  }

  /* Hide service stats */
  .service-stats {
    display: none !important;
  }

  /* Hide footer */
  #footer {
    display: none !important;
  }

  /* Compact centered cards */
  .service-card {
    text-align: center !important;
    padding: 0.5rem 0.25rem !important;
  }

  .service-title {
    flex-direction: column !important;
    align-items: center !important;
    padding: 0.25rem !important;
  }

  .service-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
    margin-bottom: 0.125rem !important;
  }

  .service-title-text {
    justify-content: center !important;
  }

  .service-name {
    text-align: center !important;
    padding: 0 !important;
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
  }

  /* Hide status dots */
  .service-tags {
    display: none !important;
  }

  /* Reduce padding */
  #services {
    margin: 0.5rem !important;
  }
  
  .services-group {
    padding: 0 !important;
  }
}
