section.kh-start__wrapper {
  width: var(--content-area);
  margin: 0 auto var(--section-margin) auto;
  min-width: var(--content-area);
}

.kh-start__header-wrapper {
  /* Left this in for now until design is resolved. Current copy doesn't look good at 100% */
  /* max-width: 70%; */
}
.kh-start__header {
  margin-bottom: 0.5rem;
}

.kh-start__subheader-text {
  line-height: var(--line-height);
}

.kh-start__items-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.kh-start__item-wrapper {
  width: calc(50% - 1rem);
  display: flex;
  background-color: var(--primary-color-lightest) !important;
  margin-bottom: 2rem;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.kh-start__item-wrapper:hover {
  box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.kh-start__item-wrapper:visited {
  color: var(--text-color);
}

.kh-start__graphic-wrapper {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.kh-start__graphic {
  width: 7rem;
  height: 7rem;
  margin: 0.5rem;
}

.kh-start__item-details-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kh-start__item-details {
  margin: 1rem;
}
.kh-start__item-header {
  color: var(--primary-color);
  margin: 0;
}
.kh-start__item-text {
  margin: 0.5rem 0 0 0;
  line-height: var(--line-height);
}

@media (max-width: 768px) {
  .kh-start__wrapper {
    margin: 1rem auto;
  }

  .kh-start__header-wrapper {
    max-width: 100%;
  }

  .kh-start__header {
    margin-top: 0;
  }

  .kh-start__item-wrapper {
    width: 100%;
    position: relative;
    padding-left: 1.5rem;
  }

  .kh-start__graphic-wrapper {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    width: 1.5rem;
    height: 100%;
  }

  .kh-start__graphic {
    display: none;
  }
}
