/******************** HEADINGS ********************/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--acumin-pro);
  font-weight: 700;
  font-size: 2.125rem; /* 34px */
  line-height: 2.5rem; /* 40px */
  letter-spacing: 0;
}

h2 {
  font-family: var(--acumin-pro);
  font-weight: 700;
  font-size: 1.625rem; /* 26px */
  line-height: 2rem; /* 32px */
  letter-spacing: 0;
}

h3 {
  font-family: var(--acumin-pro);
  font-weight: 700;
  font-size: 1.375rem; /* 22px */
  line-height: 1.75rem; /* 28px */
  letter-spacing: 0;
}

h4 {
  font-family: var(--acumin-pro);
  font-weight: 500;
  font-size: 1.25rem; /* 20px */
  line-height: 1.625rem; /* 26px */
  letter-spacing: 0;
}

h5 {
  font-family: var(--united-sans-cond);
  font-weight: 900;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5rem; /* 24px */
  letter-spacing: 3;
  text-transform: uppercase;
}

h6 {
  font-family: var(--united-sans-cond);
  font-weight: 900;
  font-size: 1rem; /* 16px */
  line-height: 1.375rem; /* 22px */
  letter-spacing: 2;
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 3.75rem; /* 60px */
    line-height: 4.0625rem; /* 65px */
  }

  h2 {
    font-size: 2.375rem; /* 38px */
    line-height: 2.75rem; /* 44px */
  }

  h3 {
    font-size: 1.625rem; /* 26px */
    line-height: 1.875rem; /* 30px */
  }

  h4 {
    font-size: 1.375rem; /* 22px */
    line-height: 1.625rem; /* 26px */
  }

  h5 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.5rem; /* 24px */
  }

  h6 {
    font-size: 1rem; /* 16px */
    line-height: 1.125rem; /* 18px */
  }
}

/******************** END HEADINGS ********************/

/******************** HEADING GROUP ********************/
/* 
Since the <hgroup> tag is depricated in current HTML5 standards, 
we can use a different trick for having h1-h6 being paired with 
a motion heading. 
*/
.hgroup {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 2rem;
  margin-bottom: 1rem;
  gap: 2rem;
}

.hgroup.hg-reverse {
  flex-flow: column-reverse nowrap;
}

.hgroup.hg-center {
  justify-content: center;
  align-items: center;
}

.hgroup .hg-split {
  display: flex;
  flex-flow: column nowrap;
}

.hgroup h1,
.hgroup h2,
.hgroup h3,
.hgroup h4,
.hgroup h5,
.hgroup h6,
.hgroup .motion-line,
.hgroup > .motion-heading {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .hgroup .hg-split {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .hgroup .hg-split * {
    width: 45%;
  }
}

/******************** END HEADING GROUP ********************/

/******************** BASIC BODY COPY ********************/
hr {
  border-color: var(--steam);
}

p {
  font-size: 1rem;
  line-height: 1.75;
}
/******************** END BASIC BODY COPY ********************/

/******************** HR ********************/
hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
/******************** END HR ********************/

/******************** ANCHOR TAGS ********************/
a {
  color: var(--aged-gold);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  /*font-weight: 600;*/
  font-family: inherit;
}

a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.object-list-form a:not(.btn):not(.purdue-btn),
.object-list-form a:not(.btn):not(.purdue-btn):hover {
  color: revert;
  -webkit-text-decoration: revert;
  text-decoration: revert;
  font-weight: revert;
  font-family: revert;
}
/******************** END ANCHOR TAGS ********************/
