.learn-more > div > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.learn-more ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  align-items: center;
}

.learn-more .icon-info-circle {
  color: var(--link-color);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-more .icon-info-circle svg {
  width: 40px;
  height: 40px;
}

.learn-more .learn-more-links {
  flex: 1;
}

.learn-more ul::before {
  content: 'Learn More:';
  text-transform: uppercase;
  color: #5e5e5e;
}

.learn-more ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--heading-font-size-l);
}

.learn-more ul li:not(:first-child)::before {
  content: '|';
  margin-right: 0.25rem;
}

@media (min-width: 576px) {
  .learn-more > div > div {
    gap: 3rem;
    flex-direction: row;
    align-items: center;
  }
}
