/* ================================ CLAIM STYLE ================================ */
 #claim-container { position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    pointer-events: none;
    flex-wrap: nowrap;
    z-index: 0;
    white-space: nowrap;
}

 .claim, .brace { 
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: clamp(1.7rem, 7vw, 4rem);
    color: var(--color-text);
    white-space: nowrap;
    margin: 0; /* remove unwanted margin */
    padding: 0 0.15em;
    font-family: 'Lazare Grotesk Trial', Arial, sans-serif !important;
}

.claim h1, .brace h1 {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: inherit;
}

@media (max-width: 900px) {
  .claim, .brace { font-size: 2.5rem !important; }
}

@media (max-width: 600px) {
  .claim, .brace { font-size: 2rem !important; }
}