/* ======= At a Glance / Quick Facts ======= */
/* .mod-quick-facts {
} */
.featured-quick-facts,
.mod-quick-facts {
  .quick-facts-container {
    background-color: var(--primary-accent);
    padding: 20px;
    @media (width >= 768px) {
			display: grid;
      grid-template-columns: auto 1fr;
			padding: 40px;
		}
		@media (width >= 1024px) {
			padding: 75px 50px;
		}
  }
  .heading-container {
    @media (width >= 768px) {
      display: flex;
      align-items: center;
      max-width: 320px;
      padding-right: 45px;
      position: relative;
    }
    &:after {
      content: none;
      @media (width >= 768px) {
        content: '';
        background-color: var(--primary-color);
        width: 2px;
        height: 100%;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
      }
    }
  }
  .module-heading {
    color: var(--primary-color);
    font-family: var(--primary-font);
    letter-spacing: 0.05em;
    line-height: 1.33;
    text-align: center;
    text-transform: uppercase;
    @media (width >= 768px) {
      font-size: 30px;
      text-align: left;
    }
    /* Desktop Styles */
    @media (width >= 1024px) {
      font-size: 34px;
    }
  }
  .quick-facts-items {
    dt, dd {
      display: inline;
    }
    dt {
      font-weight: var(--fw-bold);
    }
    dd {
      margin-left: 10px;
      &:before {
        content: ' ';
      }
    }
  }
}

/* ======= End At a Glance ======= */