@charset "UTF-8";
/* GCVA Link – link with up-right arrow by default */
.gcva-link {
  display: inline-flex;
  align-items: center; /* arrow vertically centered when text wraps to multiple lines */
  gap: 0.35em;
  width: fit-content; /* prevent stretching in flex parents so underline only under text + arrow */
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.gcva-link:hover, .gcva-link:focus {
  text-decoration: none;
  /* Single underline under the whole link (text + arrow) */
  box-shadow: 0 1px 0 0 currentColor;
}

/* Let text wrap so arrow stays at end, right-hand side */
.gcva-link__text {
  min-width: 0; /* allow flex item to shrink so text can wrap */
}

/* Arrow sized relative to link text (weight, size, color inherit from block typography) */
.gcva-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.75em;
  height: 0.75em;
  line-height: 1;
  font: inherit;
  opacity: 0.9;
}

.gcva-link__arrow svg,
.gcva-link__arrow-svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  stroke-width: 0.125em;
}
