@charset "UTF-8";
/*
 * GCVA site identity — logo + three-line title, equal height.
 * --gcva-site-identity-size is set inline on the block wrapper (logo edge length).
 */
.gcva-site-identity {
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  line-height: 1;
}
.gcva-site-identity__link {
  display: inline-flex;
  align-items: stretch;
  gap: 0.65em;
  text-decoration: none;
  color: var(--wp--preset--color--blue, #6293af);
}
.gcva-site-identity__logo-wrap {
  flex: 0 0 var(--gcva-site-identity-size, 52px);
  width: var(--gcva-site-identity-size, 52px);
  height: var(--gcva-site-identity-size, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcva-site-identity__logo {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gcva-site-identity__title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: var(--gcva-site-identity-size, 52px);
  min-width: 0;
  font-family: var(--wp--preset--font-family--graphik, sans-serif);
  font-weight: 400;
  font-size: var(--gcva-site-identity-font-size, 0.8125rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.gcva-site-identity__line {
  display: block;
  white-space: nowrap;
}

/* Scale type with logo size (set on wrapper from block logoSize attribute). */
.gcva-site-identity[style*="--gcva-site-identity-size"] {
  /* ~14px when logo is 52px; scales with logoSize attribute */
  --gcva-site-identity-font-size: calc(var(--gcva-site-identity-size, 52px) * 0.28);
}
