/**
 * Support Button Section Styles
 * 
 * Component: components/support/support-button/
 * Loader: smart-support-loader.php
 * Dependencies: site-grid-rails.css (layout), style.css (colors/fonts)
 * 
 * Features:
 * - Centered button layout with proper spacing
 * - Background color from CSS custom properties
 * - Responsive design with mobile considerations
 * - Performance optimized with minimal styles
 */

.support-button {
  background-color: var(--ica-bg);
  padding: 2rem 0;
}

.support-button__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  position: relative;
}

/* Fallback button styles */
.support-button__fallback {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-button__fallback-link {
  display: inline-block;
  background-color: var(--ica-green-deep);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 250ms ease;
}

.support-button__fallback-link:hover {
  background-color: var(--ica-lime);
  color: var(--ica-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .support-button {
    padding: 1.5rem 0;
  }
  
  .support-button__content {
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .support-button {
    padding: 1rem 0;
  }
  
  .support-button__content {
    min-height: 50px;
  }
}
