/* JOURNEY CARDS BLOCK */
.abbott-journeys-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.abbott-journey-card-wrapper {
    background-color: var(--light-grey);
    width: 100%;
    margin: 0 auto;
    padding-top: 3rem;
}

.abbott-journey-card-wrapper:last-of-type {
    padding-bottom: 3rem;
}

.page-wrapper > .abbott-journey-card-wrapper:first-of-type {
    padding-top: 10rem;
}

.abbott-journey-header {
    height: 18.75rem;
    width: 90%;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background-size: cover;
    background-position: center;
    border-radius: 0 1rem 1rem 1rem;
}

.abbott-journey-header-title {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 3% 0;
}

.abbott-journey-body {
    display: flex;
    background-color: var(--white);
    flex-direction: column;
    gap: 2rem;
    width: 90%;
    margin: auto;
    padding: 0 5% 2rem;
}

.abbott-journey-intro {
    font-size: 1rem;
    color: var(--abbott-dark-grey);
    margin: 2rem 0 0;
}

.abbott-journey-highlights-box {
    border: 1px solid var(--primary-color);
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    justify-content: flex-start;
}

.abbott-journey-highlights-icon {
    width: 10rem;
    height: 10rem;
}

.abbott-journey-highlights-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.abbott-journey-highlights-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.abbott-journey-highlights-content p.footnote {
    font-style: revert;
}

.abbott-journey-highlights-content a.abbott-btn-green {
    color: white;
}

.abbott-journey-highlights-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}

ul:not(.tabs-nav, #primary-menu, .sub-menu, #top-footer-menu) li {
    margin-bottom: .5rem;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
  .abbott-journey-body {
    width: 92%;
  }
  .abbott-journey-highlights-box {
    padding: 2rem;
    gap: 2rem;
  }
  .abbott-journey-highlights-icon { width: 8rem; height: 8rem; }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .abbott-journey-header {
    height: 14rem;
    padding: 1.5rem;
  }

  .abbott-journey-header-title {
    margin: 0;
    font-size: 1.75rem;
    text-align: left;
  }

  .abbott-journey-body {
    width: 92%;
    gap: 2rem;
  }

  .abbott-journey-highlights-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .abbott-journey-highlights-content {
    align-items: center;
  }

  .abbott-journey-highlights-icon {
    width: 6rem;
    height: 6rem;
  }

    ul:not(.tabs-nav, #primary-menu, .sub-menu, #top-footer-menu) li {
        padding-left: 0;
    }
}
