/* Stack logo + title vertically, centered */
.header-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none; /* optional cleanup */
  }
  
  /* Logo image sizing */
  .site-logo {
    max-height: 4rem;  /* or whatever fits */
  }
  
  /* Title right under the logo */
  .site-title {
    margin-top: 0.25rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
  }
  