/* Optimized CSS with modern features */
@media all {
  .align-start {
    align-items: flex-start;
  }
  
  .nasa-success {
    color: #0a0; /* Shortened hex code */
  }
}

/* Mobile-first responsive approach */
@media (width >= 768px) {
  .large-5 {
    width: 41.6667%; /* Reduced decimal places */
  }
  
  .large-7 {
    width: 58.3333%; /* Reduced decimal places */
  }
  
  .large-12 {
    width: 100%;
  }
}
