* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #444;
    background-color: #fff;
  }
  
  /* Header */
  .site-header {
    padding: 1.5rem;
  }
  
  .logo-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .logo {
    width: 90px;
    height: auto;
    opacity: 0.85;
  }
  
  .title-block h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #555;
  }
  
  .title-block h2 {
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
  }
  
  /* Main content */
  .main-content {
    max-width: 720px;
    margin: 1.5rem auto 0 auto;
    padding: 0 1.5rem;
    text-align: center;
  }
  
  .message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  /* Next Event */
  .next-event {
    max-width: 380px;
    margin: 1.75rem auto;
    text-align: center;
  }
  
  .event-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 0.5rem;
  }
  
  .event-date {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.25rem 0;
  }
  
  .event-time-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
  }
  
  .event-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
  }
  
  /* CTA block */
  .event-cta {
    margin-top: 0.75rem;
  }
  
  .event-note {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
  }
  
  /* Sign-up button */
  .signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 260px;
    height: 44px;

    margin-top: 0.75rem; /* close to note */
    padding: 0.8rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c4a60;
    text-decoration: none;
    background-color: #bdd9ef;
    border: 2px solid #bdd9ef;
    border-radius: 6px;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      box-shadow 0.2s ease;
  }
  
  .signup-button:hover {
    background-color: #a9cbe6;
    border-color: #a9cbe6;
    color: #243f52;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  
  /* =========================
     Mobile adjustments
     ========================= */
  
  @media (max-width: 600px) {
    .logo {
      width: 68px;
    }
  
    .title-block h1 {
      font-size: 1.4rem;
    }
  
    .title-block h2 {
      font-size: 0.95rem;
    }
  
    /* 🔑 Reduce spacing below logo AGAIN (50%) */
    .main-content {
      margin-top: 0.75rem;
    }
  
    /* 🔑 Tighten CTA stack */
    .event-cta {
      margin-top: 0.5rem;
    }
  
    .event-note {
      font-size: 0.85rem;
    }
  
    .signup-button {
      margin-top: 0.5rem; /* immediately below note */
      padding: 0.65rem 1.6rem;
      font-size: 0.95rem;
    }
  }
  