/* Dočasná textová značka v hlavičke. Neskôr ju možno nahradiť finálnym logom. */
.site-header .brand {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.05;
  text-decoration: none;
}

.site-header .brand-name {
  color: var(--navy);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.site-header .brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-name {
    font-size: 1.45rem;
  }

  .site-header .brand-tagline {
    max-width: 220px;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .site-header .brand-name {
    font-size: 1.3rem;
  }

  .site-header .brand-tagline {
    max-width: 180px;
    font-size: 0.64rem;
  }
}
