#content a {
  display: inline-block;
  position: relative;
  color: var(--red-flame);
  font-weight: 700;
}

#content a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 0;
  background: currentColor;
  width: 0;
  height: 2px;
  transition: 0.3s;
  right: 0;
}

@media (hover: hover) {
  #content a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
}

@media (max-width: 991.98px) {
  #hub-hero .d-flex.flex-column > div + div {
    margin-top: var(--spacing-md);
  }
}

#content.two-columns {
  column-count: 2;
  column-gap: 2rem;
}

@media (max-width: 767.98px) {
  #content.two-columns {
    column-count: 1;
  }
}

#content.two-columns img,
#content.two-columns iframe,
#content.two-columns .table,
#content.two-columns table,
#content.two-columns .no-column,
#content.two-columns .row {
  break-inside: avoid;
  page-break-inside: avoid;
}

#content.two-columns h3 {
  column-span: all;
  break-before: column;
  break-after: column;
  margin-block: 2rem;
}

.para-one > p:first-child::first-letter {
  -webkit-initial-letter: 3;
  initial-letter: 3;
  color: var(--orange-dark);
  font-weight: 700;
  margin-right: 0.5em;
}

/* legacy fallbacks */
#content.two-columns h3 {
  -webkit-column-span: all;
  -webkit-column-break-before: always;
  -webkit-column-break-after: always;
}

@supports not (initial-letter: 3) {
  .para-one > p:first-child::first-letter {
    float: left;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.8;
    font-weight: 700;
    color: var(--orange-dark);
    margin: 0.05em 0.1em 0 0;
  }

  .para-one > p:first-child {
    overflow: hidden;
  }
}
