/* Fixing spacing on list items on right of project page */
.section-block .color-grey li {
    line-height: 19px;
    margin-bottom: 12px;
}

/* Fixing spacing on extra hero item we added manually */
.section-block.hero-6 {
  padding-top: 0;
}

/* Not showing WYSIWYG ols and uls for some reason */
.replicable-content ul,
.replicable-content ol {
  list-style: auto;
  padding-left: 15px;
}
.replicable-content ul {
  list-style: disc;
}
.replicable-content .ul1 {
  list-style-type: disc;
}
.replicable-content .ol1 {
  list-style-type: decimal;
}
.replicable-content ul li,
.replicable-content ol li {
  margin-bottom: 12px;
}

/* Targeting a specific place where I want the headline below it to have margin */
.section-block.grid-container.pt-0.masonry .content-grid-2 {
  margin-bottom: 0;
}

h5 {
  margin-bottom: 11px;
  line-height: 1.4;
}

/* Some smaller images don't appear centered on centered image instances */
.thumbnail img { 
  margin: 0px auto;
  display: block;
}

address, p {
  margin: 0 0 1.8rem;
}

body {
  line-height: 1.6;
}

/* We don't need a border on the CTA button */
.button-cta {
  border: none;
}

/* Reducing reading width */
:root { --reading-max-width: 600px; }
p { max-width: var(--reading-max-width); }