/* Mobile-First Design System */

/* Base mobile styles */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-buttons {
    gap: 0.75rem !important;
  }
  
  .hero-button {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    border-radius: 0.75rem !important;
  }
  
  /* Blog Cards */
  .blog-card {
    padding: 1rem !important;
  }
  
  .blog-title {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
  }
  
  .blog-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }
  
  .blog-meta {
    font-size: 0.75rem !important;
  }
  
  .blog-tag {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.7rem !important;
  }
  
  /* Project Cards */
  .project-card {
    padding: 1rem !important;
  }
  
  .project-title {
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .project-description {
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .project-actions {
    gap: 0.5rem !important;
    padding-top: 0.75rem !important;
  }
  
  .project-action-link {
    font-size: 0.85rem !important;
  }
  
  /* Resource Summary */
  .resource-summary-item {
    padding: 1rem !important;
    text-align: center !important;
  }
  
  .resource-count {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .resource-label {
    font-size: 0.875rem !important;
  }
  
  /* Layout adjustments */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .section-spacing {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .section-title {
    font-size: 1.875rem !important;
    margin-bottom: 1rem !important;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  /* Grid layouts */
  .grid-cols-mobile {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Button sizes */
  .btn-large {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .btn-medium {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.875rem !important;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.125rem !important;
  }
  
  .hero-button {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .blog-title {
    font-size: 1.25rem !important;
  }
  
  .project-title {
    font-size: 1.25rem !important;
  }
}