.progress-view .grid-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
  .breakpoint-mobile-only .progress-view .grid-row,
  .breakpoint-tablet-portrait .progress-view .grid-row,
  .breakpoint-tablet-landscape .progress-view .grid-row {
    display: block;
  }
    .breakpoint-mobile-only .progress-view .grid-row [class*="col-"],
    .breakpoint-tablet-portrait .progress-view .grid-row [class*="col-"],
    .breakpoint-tablet-landscape .progress-view .grid-row [class*="col-"] {
      display: inline-block;
      width: 49.5%;
    }

.progress-tile {
    width: 95%;
    height: 100%;
    min-height: 35rem;
    background-color: var(--color-white);
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }

.progress-tile__image {
    height: 39%;
    max-height: 170px;
    overflow: hidden;
}
.progress-tile__image img {
  width: 103%;
  height: auto;
}
  .breakpoint-mobile-only .progress-tile__image img {
    width: 100%;
  }

.progress-tile span {
  display: block;
  width: auto;
  min-height: 2rem;
  background-color: var(--color-tertiary);
  position: absolute;
  top: 45%;
  left: 0;
  padding: 0.8rem 2rem 0.8rem 5rem;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--header-font);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-font-feature-settings: "calt";
  font-feature-settings: "calt";
}
.progress-tile__details {
  margin: 2.5rem 1.25rem 0rem 1.25rem;
}
  .progress-tile__details h4 {
    font-family: var(--header-font);
    font-size: var(--text-large);
    margin-bottom: 3.5rem;
  }

.progress-tile a.button {
  width: 69%;
  border-radius: 2.4rem;
  padding: 0.8rem 1.6rem;
  padding: 0.8rem 3.6rem;
  position: absolute;
  bottom: 1.5rem;
  left: 15.5%;
}

.progress-tile.lead span,
.progress-tile.lead a.button {
  background-color: var(--color-primary);
}
  .progress-tile.lead a.button:hover {
    background-color: var(--color-primary-light);
  }
.progress-tile.vis span,
.progress-tile.vis a.button {
  background-color: var(--color-quarternary);
}
  .progress-tile.vis a.button:hover {
    background-color: var(--color-quarternary-light);
  }
.progress-tile.edu span,
.progress-tile.edu a.button {
  background-color: var(--color-tertiary);
}
  .progress-tile.edu a.button:hover {
    background-color: var(--color-tertiary-lightish);
  }
.progress-tile.cult span,
.progress-tile.cult a.button {
  background-color: var(--color-secondary);
}
  .progress-tile.cult a.button:hover {
    background-color: var(--color-secondary-light);
  }
.progress-tile.eval span,
.progress-tile.eval a.button {
  background-color: var(--color-secondary-light);
}
  .progress-tile.eval a.button:hover {
    background-color: var(--color-secondary-lighter);
  }
.progress-tile.ind span,
.progress-tile.ind a.button {
  background-color: var(--color-primary-light);
}
  .progress-tile.ind a.button:hover {
    background-color: var(--color-primary-lighter);
  }
.progress-view h1 {
  margin-top: 3rem;
}
.progress-view .grid-row {
  display: flex;
}
  .progress-view .progress-tile span {
    top: 35%;
  }