/* Responsive heading adjustments */

/* Default for larger screens */
.hero h1 {
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Medium screens */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Small screens */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }
} 