
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  
  .events-hero {
    background-color: #7b1e1e;
    color: #fff;
    padding: 3rem 1rem 2rem;
    text-align: center;
  }
  
  .events-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .events-hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
  }
  
  .event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .event-info {
    padding: 1rem;
  }
  
  .event-info h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
  }
  
  .event-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
  }
  
  .event-info a {
    background-color: #7b1e1e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .event-info a:hover {
    background-color: #5e1515;
  }
  
  @media (max-width: 480px) {
    .events-hero h1 {
      font-size: 1.6rem;
    }
  
    .event-info h3 {
      font-size: 1rem;
    }
  
    .event-info p {
      font-size: 0.85rem;
    }
  }
  